/third_party/skia/modules/androidkit/src/ |
D | Surface.cpp | 208 static void Surface_Release(JNIEnv* env, jobject, jlong native_surface) { in Surface_Release() argument 209 if (auto* surface = reinterpret_cast<Surface*>(native_surface)) { in Surface_Release() 215 static jlong Surface_GetNativeCanvas(JNIEnv* env, jobject, jlong native_surface) { in Surface_GetNativeCanvas() argument 216 auto* surface = reinterpret_cast<Surface*>(native_surface); in Surface_GetNativeCanvas() 222 static void Surface_FlushAndSubmit(JNIEnv* env, jobject, jlong native_surface) { in Surface_FlushAndSubmit() argument 223 if (auto* surface = reinterpret_cast<Surface*>(native_surface)) { in Surface_FlushAndSubmit() 228 static jint Surface_GetWidth(JNIEnv* env, jobject, jlong native_surface) { in Surface_GetWidth() argument 229 const auto* surface = reinterpret_cast<Surface*>(native_surface); in Surface_GetWidth() 233 static jint Surface_GetHeight(JNIEnv* env, jobject, jlong native_surface) { in Surface_GetHeight() argument 234 const auto* surface = reinterpret_cast<Surface*>(native_surface); in Surface_GetHeight() [all …]
|
/third_party/flutter/engine/flutter/vulkan/ |
D | vulkan_window.cc | 20 std::unique_ptr<VulkanNativeSurface> native_surface) in VulkanWindow() argument 27 if (native_surface == nullptr || !native_surface->IsValid()) { in VulkanWindow() 36 native_surface->GetExtensionName() // child extension in VulkanWindow() 64 std::move(native_surface)); in VulkanWindow()
|
D | vulkan_surface.cc | 15 std::unique_ptr<VulkanNativeSurface> native_surface) in VulkanSurface() argument 18 native_surface_(std::move(native_surface)), in VulkanSurface()
|
D | vulkan_surface.h | 22 std::unique_ptr<VulkanNativeSurface> native_surface);
|
D | vulkan_window.h | 35 std::unique_ptr<VulkanNativeSurface> native_surface);
|
/third_party/flutter/engine/flutter/shell/gpu/ |
D | gpu_surface_vulkan.cc | 12 std::unique_ptr<vulkan::VulkanNativeSurface> native_surface) in GPUSurfaceVulkan() argument 13 : window_(std::move(proc_table), std::move(native_surface)), in GPUSurfaceVulkan()
|
D | gpu_surface_vulkan.h | 21 std::unique_ptr<vulkan::VulkanNativeSurface> native_surface);
|
/third_party/mesa3d/src/egl/drivers/dri2/ |
D | platform_x11_dri3.c | 138 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()
|
D | platform_drm.c | 142 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()
|
D | platform_x11.c | 250 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()
|
D | egl_dri2.h | 597 EGLBoolean enable_out_fence, void *native_surface);
|
D | egl_dri2.c | 1670 EGLBoolean enable_out_fence, void *native_surface) in dri2_init_surface() argument 1684 return _eglInitSurface(surf, disp, type, conf, attrib_list, native_surface); in dri2_init_surface()
|
/third_party/mesa3d/src/egl/main/ |
D | eglsurface.h | 185 void *native_surface);
|
D | eglsurface.c | 361 void *native_surface) in _eglInitSurface() argument 450 surf->NativeSurface = native_surface; in _eglInitSurface()
|
D | eglapi.c | 943 _eglNativeSurfaceAlreadyUsed(_EGLDisplay *disp, void *native_surface) in _eglNativeSurfaceAlreadyUsed() argument 956 if (surf->NativeSurface == native_surface) in _eglNativeSurfaceAlreadyUsed()
|
/third_party/mesa3d/docs/relnotes/ |
D | 7.10.rst | 617 - st/egl: Add native_surface::present callback. 618 - st/egl: Use native_surface::present callback. 619 - d3d1x: Use native_surface::present.
|