Home
last modified time | relevance | path

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

/aosp_15_r20/external/skia/src/gpu/ganesh/gl/
H A DGrGLInterfaceAutogen.cpp45 GrGLenum error = fFunctions.fGetError(); in checkError()
92 if (!fFunctions.fActiveTexture || in validate()
93 !fFunctions.fAttachShader || in validate()
94 !fFunctions.fBindAttribLocation || in validate()
95 !fFunctions.fBindBuffer || in validate()
96 !fFunctions.fBindTexture || in validate()
97 !fFunctions.fBlendColor || in validate()
98 !fFunctions.fBlendEquation || in validate()
99 !fFunctions.fBlendFunc || in validate()
100 !fFunctions.fBufferData || in validate()
[all …]
H A DGrGLDirectContext.cpp95 copy->fFunctions.fGetError = in MakeGL()
96 make_get_error_with_random_oom(glInterface->fFunctions.fGetError); in MakeGL()
H A DGrGLAssembleGLESInterfaceAutogen.cpp58 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLMakeAssembledGLESInterface()
501 if (!interface->fFunctions.fDebugMessageControl) { in GrGLMakeAssembledGLESInterface()
H A DGrGLUtil.h403 (IFACE)->fFunctions.f##X; \
417 (RET) = (IFACE)->fFunctions.f##X; \
H A DGrGLUtil.cpp727 const GrGLubyte* bytes = interface->fFunctions.fGetString(s); in get_webgl_vendor_and_renderer()
756 const GrGLubyte* bytes = interface->fFunctions.fGetString(s); in GrGLGetDriverInfo()
H A DGrGLAssembleWebGLInterfaceAutogen.cpp46 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLMakeAssembledWebGLInterface()
H A DGrGLAssembleGLInterfaceAutogen.cpp61 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLMakeAssembledGLInterface()
H A DGrGLCaps.cpp4644 if (fTiledRenderingSupport && (!glInterface->fFunctions.fStartTiling || in applyDriverCorrectnessWorkarounds()
4645 !glInterface->fFunctions.fEndTiling)) { in applyDriverCorrectnessWorkarounds()
H A DGrGLGpu.cpp4509 GrGLenum error = this->fGLContext->glInterface()->fFunctions.fGetError(); in getErrorAndCheckForOOM()
/aosp_15_r20/external/skia/src/gpu/vk/
H A DVulkanInterface.cpp18 fFunctions.f##name = reinterpret_cast<PFN_vk##name>(getProc("vk" #name, instance, device))
21 fFunctions.f##name = \
278 if (nullptr == fFunctions.fCreateInstance || in validate()
279 nullptr == fFunctions.fDestroyInstance || in validate()
280 nullptr == fFunctions.fEnumeratePhysicalDevices || in validate()
281 nullptr == fFunctions.fGetPhysicalDeviceFeatures || in validate()
282 nullptr == fFunctions.fGetPhysicalDeviceFormatProperties || in validate()
283 nullptr == fFunctions.fGetPhysicalDeviceImageFormatProperties || in validate()
284 nullptr == fFunctions.fGetPhysicalDeviceProperties || in validate()
285 nullptr == fFunctions.fGetPhysicalDeviceQueueFamilyProperties || in validate()
[all …]
H A DVulkanInterface.h237 } fFunctions; member
H A DVulkanUtilsPriv.cpp23 #define SHARED_GR_VULKAN_CALL(IFACE, X) (IFACE)->fFunctions.f##X
/aosp_15_r20/external/skia/tools/window/
H A DANGLEWindowContext.cpp86 interface->fFunctions.fClearStencil(0); in onInitializeContext()
87 interface->fFunctions.fClearColor(0, 0, 0, 0); in onInitializeContext()
88 interface->fFunctions.fStencilMask(0xffffffff); in onInitializeContext()
89 interface->fFunctions.fClear(GR_GL_STENCIL_BUFFER_BIT | GR_GL_COLOR_BUFFER_BIT); in onInitializeContext()
96 interface->fFunctions.fViewport(0, 0, fWidth, fHeight); in onInitializeContext()
/aosp_15_r20/external/skia/tools/gpu/gl/interface/
H A Dtemplates.go64 GrGLInterface::Functions* functions = &interface->fFunctions;
78 if (!interface->fFunctions.fDebugMessageControl) {
150 GrGLInterface::Functions* functions = &interface->fFunctions;
208 GrGLInterface::Functions* functions = &interface->fFunctions;
266 GrGLenum error = fFunctions.fGetError();
321 const_cast<GrGLInterface*>(this)->fFunctions = GrGLInterface::Functions();
/aosp_15_r20/external/skia/tools/gpu/gl/egl/
H A DCreatePlatformGLTestContext_egl.cpp290 while (this->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) {} in eglImageToExternalTexture()
307 if (this->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) { in eglImageToExternalTexture()
312 if (this->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) { in eglImageToExternalTexture()
/aosp_15_r20/external/skia/src/gpu/ganesh/vk/
H A DAHardwareBufferVk.cpp27 #define VK_CALL(X) gpu->vkInterface()->fFunctions.f##X
125 , fDestroyImage(gpu->vkInterface()->fFunctions.fDestroyImage) in VulkanCleanupHelper()
126 , fFreeMemory(gpu->vkInterface()->fFunctions.fFreeMemory) {} in VulkanCleanupHelper()
H A DGrVkUtil.h27 #define GR_VK_CALL(IFACE, X) (IFACE)->fFunctions.f##X
/aosp_15_r20/external/skia/include/gpu/ganesh/gl/
H A DGrGLInterface.h77 , fFunctions(that.fFunctions) {} in GrGLInterface()
329 } fFunctions; member
/aosp_15_r20/external/skia/tools/gpu/gl/angle/
H A DGLTestContext_angle.cpp392 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()
/aosp_15_r20/external/skia/tools/gpu/gl/
H A DGLTestContext.cpp209 auto getString = [wrapped = &fOriginalGLInterface->fFunctions.fGetString, in overrideVersion()
220 newInterface->fFunctions.fGetString = getString; in overrideVersion()
/aosp_15_r20/external/skia/tools/gpu/vk/
H A DVkTestMemoryAllocator.cpp23 #define SKGPU_COPY_FUNCTION(NAME) functions.vk##NAME = interface->fFunctions.f##NAME in Make()
24 #define SKGPU_COPY_FUNCTION_KHR(NAME) functions.vk##NAME##KHR = interface->fFunctions.f##NAME in Make()
/aosp_15_r20/external/skia/src/gpu/vk/vulkanmemoryallocator/
H A DVulkanAMDMemoryAllocator.cpp33 #define SKGPU_COPY_FUNCTION(NAME) functions.vk##NAME = interface->fFunctions.f##NAME in Make()
34 #define SKGPU_COPY_FUNCTION_KHR(NAME) functions.vk##NAME##KHR = interface->fFunctions.f##NAME in Make()
/aosp_15_r20/external/skia/src/gpu/graphite/vk/
H A DVulkanGraphiteUtilsPriv.h22 #define VULKAN_CALL(IFACE, X) (IFACE)->fFunctions.f##X
/aosp_15_r20/external/skia/tests/
H A DVkHardwareBufferTest.cpp237 while (fGLCtx->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) {} in importHardwareBuffer()
257 if (fGLCtx->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) { in importHardwareBuffer()
263 if (GrGLenum error = fGLCtx->gl()->fFunctions.fGetError(); error != GR_GL_NO_ERROR) { in importHardwareBuffer()
/aosp_15_r20/external/skia/src/gpu/ganesh/glsl/
H A DGrGLSLShaderBuilder.h271 SkString fFunctions; variable