Home
last modified time | relevance | path

Searched refs:native_surface (Results 1 – 10 of 10) sorted by relevance

/external/skia/modules/androidkit/src/
DSurface.cpp240 static void Surface_Release(JNIEnv* env, jobject, jlong native_surface) { in Surface_Release() argument
241 if (auto* surface = reinterpret_cast<Surface*>(native_surface)) { in Surface_Release()
247 static jlong Surface_GetNativeCanvas(JNIEnv* env, jobject, jlong native_surface) { in Surface_GetNativeCanvas() argument
248 auto* surface = reinterpret_cast<Surface*>(native_surface); in Surface_GetNativeCanvas()
254 static void Surface_FlushAndSubmit(JNIEnv* env, jobject, jlong native_surface) { in Surface_FlushAndSubmit() argument
255 if (auto* surface = reinterpret_cast<Surface*>(native_surface)) { in Surface_FlushAndSubmit()
260 static int Surface_GetWidth(JNIEnv* env, jobject, jlong native_surface) { in Surface_GetWidth() argument
261 const auto* surface = reinterpret_cast<Surface*>(native_surface); in Surface_GetWidth()
265 static int Surface_GetHeight(JNIEnv* env, jobject, jlong native_surface) { in Surface_GetHeight() argument
266 const auto* surface = reinterpret_cast<Surface*>(native_surface); in Surface_GetHeight()
/external/mesa3d/src/egl/drivers/dri2/
Dplatform_x11_dri3.c138 void *native_surface, const EGLint *attrib_list) in dri3_create_surface() argument
153 attrib_list, false, native_surface)) in dri3_create_surface()
162 STATIC_ASSERT(sizeof(uintptr_t) == sizeof(native_surface)); in dri3_create_surface()
163 drawable = (uintptr_t) native_surface; in dri3_create_surface()
Dplatform_drm.c142 void *native_surface, const EGLint *attrib_list) in dri2_drm_create_window_surface() argument
147 struct gbm_surface *surface = native_surface; in dri2_drm_create_window_surface()
158 attrib_list, false, native_surface)) in dri2_drm_create_window_surface()
Dplatform_x11.c250 void *native_surface, const EGLint *attrib_list) in dri2_x11_create_surface() argument
267 false, native_surface)) in dri2_x11_create_surface()
277 STATIC_ASSERT(sizeof(uintptr_t) == sizeof(native_surface)); in dri2_x11_create_surface()
278 dri2_surf->drawable = (uintptr_t) native_surface; in dri2_x11_create_surface()
Degl_dri2.h566 EGLBoolean enable_out_fence, void *native_surface);
Degl_dri2.c1665 EGLBoolean enable_out_fence, void *native_surface) in dri2_init_surface() argument
1679 return _eglInitSurface(surf, disp, type, conf, attrib_list, native_surface); in dri2_init_surface()
/external/mesa3d/src/egl/main/
Deglsurface.h183 void *native_surface);
Deglsurface.c346 void *native_surface) in _eglInitSurface() argument
434 surf->NativeSurface = native_surface; in _eglInitSurface()
Deglapi.c932 _eglNativeSurfaceAlreadyUsed(_EGLDisplay *disp, void *native_surface) in _eglNativeSurfaceAlreadyUsed() argument
945 if (surf->NativeSurface == native_surface) in _eglNativeSurfaceAlreadyUsed()
/external/mesa3d/docs/relnotes/
D7.10.rst617 - st/egl: Add native_surface::present callback.
618 - st/egl: Use native_surface::present callback.
619 - d3d1x: Use native_surface::present.