Home
last modified time | relevance | path

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

/external/skia/src/gpu/gl/
DGrGLInterface.cpp25 newInterface->fFunctions.fInsertEventMarker = insertEventMarkerFn; in GrGLInterfaceAddTestDebugMarker()
26 newInterface->fFunctions.fPushGroupMarker = pushGroupMarkerFn; in GrGLInterfaceAddTestDebugMarker()
27 newInterface->fFunctions.fPopGroupMarker = popGroupMarkerFn; in GrGLInterfaceAddTestDebugMarker()
42 clone->fFunctions = interface->fFunctions; in NewClone()
67 if (nullptr == fFunctions.fActiveTexture || in validate()
68 nullptr == fFunctions.fAttachShader || in validate()
69 nullptr == fFunctions.fBindAttribLocation || in validate()
70 nullptr == fFunctions.fBindBuffer || in validate()
71 nullptr == fFunctions.fBindTexture || in validate()
72 nullptr == fFunctions.fBlendColor || // -> GL >= 1.4 or extension, ES >= 2.0 in validate()
[all …]
DGrGLTestInterface.cpp19 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.fBindTexture = bind_to_member(this, &GrGLTestInterface::bindTexture); in GrGLTestInterface()
27fFunctions.fBindFragDataLocation = bind_to_member(this, &GrGLTestInterface::bindFragDataLocation); in GrGLTestInterface()
28fFunctions.fBindFragDataLocationIndexed = bind_to_member(this, &GrGLTestInterface::bindFragDataLoc… in GrGLTestInterface()
[all …]
DGrGLUtil.h189 (IFACE)->fFunctions.f##X; \
203 (RET) = (IFACE)->fFunctions.f##X; \
208 #define GR_GL_GET_ERROR(IFACE) (IFACE)->fFunctions.fGetError()
DGrGLContext.cpp16 if (!interface->fFunctions.fGetString) { in Create()
DGrGLCaps.cpp907 if (!gli->fFunctions.fStencilThenCoverFillPath || in hasPathRenderingSupport()
908 !gli->fFunctions.fStencilThenCoverStrokePath || in hasPathRenderingSupport()
909 !gli->fFunctions.fStencilThenCoverFillPathInstanced || in hasPathRenderingSupport()
910 !gli->fFunctions.fStencilThenCoverStrokePathInstanced || in hasPathRenderingSupport()
911 !gli->fFunctions.fProgramPathFragmentInputGen) { in hasPathRenderingSupport()
1935 fCompressedTexSubImageSupport = SkToBool(gli->fFunctions.fCompressedTexSubImage2D); in initConfigTable()
DGrGLAssembleInterface.cpp82 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLAssembleGLInterface()
576 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLAssembleGLESInterface()
916 if (!interface->fFunctions.fDebugMessageControl) { in GrGLAssembleGLESInterface()
DGrGLUtil.cpp14 while (GR_GL_NO_ERROR != gl->fFunctions.fGetError()) {} in GrGLClearErr()
DGrGLPathRendering.cpp85 nullptr != glInterface->fFunctions.fBindFragmentInputLocation; in GrGLPathRendering()
DGrGLTestInterface.h336 fExtensions.init(standard, fFunctions.fGetString, fFunctions.fGetStringi, in init()
337 fFunctions.fGetIntegerv, nullptr, GR_EGL_NO_DISPLAY); in init()
/external/skia/src/gpu/vk/
DGrVkInterface.cpp24 GrVkInterface::Functions* functions = &interface->fFunctions; in GrVkCreateInterface()
183 if (NULL == fFunctions.fCreateInstance || in validate()
184 NULL == fFunctions.fDestroyInstance || in validate()
185 NULL == fFunctions.fEnumeratePhysicalDevices || in validate()
186 NULL == fFunctions.fGetPhysicalDeviceFeatures || in validate()
187 NULL == fFunctions.fGetPhysicalDeviceFormatProperties || in validate()
188 NULL == fFunctions.fGetPhysicalDeviceImageFormatProperties || in validate()
189 NULL == fFunctions.fGetPhysicalDeviceProperties || in validate()
190 NULL == fFunctions.fGetPhysicalDeviceQueueFamilyProperties || in validate()
191 NULL == fFunctions.fGetPhysicalDeviceMemoryProperties || in validate()
[all …]
DGrVkUtil.h20 #define GR_VK_CALL(IFACE, X) (IFACE)->fFunctions.f##X;
/external/skia/tests/
DGpuSampleLocationsTest.cpp170 fFunctions = fTestContext->gl()->fFunctions; in GLTestSampleLocationsInterface()
172 fFunctions.fGetIntegerv = [&](GrGLenum pname, GrGLint* params) { in GLTestSampleLocationsInterface()
178 fTestContext->gl()->fFunctions.fGetIntegerv(pname, params); in GLTestSampleLocationsInterface()
182 fFunctions.fGetMultisamplefv = [&](GrGLenum pname, GrGLuint index, GrGLfloat* val) { in GLTestSampleLocationsInterface()
/external/skia/src/sksl/ir/
DSkSLFunctionReference.h25 , fFunctions(function) {} in FunctionReference()
32 const std::vector<const FunctionDeclaration*> fFunctions; member
DSkSLUnresolvedFunction.h21 , fFunctions(std::move(funcs)) { in UnresolvedFunction()
33 const std::vector<const FunctionDeclaration*> fFunctions; member
DSkSLSymbolTable.cpp18 return ((UnresolvedFunction&) s).fFunctions; in GetFunctions()
87 for (const auto* f : ((UnresolvedFunction&) *oldSymbol).fFunctions) { in addWithoutOwnership()
108 for (auto& f : ((UnresolvedFunction&) *pair.second).fFunctions) { in markAllFunctionsBuiltin()
/external/skia/src/gpu/glsl/
DGrGLSLShaderBuilder.h250 SkString fFunctions; variable
/external/skia/src/sksl/
DSkSLIRGenerator.cpp524 functions = ((UnresolvedFunction*) entry)->fFunctions; in convertFunction()
738 f->fFunctions)); in convertIdentifier()
1199 if (ref->fFunctions.size() > 1) { in call()
1200 for (const auto& f : ref->fFunctions) { in call()
1210 SkString msg = "no match for " + ref->fFunctions[0]->fName + "("; in call()
1221 return this->call(position, *ref->fFunctions[0], std::move(arguments)); in call()
/external/skia/tools/gpu/gl/command_buffer/
DGLTestContext_command_buffer.cpp282 this->gl()->fFunctions.fFlush(); in presentCommandBuffer()
/external/skia/include/gpu/vk/
DGrVkInterface.h202 } fFunctions; member
/external/skia/bench/
DGLInstancedArraysBench.cpp173 if (!ctx->interface()->fFunctions.fDrawArraysInstanced) { in onGetGLContext()
/external/skia/include/gpu/gl/
DGrGLInterface.h475 } fFunctions; member
/external/skia/src/views/win/
DSkOSWindow_win.cpp38 (IFACE)->fFunctions.f##X; \