/external/skia/src/gpu/ganesh/gl/ |
D | GrGLInterfaceAutogen.cpp | 42 GrGLenum error = fFunctions.fGetError(); in checkError() 89 if (!fFunctions.fActiveTexture || in validate() 90 !fFunctions.fAttachShader || in validate() 91 !fFunctions.fBindAttribLocation || in validate() 92 !fFunctions.fBindBuffer || in validate() 93 !fFunctions.fBindTexture || in validate() 94 !fFunctions.fBlendColor || in validate() 95 !fFunctions.fBlendEquation || in validate() 96 !fFunctions.fBlendFunc || in validate() 97 !fFunctions.fBufferData || in validate() [all …]
|
D | GrGLAssembleGLESInterfaceAutogen.cpp | 52 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLMakeAssembledGLESInterface() 480 if (!interface->fFunctions.fDebugMessageControl) { in GrGLMakeAssembledGLESInterface()
|
D | GrGLUtil.h | 386 (IFACE)->fFunctions.f##X; \ 400 (RET) = (IFACE)->fFunctions.f##X; \
|
D | GrGLAssembleWebGLInterfaceAutogen.cpp | 59 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLMakeAssembledWebGLInterface()
|
D | GrGLUtil.cpp | 677 const GrGLubyte* bytes = interface->fFunctions.fGetString(s); in get_webgl_vendor_and_renderer() 702 const GrGLubyte* bytes = interface->fFunctions.fGetString(s); in GrGLGetDriverInfo()
|
D | GrGLAssembleGLInterfaceAutogen.cpp | 55 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLMakeAssembledGLInterface()
|
D | GrGLCaps.cpp | 4406 if (fTiledRenderingSupport && (!glInterface->fFunctions.fStartTiling || in applyDriverCorrectnessWorkarounds() 4407 !glInterface->fFunctions.fEndTiling)) { in applyDriverCorrectnessWorkarounds()
|
D | GrGLGpu.cpp | 4283 GrGLenum error = this->fGLContext->glInterface()->fFunctions.fGetError(); in getErrorAndCheckForOOM()
|
/external/skia/src/gpu/vk/ |
D | VulkanInterface.cpp | 14 fFunctions.f##name = reinterpret_cast<PFN_vk##name>(getProc("vk" #name, instance, device)) 17 fFunctions.f##name = \ 267 if (nullptr == fFunctions.fCreateInstance || in validate() 268 nullptr == fFunctions.fDestroyInstance || in validate() 269 nullptr == fFunctions.fEnumeratePhysicalDevices || in validate() 270 nullptr == fFunctions.fGetPhysicalDeviceFeatures || in validate() 271 nullptr == fFunctions.fGetPhysicalDeviceFormatProperties || in validate() 272 nullptr == fFunctions.fGetPhysicalDeviceImageFormatProperties || in validate() 273 nullptr == fFunctions.fGetPhysicalDeviceProperties || in validate() 274 nullptr == fFunctions.fGetPhysicalDeviceQueueFamilyProperties || in validate() [all …]
|
D | VulkanAMDMemoryAllocator.cpp | 39 #define SKGPU_COPY_FUNCTION(NAME) functions.vk##NAME = interface->fFunctions.f##NAME 40 #define SKGPU_COPY_FUNCTION_KHR(NAME) functions.vk##NAME##KHR = interface->fFunctions.f##NAME
|
D | VulkanInterface.h | 232 } fFunctions; member
|
/external/skia/tools/sk_app/win/ |
D | ANGLEWindowContext_win.cpp | 126 interface->fFunctions.fClearStencil(0); in onInitializeContext() 127 interface->fFunctions.fClearColor(0, 0, 0, 0); in onInitializeContext() 128 interface->fFunctions.fStencilMask(0xffffffff); in onInitializeContext() 129 interface->fFunctions.fClear(GR_GL_STENCIL_BUFFER_BIT | GR_GL_COLOR_BUFFER_BIT); in onInitializeContext() 141 interface->fFunctions.fViewport(0, 0, fWidth, fHeight); in onInitializeContext()
|
/external/skia/tools/gpu/gl/interface/ |
D | templates.go | 58 GrGLInterface::Functions* functions = &interface->fFunctions; 72 if (!interface->fFunctions.fDebugMessageControl) { 138 GrGLInterface::Functions* functions = &interface->fFunctions; 209 GrGLInterface::Functions* functions = &interface->fFunctions; 264 GrGLenum error = fFunctions.fGetError(); 319 const_cast<GrGLInterface*>(this)->fFunctions = GrGLInterface::Functions();
|
/external/skia/tools/gpu/gl/egl/ |
D | CreatePlatformGLTestContext_egl.cpp | 254 while (this->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) {} in eglImageToExternalTexture() 271 if (this->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) { in eglImageToExternalTexture() 276 if (this->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) { in eglImageToExternalTexture()
|
/external/skia/include/gpu/gl/ |
D | GrGLInterface.h | 75 , fFunctions(that.fFunctions) {} in GrGLInterface() 332 } fFunctions; member
|
/external/skia/src/gpu/graphite/vk/ |
D | VulkanGraphiteUtilsPriv.h | 16 #define VULKAN_CALL(IFACE, X) (IFACE)->fFunctions.f##X
|
/external/skia/tools/gpu/gl/ |
D | GLTestContext.cpp | 236 auto getString = [wrapped = &fOriginalGLInterface->fFunctions.fGetString, in overrideVersion() 247 newInterface->fFunctions.fGetString = getString; in overrideVersion()
|
/external/skia/tools/gpu/gl/angle/ |
D | GLTestContext_angle.cpp | 392 while (this->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) {} in eglImageToExternalTexture() 408 if (this->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) { in eglImageToExternalTexture() 413 if (this->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) { in eglImageToExternalTexture()
|
/external/skia/src/gpu/ganesh/ |
D | GrAHardwareBufferUtils.cpp | 41 #define VK_CALL(X) gpu->vkInterface()->fFunctions.f##X 302 , fDestroyImage(gpu->vkInterface()->fFunctions.fDestroyImage) in VulkanCleanupHelper() 303 , fFreeMemory(gpu->vkInterface()->fFunctions.fFreeMemory) {} in VulkanCleanupHelper()
|
D | GrDirectContext.cpp | 1063 copy->fFunctions.fGetError = in MakeGL() 1064 make_get_error_with_random_oom(glInterface->fFunctions.fGetError); in MakeGL()
|
/external/skia/src/gpu/ganesh/vk/ |
D | GrVkUtil.h | 23 #define GR_VK_CALL(IFACE, X) (IFACE)->fFunctions.f##X
|
/external/skia/src/gpu/ganesh/glsl/ |
D | GrGLSLShaderBuilder.h | 263 SkString fFunctions; variable
|
/external/skia/tests/ |
D | VkHardwareBufferTest.cpp | 226 while (fGLCtx->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) {} in importHardwareBuffer() 246 if (fGLCtx->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) { in importHardwareBuffer() 252 if (GrGLenum error = fGLCtx->gl()->fFunctions.fGetError(); error != GR_GL_NO_ERROR) { in importHardwareBuffer()
|