/external/skia/src/gpu/gl/ |
D | GrGLInterface.cpp | 25 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 …]
|
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.fBindTexture = bind_to_member(this, &GrGLTestInterface::bindTexture); in GrGLTestInterface() 27 … fFunctions.fBindFragDataLocation = bind_to_member(this, &GrGLTestInterface::bindFragDataLocation); in GrGLTestInterface() 28 …fFunctions.fBindFragDataLocationIndexed = bind_to_member(this, &GrGLTestInterface::bindFragDataLoc… in GrGLTestInterface() [all …]
|
D | GrGLUtil.h | 189 (IFACE)->fFunctions.f##X; \ 203 (RET) = (IFACE)->fFunctions.f##X; \ 208 #define GR_GL_GET_ERROR(IFACE) (IFACE)->fFunctions.fGetError()
|
D | GrGLContext.cpp | 16 if (!interface->fFunctions.fGetString) { in Create()
|
D | GrGLCaps.cpp | 907 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()
|
D | GrGLAssembleInterface.cpp | 82 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLAssembleGLInterface() 576 GrGLInterface::Functions* functions = &interface->fFunctions; in GrGLAssembleGLESInterface() 916 if (!interface->fFunctions.fDebugMessageControl) { in GrGLAssembleGLESInterface()
|
D | GrGLUtil.cpp | 14 while (GR_GL_NO_ERROR != gl->fFunctions.fGetError()) {} in GrGLClearErr()
|
D | GrGLPathRendering.cpp | 85 nullptr != glInterface->fFunctions.fBindFragmentInputLocation; in GrGLPathRendering()
|
D | GrGLTestInterface.h | 336 fExtensions.init(standard, fFunctions.fGetString, fFunctions.fGetStringi, in init() 337 fFunctions.fGetIntegerv, nullptr, GR_EGL_NO_DISPLAY); in init()
|
/external/skia/src/gpu/vk/ |
D | GrVkInterface.cpp | 24 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 …]
|
D | GrVkUtil.h | 20 #define GR_VK_CALL(IFACE, X) (IFACE)->fFunctions.f##X;
|
/external/skia/tests/ |
D | GpuSampleLocationsTest.cpp | 170 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/ |
D | SkSLFunctionReference.h | 25 , fFunctions(function) {} in FunctionReference() 32 const std::vector<const FunctionDeclaration*> fFunctions; member
|
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() 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/ |
D | GrGLSLShaderBuilder.h | 250 SkString fFunctions; variable
|
/external/skia/src/sksl/ |
D | SkSLIRGenerator.cpp | 524 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/ |
D | GLTestContext_command_buffer.cpp | 282 this->gl()->fFunctions.fFlush(); in presentCommandBuffer()
|
/external/skia/include/gpu/vk/ |
D | GrVkInterface.h | 202 } fFunctions; member
|
/external/skia/bench/ |
D | GLInstancedArraysBench.cpp | 173 if (!ctx->interface()->fFunctions.fDrawArraysInstanced) { in onGetGLContext()
|
/external/skia/include/gpu/gl/ |
D | GrGLInterface.h | 475 } fFunctions; member
|
/external/skia/src/views/win/ |
D | SkOSWindow_win.cpp | 38 (IFACE)->fFunctions.f##X; \
|