Home
last modified time | relevance | path

Searched refs:gpuType (Results 1 – 10 of 10) sorted by relevance

/external/skia/src/gpu/graphite/
DAttribute.h23 SkSLType gpuType) in Attribute() argument
24 : fName(name), fCPUType(cpuType), fGPUType(gpuType) { in Attribute()
25 SkASSERT(name && gpuType != SkSLType::kVoid); in Attribute()
35 constexpr SkSLType gpuType() const { return fGPUType; } in gpuType() function
DContextUtils.cpp246 result.append(SkSLTypeString(a.gpuType())); in emit_attributes()
/external/skia/src/gpu/ganesh/
DGrGeometryProcessor.h77 SkSLType gpuType) in Attribute() argument
78 : fName(name), fCPUType(cpuType), fGPUType(gpuType) { in Attribute()
79 SkASSERT(name && gpuType != SkSLType::kVoid); in Attribute()
86 SkSLType gpuType, in Attribute() argument
88 : fName(name), fCPUType(cpuType), fGPUType(gpuType), fOffset(SkToU32(offset)) { in Attribute()
90 SkASSERT(name && gpuType != SkSLType::kVoid); in Attribute()
100 constexpr SkSLType gpuType() const { return fGPUType; } in gpuType() function
DGrGeometryProcessor.cpp502 return Attribute(fCurr->name(), fCurr->cpuType(), fCurr->gpuType(), fImplicitOffset); in operator *()
562 b->addBits(8 , attr.isInitialized() ? static_cast<int>(attr.gpuType()) : 0xff, in addToKey()
/external/skia/src/gpu/ganesh/gl/
DGrGLVertexArray.cpp83 SkSLType gpuType, in set() argument
108 array->fGPUType != gpuType || in set()
116 if (SkSLTypeIsFloatType(gpuType)) { in set()
133 array->fGPUType = gpuType; in set()
DGrGLVertexArray.h44 SkSLType gpuType,
/external/skia/src/gpu/ganesh/effects/
DGrSkSLFP.cpp70 SkSLType gpuType; in emitCode() local
71 SkAssertResult(SkSL::type_to_sksltype(fContext, *type, &gpuType)); in emitCode()
75 std::string value = SkSLTypeString(gpuType); in emitCode()
78 bool isFloat = SkSLTypeIsFloatType(gpuType); in emitCode()
93 gpuType, in emitCode()
/external/skia/src/gpu/ganesh/ops/
DDrawMeshOp.cpp120 SkSLType gpuType; in declareUniform() local
121 SkAssertResult(SkSL::type_to_sksltype(fContext, *type, &gpuType)); in declareUniform()
151 gpuType, in declareUniform()
DQuadPerEdgeAA.cpp731 GrGLSLVarying v(gp.fLocalCoord.gpuType()); in makeProgramImpl()
/external/skia/src/gpu/ganesh/gl/builders/
DGrGLProgramBuilder.cpp129 fAttributes[i].fGPUType = a.gpuType(); in computeCountsAndStrides()