From 0135e5d6c83add5e539492a4899504e33f3f2434 Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Sun, 31 Jan 2010 17:34:02 +0800 Subject: egl: Add support for more EGLImage extensions to EGL core. Add support EGL_KHR_vg_parent_image and EGL_KHR_gl_*. This is as simple as adding some flags that can be enabled. Individual drivers need to implement the extensions before enbaling the flags. --- src/egl/main/eglimage.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/egl/main/eglimage.c') diff --git a/src/egl/main/eglimage.c b/src/egl/main/eglimage.c index e7a293b374..5732ef35ec 100644 --- a/src/egl/main/eglimage.c +++ b/src/egl/main/eglimage.c @@ -28,8 +28,14 @@ _eglParseImageAttribList(_EGLImage *img, const EGLint *attrib_list) case EGL_IMAGE_PRESERVED_KHR: img->Preserved = val; break; + case EGL_GL_TEXTURE_LEVEL_KHR: + img->GLTextureLevel = val; + break; + case EGL_GL_TEXTURE_ZOFFSET_KHR: + img->GLTextureZOffset = val; + break; default: - err = EGL_BAD_ATTRIBUTE; + /* unknown attrs are ignored */ break; } @@ -52,6 +58,8 @@ _eglInitImage(_EGLImage *img, _EGLDisplay *dpy, const EGLint *attrib_list) img->Resource.Display = dpy; img->Preserved = EGL_FALSE; + img->GLTextureLevel = 0; + img->GLTextureZOffset = 0; err = _eglParseImageAttribList(img, attrib_list); if (err != EGL_SUCCESS) -- cgit v1.2.3