Implement query of surface type.
authorJon Smirl <jonsmirl@gmail.com>
Mon, 16 May 2005 16:50:38 +0000 (16:50 +0000)
committerJon Smirl <jonsmirl@gmail.com>
Mon, 16 May 2005 16:50:38 +0000 (16:50 +0000)
src/egl/main/eglsurface.c

index b9902c7..41d0917 100644 (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;