Home | History | Annotate | Download | only in egl

Lines Matching defs:surfaceType

280     egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType);
288 EGLint getSurfaceType() { return surfaceType; }
324 EGLint surfaceType;
328 egl_surface_t::egl_surface_t(EGLDisplay dpy, EGLConfig config, EGLint surfaceType)
330 surfaceType(surfaceType), rcSurface(0)
1042 EGLint surfaceType;
1043 if (s_display.getConfigAttrib(config, EGL_SURFACE_TYPE, &surfaceType) == EGL_FALSE) return EGL_FALSE;
1045 if (!(surfaceType & EGL_WINDOW_BIT)) {
1067 EGLint surfaceType;
1068 if (s_display.getConfigAttrib(config, EGL_SURFACE_TYPE, &surfaceType) == EGL_FALSE) return EGL_FALSE;
1070 if (!(surfaceType & EGL_PBUFFER_BIT)) {
1199 EGLint surfaceType;
1201 &surfaceType);
1203 if (surfaceType & EGL_SWAP_BEHAVIOR_PRESERVED_BIT) {