Home
last modified time | relevance | path

Searched refs:fAttributes (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/tests/
DPDFTaggedTableTest.cpp67 table->fAttributes.appendFloatArray("Layout", "BBox", {72, 72, 360, 360}); in DEF_TEST()
87 cell->fAttributes.appendNodeIdArray( in DEF_TEST()
92 cell->fAttributes.appendInt("Table", "RowSpan", 2); in DEF_TEST()
94 cell->fAttributes.appendInt("Table", "ColSpan", 2); in DEF_TEST()
96 cell->fAttributes.appendName( in DEF_TEST()
DPrimitiveProcessorTest.cpp87 WriteOutputPosition(args.fVertBuilder, gpArgs, gp.fAttributes[0].name()); in onCreateProgramInfo()
105 fAttributes = std::make_unique<Attribute[]>(numAttribs); in onCreateProgramInfo()
111 fAttributes[i] = {fAttribNames[i].c_str(), kFloat_GrVertexAttribType, in onCreateProgramInfo()
114 fAttributes[i] = {fAttribNames[i].c_str(), kFloat2_GrVertexAttribType, in onCreateProgramInfo()
118 this->setVertexAttributes(fAttributes.get(), numAttribs); in onCreateProgramInfo()
123 std::unique_ptr<Attribute[]> fAttributes; in onCreateProgramInfo() member in __anonb508b7720111::Op::onCreateProgramInfo::GP
/third_party/skia/src/gpu/gl/
DGrGLProgram.h117 return fAttributes[i]; in vertexAttribute()
123 return fAttributes[i + fVertexAttributeCnt]; in instanceAttribute()
154 std::unique_ptr<Attribute[]> fAttributes; variable
DGrGLProgram.cpp78 , fAttributes(std::move(attributes)) in GrGLProgram()
/third_party/skia/src/gpu/ops/
DDrawVerticesOp.cpp58 const Attribute& positionAttr() const { return fAttributes[kPositionIndex]; } in positionAttr()
59 const Attribute& colorAttr() const { return fAttributes[kColorIndex]; } in colorAttr()
60 const Attribute& localCoordsAttr() const { return fAttributes[kLocalCoordsIndex]; } in localCoordsAttr()
169 fAttributes.push_back({"position", kFloat2_GrVertexAttribType, kFloat2_GrSLType}); in VerticesGP()
170 fAttributes.push_back(fColorArrayType != ColorArrayType::kUnused in VerticesGP()
173 fAttributes.push_back(localCoordsType == LocalCoordsType::kExplicit in VerticesGP()
177 this->setVertexAttributes(fAttributes.data(), fAttributes.size()); in VerticesGP()
186 std::vector<Attribute> fAttributes; member in skgpu::v1::DrawVerticesOp::__anon57626cbc0111::VerticesGP
/third_party/skia/src/gpu/
DGrGeometryProcessor.h136 Iter begin() const { return Iter(fAttributes, fCount); } in begin()
146 fAttributes = attrs; in init()
158 const Attribute* fAttributes = nullptr; variable
217 add_attributes(fVertexAttributes.fAttributes, fVertexAttributes.fRawCount); in getAttributeKey()
219 add_attributes(fInstanceAttributes.fAttributes, fInstanceAttributes.fRawCount); in getAttributeKey()
/third_party/skia/experimental/graphite/src/
DGraphicsPipelineDesc.h95 Iter begin() const { return Iter(fAttributes, fCount); } in begin()
104 fAttributes = attrs; in init()
116 const Attribute* fAttributes = nullptr; variable
/third_party/skia/src/gpu/gl/builders/
DGrGLProgramBuilder.cpp124 fAttributes = std::make_unique<GrGLProgram::Attribute[]>( in computeCountsAndStrides()
127 fAttributes[i].fCPUType = a.cpuType(); in computeCountsAndStrides()
128 fAttributes[i].fGPUType = a.gpuType(); in computeCountsAndStrides()
129 fAttributes[i].fOffset = *stride; in computeCountsAndStrides()
131 fAttributes[i].fLocation = i; in computeCountsAndStrides()
543 std::move(fAttributes), in createProgram()
DGrGLProgramBuilder.h93 std::unique_ptr<GrGLProgram::Attribute[]> fAttributes; variable
/third_party/skia/src/pdf/
DSkPDFTag.cpp52 std::unique_ptr<SkPDFArray> fAttributes; member
180 dst->fAttributes = std::move(node.fAttributes.fAttrs); in Copy()
286 if (node->fAttributes) { in PrepareTagTreeToEmit()
287 dict.insertObject("A", std::move(node->fAttributes)); in PrepareTagTreeToEmit()
/third_party/skia/include/docs/
DSkPDFDocument.h66 AttributeList fAttributes; member