Home
last modified time | relevance | path

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

123

/third_party/flutter/skia/src/gpu/gl/
DGrGLInterfaceAutogen.cpp41 if (!fFunctions.fActiveTexture || in validate()
42 !fFunctions.fAttachShader || in validate()
43 !fFunctions.fBindAttribLocation || in validate()
44 !fFunctions.fBindBuffer || in validate()
45 !fFunctions.fBindTexture || in validate()
46 !fFunctions.fBlendColor || in validate()
47 !fFunctions.fBlendEquation || in validate()
48 !fFunctions.fBlendFunc || in validate()
49 !fFunctions.fBufferData || in validate()
50 !fFunctions.fBufferSubData || in validate()
[all …]
DGrGLUtil.h257 (IFACE)->fFunctions.f##X; \
271 (RET) = (IFACE)->fFunctions.f##X; \
276 #define GR_GL_GET_ERROR(IFACE) (IFACE)->fFunctions.fGetError()
/third_party/skia/src/gpu/gl/
DGrGLInterfaceAutogen.cpp42 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 …]
/third_party/flutter/skia/src/gpu/vk/
DGrVkInterface.cpp14 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 …]
DGrVkUtil.h22 #define GR_VK_CALL(IFACE, X) (IFACE)->fFunctions.f##X
/third_party/skia/src/gpu/vk/
DGrVkInterface.cpp14 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 …]
DGrVkAMDMemoryAllocator.cpp35 #define GR_COPY_FUNCTION(NAME) functions.vk##NAME = interface->fFunctions.f##NAME in Make()
36 #define GR_COPY_FUNCTION_KHR(NAME) functions.vk##NAME##KHR = interface->fFunctions.f##NAME in Make()
/third_party/flutter/skia/src/sksl/ir/
DSkSLFunctionReference.h25 , 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()
DSkSLUnresolvedFunction.h21 , fFunctions(std::move(funcs)) { in UnresolvedFunction()
33 const std::vector<const FunctionDeclaration*> fFunctions; member
DSkSLSymbolTable.cpp18 return ((UnresolvedFunction&) s).fFunctions; in GetFunctions()
95 for (const auto* f : ((UnresolvedFunction&) *oldSymbol).fFunctions) { in addWithoutOwnership()
118 for (auto& f : ((UnresolvedFunction&) *pair.second).fFunctions) { in markAllFunctionsBuiltin()
/third_party/skia/src/sksl/ir/
DSkSLFunctionReference.h28 , fFunctions(std::move(functions)) {} in FunctionReference()
31 return fFunctions; in functions()
51 , fFunctions(std::move(functions)) {} in FunctionReference()
53 std::vector<const FunctionDeclaration*> fFunctions; variable
DSkSLMethodReference.h40 , fFunctions(std::move(functions)) {} in MethodReference()
45 const std::vector<const FunctionDeclaration*>& functions() const { return fFunctions; } in functions()
65 , fFunctions(std::move(functions)) {} in MethodReference()
68 std::vector<const FunctionDeclaration*> fFunctions; variable
DSkSLUnresolvedFunction.h24 , fFunctions(std::move(funcs)) { in UnresolvedFunction()
34 return fFunctions; in functions()
42 std::vector<const FunctionDeclaration*> fFunctions;
/third_party/skia/tools/sk_app/win/
DANGLEWindowContext_win.cpp126 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()
/third_party/flutter/skia/tools/sk_app/win/
DANGLEWindowContext_win.cpp126 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()
/third_party/skia/tools/gpu/gl/interface/
Dtemplates.go58 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();
/third_party/flutter/skia/tools/gpu/gl/interface/
Dtemplates.go58 GrGLInterface::Functions* functions = &interface->fFunctions;
72 if (!interface->fFunctions.fDebugMessageControl) {
138 GrGLInterface::Functions* functions = &interface->fFunctions;
202 GrGLInterface::Functions* functions = &interface->fFunctions;
264 const_cast<GrGLInterface*>(this)->fFunctions = GrGLInterface::Functions();
/third_party/flutter/skia/src/sksl/
DSkSLByteCode.h181 std::vector<std::unique_ptr<ByteCodeFunction>> fFunctions; member
185 for (const auto& f : fFunctions) { in getFunction()
/third_party/skia/tools/gpu/gl/egl/
DCreatePlatformGLTestContext_egl.cpp254 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()
/third_party/skia/include/gpu/gl/
DGrGLInterface.h77 , fFunctions(that.fFunctions) {} in GrGLInterface()
334 } fFunctions; member
/third_party/skia/tools/gpu/gl/
DGLTestContext.cpp236 auto getString = [wrapped = &fOriginalGLInterface->fFunctions.fGetString, in overrideVersion()
247 newInterface->fFunctions.fGetString = getString; in overrideVersion()
/third_party/skia/tools/gpu/gl/angle/
DGLTestContext_angle.cpp385 while (this->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) {} in eglImageToExternalTexture()
401 if (this->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) { in eglImageToExternalTexture()
406 if (this->gl()->fFunctions.fGetError() != GR_GL_NO_ERROR) { in eglImageToExternalTexture()
/third_party/skia/src/gpu/
DGrAHardwareBufferUtils.cpp36 #define VK_CALL(X) gpu->vkInterface()->fFunctions.f##X
278 , fDestroyImage(gpu->vkInterface()->fFunctions.fDestroyImage) in VulkanCleanupHelper()
279 , fFreeMemory(gpu->vkInterface()->fFunctions.fFreeMemory) {} in VulkanCleanupHelper()
/third_party/flutter/skia/src/gpu/
DGrAHardwareBufferUtils.cpp36 #define VK_CALL(X) gpu->vkInterface()->fFunctions.f##X;
278 , fDestroyImage(gpu->vkInterface()->fFunctions.fDestroyImage) in VulkanCleanupHelper()
279 , fFreeMemory(gpu->vkInterface()->fFunctions.fFreeMemory) {} in VulkanCleanupHelper()
/third_party/skia/tools/gpu/gl/command_buffer/
DGLTestContext_command_buffer.cpp321 const char* versionString = (const char*)gl->fFunctions.fGetString(GR_GL_VERSION); in CommandBufferGLTestContext()
401 this->gl()->fFunctions.fFlush(); in presentCommandBuffer()

123