/external/skqp/src/gpu/gl/ |
D | GrGLInterface.cpp | 40 if (!fFunctions.fActiveTexture || in validate() 41 !fFunctions.fAttachShader || in validate() 42 !fFunctions.fBindAttribLocation || in validate() 43 !fFunctions.fBindBuffer || in validate() 44 !fFunctions.fBindTexture || in validate() 45 !fFunctions.fBlendColor || // -> GL >= 1.4 or extension, ES >= 2.0 in validate() 46 !fFunctions.fBlendEquation || // -> GL >= 1.4 or extension, ES >= 2.0 in validate() 47 !fFunctions.fBlendFunc || in validate() 48 !fFunctions.fBufferData || in validate() 49 !fFunctions.fBufferSubData || in validate() [all …]
|
D | GrGLTestInterface.cpp | 19 fFunctions.fActiveTexture = bind_to_member(this, &GrGLTestInterface::activeTexture); in GrGLTestInterface() 20 fFunctions.fAttachShader = bind_to_member(this, &GrGLTestInterface::attachShader); in GrGLTestInterface() 21 fFunctions.fBeginQuery = bind_to_member(this, &GrGLTestInterface::beginQuery); in GrGLTestInterface() 22 fFunctions.fBindAttribLocation = bind_to_member(this, &GrGLTestInterface::bindAttribLocation); in GrGLTestInterface() 23 fFunctions.fBindBuffer = bind_to_member(this, &GrGLTestInterface::bindBuffer); in GrGLTestInterface() 24 fFunctions.fBindFramebuffer = bind_to_member(this, &GrGLTestInterface::bindFramebuffer); in GrGLTestInterface() 25 fFunctions.fBindRenderbuffer = bind_to_member(this, &GrGLTestInterface::bindRenderbuffer); in GrGLTestInterface() 26 fFunctions.fBindSampler = bind_to_member(this, &GrGLTestInterface::bindSampler); in GrGLTestInterface() 27 fFunctions.fBindTexture = bind_to_member(this, &GrGLTestInterface::bindTexture); in GrGLTestInterface() 28 … fFunctions.fBindFragDataLocation = bind_to_member(this, &GrGLTestInterface::bindFragDataLocation); in GrGLTestInterface() [all …]
|
D | GrGLUtil.h | 239 (IFACE)->fFunctions.f##X; \ 253 (RET) = (IFACE)->fFunctions.f##X; \ 258 #define GR_GL_GET_ERROR(IFACE) (IFACE)->fFunctions.fGetError()
|
D | GrGLAssembleInterface.cpp | 82 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLMakeAssembledGLInterface() 448 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLMakeAssembledGLESInterface() 812 if (!interface->fFunctions.fDebugMessageControl) { in GrGLMakeAssembledGLESInterface()
|
/external/skia/src/gpu/gl/ |
D | GrGLInterface.cpp | 40 if (!fFunctions.fActiveTexture || in validate() 41 !fFunctions.fAttachShader || in validate() 42 !fFunctions.fBindAttribLocation || in validate() 43 !fFunctions.fBindBuffer || in validate() 44 !fFunctions.fBindTexture || in validate() 45 !fFunctions.fBlendColor || // -> GL >= 1.4 or extension, ES >= 2.0 in validate() 46 !fFunctions.fBlendEquation || // -> GL >= 1.4 or extension, ES >= 2.0 in validate() 47 !fFunctions.fBlendFunc || in validate() 48 !fFunctions.fBufferData || in validate() 49 !fFunctions.fBufferSubData || in validate() [all …]
|
D | GrGLTestInterface.cpp | 19 fFunctions.fActiveTexture = bind_to_member(this, &GrGLTestInterface::activeTexture); in GrGLTestInterface() 20 fFunctions.fAttachShader = bind_to_member(this, &GrGLTestInterface::attachShader); in GrGLTestInterface() 21 fFunctions.fBeginQuery = bind_to_member(this, &GrGLTestInterface::beginQuery); in GrGLTestInterface() 22 fFunctions.fBindAttribLocation = bind_to_member(this, &GrGLTestInterface::bindAttribLocation); in GrGLTestInterface() 23 fFunctions.fBindBuffer = bind_to_member(this, &GrGLTestInterface::bindBuffer); in GrGLTestInterface() 24 fFunctions.fBindFramebuffer = bind_to_member(this, &GrGLTestInterface::bindFramebuffer); in GrGLTestInterface() 25 fFunctions.fBindRenderbuffer = bind_to_member(this, &GrGLTestInterface::bindRenderbuffer); in GrGLTestInterface() 26 fFunctions.fBindSampler = bind_to_member(this, &GrGLTestInterface::bindSampler); in GrGLTestInterface() 27 fFunctions.fBindTexture = bind_to_member(this, &GrGLTestInterface::bindTexture); in GrGLTestInterface() 28 … fFunctions.fBindFragDataLocation = bind_to_member(this, &GrGLTestInterface::bindFragDataLocation); in GrGLTestInterface() [all …]
|
D | GrGLUtil.h | 239 (IFACE)->fFunctions.f##X; \ 253 (RET) = (IFACE)->fFunctions.f##X; \ 258 #define GR_GL_GET_ERROR(IFACE) (IFACE)->fFunctions.fGetError()
|
/external/skqp/src/gpu/vk/ |
D | GrVkInterface.cpp | 14 fFunctions.f##name = reinterpret_cast<PFN_vk##name>(getProc("vk" #name, instance, device)) 17 fFunctions.f##name = \ 266 if (nullptr == fFunctions.fCreateInstance || in validate() 267 nullptr == fFunctions.fDestroyInstance || in validate() 268 nullptr == fFunctions.fEnumeratePhysicalDevices || in validate() 269 nullptr == fFunctions.fGetPhysicalDeviceFeatures || in validate() 270 nullptr == fFunctions.fGetPhysicalDeviceFormatProperties || in validate() 271 nullptr == fFunctions.fGetPhysicalDeviceImageFormatProperties || in validate() 272 nullptr == fFunctions.fGetPhysicalDeviceProperties || in validate() 273 nullptr == fFunctions.fGetPhysicalDeviceQueueFamilyProperties || in validate() [all …]
|
D | GrVkUtil.h | 21 #define GR_VK_CALL(IFACE, X) (IFACE)->fFunctions.f##X
|
/external/skia/src/gpu/vk/ |
D | GrVkInterface.cpp | 14 fFunctions.f##name = reinterpret_cast<PFN_vk##name>(getProc("vk" #name, instance, device)) 17 fFunctions.f##name = \ 266 if (nullptr == fFunctions.fCreateInstance || in validate() 267 nullptr == fFunctions.fDestroyInstance || in validate() 268 nullptr == fFunctions.fEnumeratePhysicalDevices || in validate() 269 nullptr == fFunctions.fGetPhysicalDeviceFeatures || in validate() 270 nullptr == fFunctions.fGetPhysicalDeviceFormatProperties || in validate() 271 nullptr == fFunctions.fGetPhysicalDeviceImageFormatProperties || in validate() 272 nullptr == fFunctions.fGetPhysicalDeviceProperties || in validate() 273 nullptr == fFunctions.fGetPhysicalDeviceQueueFamilyProperties || in validate() [all …]
|
D | GrVkUtil.h | 21 #define GR_VK_CALL(IFACE, X) (IFACE)->fFunctions.f##X
|
/external/skqp/src/sksl/ir/ |
D | SkSLFunctionReference.h | 25 , fFunctions(function) {} in FunctionReference() 32 return std::unique_ptr<Expression>(new FunctionReference(fOffset, fFunctions, &fType)); in clone() 39 const std::vector<const FunctionDeclaration*> fFunctions; member 47 , fFunctions(function) {}}; in FunctionReference()
|
D | SkSLUnresolvedFunction.h | 21 , fFunctions(std::move(funcs)) { in UnresolvedFunction() 33 const std::vector<const FunctionDeclaration*> fFunctions; member
|
D | SkSLSymbolTable.cpp | 18 return ((UnresolvedFunction&) s).fFunctions; in GetFunctions() 92 for (const auto* f : ((UnresolvedFunction&) *oldSymbol).fFunctions) { in addWithoutOwnership() 113 for (auto& f : ((UnresolvedFunction&) *pair.second).fFunctions) { in markAllFunctionsBuiltin()
|
/external/skia/src/sksl/ir/ |
D | SkSLFunctionReference.h | 25 , fFunctions(function) {} in FunctionReference() 32 return std::unique_ptr<Expression>(new FunctionReference(fOffset, fFunctions, &fType)); in clone() 39 const std::vector<const FunctionDeclaration*> fFunctions; member 47 , fFunctions(function) {}}; in FunctionReference()
|
D | SkSLUnresolvedFunction.h | 21 , fFunctions(std::move(funcs)) { in UnresolvedFunction() 33 const std::vector<const FunctionDeclaration*> fFunctions; member
|
D | SkSLSymbolTable.cpp | 18 return ((UnresolvedFunction&) s).fFunctions; in GetFunctions() 92 for (const auto* f : ((UnresolvedFunction&) *oldSymbol).fFunctions) { in addWithoutOwnership() 113 for (auto& f : ((UnresolvedFunction&) *pair.second).fFunctions) { in markAllFunctionsBuiltin()
|
/external/skqp/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/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/src/gpu/ |
D | GrAHardwareBufferUtils.cpp | 36 #define VK_CALL(X) gpu->vkInterface()->fFunctions.f##X; 251 , fDestroyImage(gpu->vkInterface()->fFunctions.fDestroyImage) in VulkanCleanupHelper() 252 , fFreeMemory(gpu->vkInterface()->fFunctions.fFreeMemory) {} in VulkanCleanupHelper()
|
/external/skqp/src/gpu/ |
D | GrAHardwareBufferImageGenerator.cpp | 133 , fDestroyImage(gpu->vkInterface()->fFunctions.fDestroyImage) in VulkanCleanupHelper() 134 , fFreeMemory(gpu->vkInterface()->fFunctions.fFreeMemory) {} in VulkanCleanupHelper() 152 #define VK_CALL(X) gpu->vkInterface()->fFunctions.f##X;
|
/external/skia/tools/gpu/atlastext/ |
D | GLTestAtlasTextRenderer.cpp | 65 #define callgl(NAME, ...) fContext->gl()->fFunctions.f##NAME(__VA_ARGS__) 69 auto error = fContext->gl()->fFunctions.fGetError(); \
|
/external/skqp/tools/gpu/atlastext/ |
D | GLTestAtlasTextRenderer.cpp | 65 #define callgl(NAME, ...) fContext->gl()->fFunctions.f##NAME(__VA_ARGS__) 69 auto error = fContext->gl()->fFunctions.fGetError(); \
|
/external/skqp/src/gpu/glsl/ |
D | GrGLSLShaderBuilder.h | 234 SkString fFunctions; variable
|
/external/skia/src/gpu/glsl/ |
D | GrGLSLShaderBuilder.h | 235 SkString fFunctions; variable
|