Implement query of surface type.

This commit is contained in:
Jon Smirl 2005-05-16 16:50:38 +00:00
parent 3e8001a465
commit 380991cb65
1 changed files with 3 additions and 0 deletions

View File

@ -126,6 +126,9 @@ _eglQuerySurface(_EGLDriver *drv, EGLDisplay dpy, EGLSurface surf, EGLint attrib
if (surface->Type == EGL_PBUFFER_BIT)
*value = surface->MipmapLevel;
return EGL_TRUE;
case EGL_SURFACE_TYPE:
*value = surface->Type;
return EGL_TRUE;
default:
_eglError(EGL_BAD_ATTRIBUTE, "eglQuerySurface");
return EGL_FALSE;