i915: Make EGL_i915 compile

This commit is contained in:
Jakob Bornecrantz 2008-05-28 12:27:27 +02:00
parent c2bd95abf6
commit ae3795a968
1 changed files with 3 additions and 3 deletions

View File

@ -3,6 +3,7 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <stdint.h>
#include "eglconfig.h"
#include "eglcontext.h"
@ -13,7 +14,6 @@
#include "eglscreen.h"
#include "eglsurface.h"
#include "glapi.h"
#include "intel_egl.h"
#include "xf86drm.h"
@ -283,9 +283,9 @@ drm_create_context(_EGLDriver *drv, EGLDisplay dpy, EGLConfig config, EGLContext
/* generate handle and insert into hash table */
_eglSaveContext(&c->base);
assert(c->base.Handle);
assert(_eglGetContextHandle(&c->base));
return c->base.Handle;
return _eglGetContextHandle(&c->base);
err_gl:
free(context);
err_c: