Home
last modified time | relevance | path

Searched refs:cpuType (Results 1 – 12 of 12) sorted by relevance

/third_party/skia/src/gpu/gl/
DGrGLVertexArray.cpp82 GrVertexAttribType cpuType, in set() argument
107 array->fCPUType != cpuType || in set()
115 const AttribLayout& layout = attrib_layout(cpuType); in set()
132 array->fCPUType = cpuType; in set()
DGrGLVertexArray.h43 GrVertexAttribType cpuType,
/third_party/skia/experimental/graphite/src/
DGraphicsPipelineDesc.h31 VertexAttribType cpuType, in Attribute() argument
33 : fName(name), fCPUType(cpuType), fGPUType(gpuType) { in Attribute()
43 constexpr VertexAttribType cpuType() const { return fCPUType; } in cpuType() function
/third_party/skia/src/gpu/
DGrGeometryProcessor.h68 GrVertexAttribType cpuType, in Attribute() argument
70 : fName(name), fCPUType(cpuType), fGPUType(gpuType) { in Attribute()
80 constexpr GrVertexAttribType cpuType() const { return fCPUType; } in cpuType() function
212 b->addBits(8, attr.isInitialized() ? attr.cpuType() : 0xff, "attrType"); in getAttributeKey()
/third_party/skia/experimental/graphite/src/mtl/
DMtlGraphicsPipeline.mm224 MTLVertexFormat format = attribute_type_to_mtlformat(attribute.cpuType());
247 MTLVertexFormat format = attribute_type_to_mtlformat(attribute.cpuType());
/third_party/skia/src/gpu/ops/
DQuadPerEdgeAA.cpp638 b->addBits(1, (kFloat3_GrVertexAttribType == fLocalCoord.cpuType()), "localCoordsType"); in addToKey()
643 b->addBits(1, (kFloat4_GrVertexAttribType == fColor.cpuType()), "colorType"); in addToKey()
728 if (gp.fLocalCoord.cpuType() == kFloat3_GrVertexAttribType) { in makeProgramImpl()
/third_party/skia/src/gpu/vk/
DGrVkPipeline.cpp108 vkAttrib.format = attrib_type_to_vkformat(attrib.cpuType()); in setup_vertex_input_state()
119 vkAttrib.format = attrib_type_to_vkformat(attrib.cpuType()); in setup_vertex_input_state()
/third_party/skia/src/gpu/d3d/
DGrD3DPipelineStateBuilder.cpp254 attrib_type_to_format(attrib.cpuType()), in setup_vertex_input_layout()
267 attrib_type_to_format(attrib.cpuType()), in setup_vertex_input_layout()
/third_party/skia/src/gpu/dawn/
DGrDawnProgramBuilder.cpp346 attribute.format = to_dawn_vertex_format(attrib.cpuType()); in Build()
365 attribute.format = to_dawn_vertex_format(attrib.cpuType()); in Build()
/third_party/skia/tools/gpu/
DTestOps.cpp75 bool wideColor() const { return fInColor.cpuType() != kUByte4_norm_GrVertexAttribType; } in wideColor()
/third_party/skia/src/gpu/mtl/
DGrMtlPipelineStateBuilder.mm205 MTLVertexFormat format = attribute_type_to_mtlformat(attribute.cpuType());
239 MTLVertexFormat format = attribute_type_to_mtlformat(attribute.cpuType());
/third_party/skia/src/gpu/gl/builders/
DGrGLProgramBuilder.cpp127 fAttributes[i].fCPUType = a.cpuType(); in computeCountsAndStrides()