Home
last modified time | relevance | path

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

/third_party/flutter/skia/experimental/svg/model/
DSkSVGPattern.cpp18 fAttributes.fX.set(x); in setX()
22 fAttributes.fY.set(y); in setY()
26 fAttributes.fWidth.set(w); in setWidth()
30 fAttributes.fHeight.set(h); in setHeight()
38 fAttributes.fPatternTransform.set(patternTransform); in setPatternTransform()
117 inherit_if_needed(currentNode->fAttributes.fX , attrs->fX) | in resolveHref()
118 inherit_if_needed(currentNode->fAttributes.fY , attrs->fY) | in resolveHref()
119 inherit_if_needed(currentNode->fAttributes.fWidth , attrs->fWidth) | in resolveHref()
120 inherit_if_needed(currentNode->fAttributes.fHeight , attrs->fHeight) | in resolveHref()
121 inherit_if_needed(currentNode->fAttributes.fPatternTransform, attrs->fPatternTransform); in resolveHref()
DSkSVGPattern.h45 } fAttributes; variable
/third_party/flutter/skia/tests/
DPrimitiveProcessorTest.cpp63 fAttributes.reset(new Attribute[numAttribs]); in onPrepareDraws()
69 fAttributes[i] = {fAttribNames[i].c_str(), kFloat_GrVertexAttribType, in onPrepareDraws()
72 fAttributes[i] = {fAttribNames[i].c_str(), kFloat2_GrVertexAttribType, in onPrepareDraws()
76 this->setVertexAttributes(fAttributes.get(), numAttribs); in onPrepareDraws()
87 gp.fAttributes[0].name()); in onPrepareDraws()
106 std::unique_ptr<Attribute[]> fAttributes; in onPrepareDraws() member in __anon83b9ac7f0111::Op::onPrepareDraws::GP
/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 __anon07bc84ca0111::Op::onCreateProgramInfo::GP
/third_party/flutter/skia/src/gpu/
DGrPrimitiveProcessor.h122 Iter begin() const { return Iter(fAttributes, fCount); } in begin()
129 fAttributes = attrs; in init()
141 const Attribute* fAttributes = nullptr; variable
201 add_attributes(fVertexAttributes.fAttributes, fVertexAttributes.fRawCount); in getAttributeKey()
202 add_attributes(fInstanceAttributes.fAttributes, fInstanceAttributes.fRawCount); in getAttributeKey()
/third_party/flutter/skia/src/gpu/gl/
DGrGLProgram.h134 return fAttributes[i]; in vertexAttribute()
140 return fAttributes[i + fVertexAttributeCnt]; in instanceAttribute()
161 std::unique_ptr<Attribute[]> fAttributes; variable
DGrGLProgram.cpp50 , fAttributes(std::move(attributes)) in GrGLProgram()
/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::__anondb9304140111::VerticesGP
/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/
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/flutter/skia/src/gpu/gl/builders/
DGrGLProgramBuilder.cpp113 fAttributes.reset( in computeCountsAndStrides()
116 fAttributes[i].fCPUType = a.cpuType(); in computeCountsAndStrides()
117 fAttributes[i].fGPUType = a.gpuType(); in computeCountsAndStrides()
118 fAttributes[i].fOffset = *stride; in computeCountsAndStrides()
120 fAttributes[i].fLocation = i; in computeCountsAndStrides()
485 std::move(fAttributes), in createProgram()
DGrGLProgramBuilder.h84 std::unique_ptr<GrGLProgram::Attribute[]> fAttributes; 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()
511 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