Lines Matching refs:depthFormat
174 egl_surface_t(EGLDisplay dpy, EGLConfig config, int32_t depthFormat);
198 int32_t depthFormat) in egl_surface_t() argument
203 depth.format = depthFormat; in egl_surface_t()
242 int32_t depthFormat,
363 int32_t depthFormat, in egl_window_surface_v2_t() argument
365 : egl_surface_t(dpy, config, depthFormat), in egl_window_surface_v2_t()
669 int32_t depthFormat,
685 int32_t depthFormat, in egl_pixmap_surface_t() argument
687 : egl_surface_t(dpy, config, depthFormat), nativePixmap(*pixmap) in egl_pixmap_surface_t()
689 if (depthFormat) { in egl_pixmap_surface_t()
739 EGLDisplay dpy, EGLConfig config, int32_t depthFormat,
754 EGLConfig config, int32_t depthFormat, in egl_pbuffer_surface_t() argument
756 : egl_surface_t(dpy, config, depthFormat) in egl_pbuffer_surface_t()
777 if (depthFormat) { in egl_pbuffer_surface_t()
1122 int32_t& pixelFormat, int32_t& depthFormat) in getConfigFormatInfo() argument
1127 depthFormat = 0; in getConfigFormatInfo()
1131 depthFormat = GGL_PIXEL_FORMAT_Z_16; in getConfigFormatInfo()
1135 depthFormat = 0; in getConfigFormatInfo()
1139 depthFormat = GGL_PIXEL_FORMAT_Z_16; in getConfigFormatInfo()
1143 depthFormat = 0; in getConfigFormatInfo()
1147 depthFormat = GGL_PIXEL_FORMAT_Z_16; in getConfigFormatInfo()
1151 depthFormat = 0; in getConfigFormatInfo()
1155 depthFormat = GGL_PIXEL_FORMAT_Z_16; in getConfigFormatInfo()
1159 depthFormat = 0; in getConfigFormatInfo()
1310 int32_t depthFormat; in createWindowSurface() local
1312 if (getConfigFormatInfo(configID, pixelFormat, depthFormat) != NO_ERROR) { in createWindowSurface()
1323 surface = new egl_window_surface_v2_t(dpy, config, depthFormat, in createWindowSurface()
1359 int32_t depthFormat; in createPixmapSurface() local
1361 if (getConfigFormatInfo(configID, pixelFormat, depthFormat) != NO_ERROR) { in createPixmapSurface()
1369 new egl_pixmap_surface_t(dpy, config, depthFormat, in createPixmapSurface()
1398 int32_t depthFormat; in createPbufferSurface() local
1400 if (getConfigFormatInfo(configID, pixelFormat, depthFormat) != NO_ERROR) { in createPbufferSurface()
1413 new egl_pbuffer_surface_t(dpy, config, depthFormat, w, h, pixelFormat); in createPbufferSurface()