Home
last modified time | relevance | path

Searched refs:native_pixmap (Results 1 – 25 of 66) sorted by relevance

123

/third_party/vk-gl-cts/framework/egl/wrapper/
DeglwFuncPtrLibraryImpl.inl67 …:createPlatformPixmapSurface (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttr… argument
69 return m_egl.createPlatformPixmapSurface(dpy, config, native_pixmap, attrib_list);
72 …eatePlatformPixmapSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint … argument
74 return m_egl.createPlatformPixmapSurfaceEXT(dpy, config, native_pixmap, attrib_list);
DeglwImplExt.inl23 …eatePlatformPixmapSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint … argument
28 return egl->createPlatformPixmapSurfaceEXT(dpy, config, native_pixmap, attrib_list);
DeglwFuncPtrLibraryDecl.inl18 …createPlatformPixmapSurface (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttr…
19 …eatePlatformPixmapSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint …
DeglwLibrary.inl18 …createPlatformPixmapSurface (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttr…
19 …eatePlatformPixmapSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint …
DeglwApi.inl77 …CreatePlatformPixmapSurface (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttr…
78 …eatePlatformPixmapSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint …
DeglwFunctionTypes.inl18 …ePlatformPixmapSurfaceFunc) (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttr…
19 …latformPixmapSurfaceEXTFunc) (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint …
/third_party/vk-gl-cts/external/openglcts/data/mustpass/egl/aosp_mustpass/3.2.3.x/
Degl-master.txt3047 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_clear
3048 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_render
3049 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_clear
3050 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_render
3051 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_clear
3052 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_render
3053 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_clear
3054 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_render
3055 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_clear
3056 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_render
[all …]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/
Dmain.cpp387 …reatePlatformPixmapSurfaceEXT(EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint …
388 …Y CreatePlatformPixmapSurface(EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttr…
605 …reatePlatformPixmapSurfaceEXT(EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint … in eglCreatePlatformPixmapSurfaceEXT() argument
607 return egl::CreatePlatformPixmapSurfaceEXT(dpy, config, native_pixmap, attrib_list); in eglCreatePlatformPixmapSurfaceEXT()
610 …glCreatePlatformPixmapSurface(EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttr… in eglCreatePlatformPixmapSurface() argument
612 return egl::CreatePlatformPixmapSurface(dpy, config, native_pixmap, attrib_list); in eglCreatePlatformPixmapSurface()
DlibEGL.cpp416 …Y CreatePlatformPixmapSurface(EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLAttr… in CreatePlatformPixmapSurface() argument
419 "const EGLint *attrib_list = %p)", dpy, config, native_pixmap, attrib_list); in CreatePlatformPixmapSurface()
435 …reatePlatformPixmapSurfaceEXT(EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint … in CreatePlatformPixmapSurfaceEXT() argument
438 "const EGLint *attrib_list = %p)", dpy, config, native_pixmap, attrib_list); in CreatePlatformPixmapSurfaceEXT()
441 return CreatePlatformPixmapSurface(dpy, config, native_pixmap, &attribs); in CreatePlatformPixmapSurfaceEXT()
/third_party/mesa3d/src/egl/main/
Deglapi.c1076 _fixupNativePixmap(_EGLDisplay *disp, void *native_pixmap) in _fixupNativePixmap() argument
1086 if (disp && disp->Platform == _EGL_PLATFORM_X11 && native_pixmap != NULL) in _fixupNativePixmap()
1087 return (void *)(* (Pixmap*) native_pixmap); in _fixupNativePixmap()
1089 return native_pixmap; in _fixupNativePixmap()
1094 void *native_pixmap, const EGLint *attrib_list) in _eglCreatePixmapSurfaceCommon() argument
1120 if (native_pixmap == NULL) in _eglCreatePixmapSurfaceCommon()
1123 if (_eglNativeSurfaceAlreadyUsed(disp, native_pixmap)) in _eglCreatePixmapSurfaceCommon()
1126 surf = disp->Driver->CreatePixmapSurface(disp, conf, native_pixmap, attrib_list); in _eglCreatePixmapSurfaceCommon()
1147 void *native_pixmap, in eglCreatePlatformPixmapSurfaceEXT() argument
1153 native_pixmap = _fixupNativePixmap(disp, native_pixmap); in eglCreatePlatformPixmapSurfaceEXT()
[all …]
/third_party/vk-gl-cts/external/openglcts/data/mustpass/egl/aosp_mustpass/3.2.5.x/
Degl-master.txt3118 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_clear
3119 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_render
3120 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_clear
3121 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_render
3122 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_clear
3123 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_render
3124 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_clear
3125 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_render
3126 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_clear
3127 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_render
[all …]
/third_party/vk-gl-cts/android/cts/master/
Degl-master.txt3206 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_clear
3207 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_render
3208 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_clear
3209 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_render
3210 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_clear
3211 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_render
3212 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_clear
3213 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_render
3214 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_clear
3215 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_render
[all …]
/third_party/vk-gl-cts/external/openglcts/data/mustpass/egl/aosp_mustpass/3.2.3.x/src/
Degl-master.txt3126 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_clear
3127 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_render
3128 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_clear
3129 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_render
3130 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_clear
3131 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_render
3132 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_clear
3133 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_render
3134 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_clear
3135 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_render
[all …]
/third_party/vk-gl-cts/external/openglcts/data/mustpass/egl/aosp_mustpass/3.2.4.x/
Degl-master.txt3059 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_clear
3060 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_render
3061 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_clear
3062 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_render
3063 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_clear
3064 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_render
3065 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_clear
3066 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_render
3067 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_clear
3068 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_render
[all …]
/third_party/vk-gl-cts/external/openglcts/data/mustpass/egl/aosp_mustpass/master/
Degl-master.txt3118 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_clear
3119 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_render
3120 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_clear
3121 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_render
3122 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_clear
3123 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_render
3124 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_clear
3125 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_render
3126 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_clear
3127 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_render
[all …]
/third_party/vk-gl-cts/external/openglcts/data/mustpass/egl/aosp_mustpass/3.2.4.x/src/
Degl-master.txt3138 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_clear
3139 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_render
3140 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_clear
3141 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_render
3142 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_clear
3143 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_render
3144 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_clear
3145 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_render
3146 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_clear
3147 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_render
[all …]
/third_party/vk-gl-cts/external/openglcts/data/mustpass/egl/aosp_mustpass/3.2.6.x/
Degl-master.txt3118 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_clear
3119 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_no_stencil_render
3120 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_clear
3121 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_no_depth_stencil_render
3122 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_clear
3123 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_no_stencil_render
3124 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_clear
3125 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb565_depth_stencil_render
3126 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_clear
3127 dEQP-EGL.functional.native_color_mapping.native_pixmap.rgb888_no_depth_no_stencil_render
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libEGL/
DlibEGL.cpp360 void *native_pixmap, in eglCreatePlatformPixmapSurface() argument
364 return EGL_CreatePlatformPixmapSurface(dpy, config, native_pixmap, attrib_list); in eglCreatePlatformPixmapSurface()
412 void *native_pixmap, in eglCreatePlatformPixmapSurfaceEXT() argument
416 return EGL_CreatePlatformPixmapSurfaceEXT(dpy, config, native_pixmap, attrib_list); in eglCreatePlatformPixmapSurfaceEXT()
/third_party/EGL/extensions/EXT/
DEGL_EXT_platform_base.txt96 void *native_pixmap,
230 void *native_pixmap,
237 <native_pixmap> must belong to the same platform as <dpy>, and EGL
240 the requirements for the <native_pixmap> parameter."
250 "If <dpy> and <native_pixmap> do not belong to the same platform, then
/third_party/skia/third_party/externals/egl-registry/extensions/EXT/
DEGL_EXT_platform_base.txt96 void *native_pixmap,
230 void *native_pixmap,
237 <native_pixmap> must belong to the same platform as <dpy>, and EGL
240 the requirements for the <native_pixmap> parameter."
250 "If <dpy> and <native_pixmap> do not belong to the same platform, then
/third_party/skia/third_party/externals/angle2/src/libEGL/
DlibEGL_autogen.cpp330 void *native_pixmap, in eglCreatePlatformPixmapSurface() argument
334 return EGL_CreatePlatformPixmapSurface(dpy, config, native_pixmap, attrib_list); in eglCreatePlatformPixmapSurface()
647 void *native_pixmap, in eglCreatePlatformPixmapSurfaceEXT() argument
651 return EGL_CreatePlatformPixmapSurfaceEXT(dpy, config, native_pixmap, attrib_list); in eglCreatePlatformPixmapSurfaceEXT()
/third_party/vk-gl-cts/framework/egl/
DegluCallLogWrapperApi.inl18 …rmPixmapSurface (eglw::EGLDisplay dpy, eglw::EGLConfig config, void *native_pixmap, const eglw::E…
19 …PixmapSurfaceEXT (eglw::EGLDisplay dpy, eglw::EGLConfig config, void *native_pixmap, const eglw::E…
DegluCallLogWrapper.inl132 …ormPixmapSurface (eglw::EGLDisplay dpy, eglw::EGLConfig config, void *native_pixmap, const eglw::E… argument
135 …atePlatformPixmapSurface(" << dpy << ", " << toHex(config) << ", " << native_pixmap << ", " << att…
136 …eglw::EGLSurface returnValue = m_egl.createPlatformPixmapSurface(dpy, config, native_pixmap, attri…
142 …PixmapSurfaceEXT (eglw::EGLDisplay dpy, eglw::EGLConfig config, void *native_pixmap, const eglw::E… argument
145 …PlatformPixmapSurfaceEXT(" << dpy << ", " << toHex(config) << ", " << native_pixmap << ", " << att…
146 …eglw::EGLSurface returnValue = m_egl.createPlatformPixmapSurfaceEXT(dpy, config, native_pixmap, at…
/third_party/weston/shared/
Dweston-egl-ext.h164 …LATFORMPIXMAPSURFACEEXTPROC) (EGLDisplay dpy, EGLConfig config, void *native_pixmap, const EGLint …
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
Dentry_points_egl_autogen.cpp656 void *native_pixmap, in EGL_CreatePlatformPixmapSurface() argument
663 (uintptr_t)dpy, (uintptr_t)config, (uintptr_t)native_pixmap, (uintptr_t)attrib_list); in EGL_CreatePlatformPixmapSurface()
672 EGLSurface, dpyPacked, configPacked, native_pixmap, attrib_listPacked); in EGL_CreatePlatformPixmapSurface()
674 return CreatePlatformPixmapSurface(thread, dpyPacked, configPacked, native_pixmap, in EGL_CreatePlatformPixmapSurface()

123