Home
last modified time | relevance | path

Searched refs:deviceQuadType (Results 1 – 9 of 9) sorted by relevance

/external/skqp/src/gpu/ops/
DGrQuadPerEdgeAA.h35 VertexSpec(GrQuadType deviceQuadType, ColorType colorType, GrQuadType localQuadType, in VertexSpec()
37 : fDeviceQuadType(static_cast<unsigned>(deviceQuadType)) in VertexSpec()
45 GrQuadType deviceQuadType() const { return static_cast<GrQuadType>(fDeviceQuadType); } in deviceQuadType() function
DGrFillRectOp.cpp65 GrQuadType deviceQuadType, in Make() argument
69 GrResolveAATypeForQuad(aaType, edgeAA, deviceQuad, deviceQuadType, &aaType, &edgeAA); in Make()
71 stencilSettings, deviceQuad, deviceQuadType, localQuad, localQuadType); in Make()
78 const GrPerspQuad& deviceQuad, GrQuadType deviceQuadType, in FillRectOp() argument
85 fDeviceQuads.push_back(deviceQuad, deviceQuadType, { paintColor, edgeFlags }); in FillRectOp()
93 this->setBounds(deviceQuad.bounds(deviceQuadType), in FillRectOp()
382 GrQuadType deviceQuadType = GrQuadTypeForTransformedRect(viewMatrix); in MakeSet() local
387 deviceQuadType, GrPerspQuad(quads[0].fRect, quads[0].fLocalMatrix), in MakeSet()
397 GrResolveAATypeForQuad(aaType, quads[i].fAAFlags, deviceQuad, deviceQuadType, in MakeSet()
DGrQuadPerEdgeAA.cpp352 vb->write(x[i], y[i], If(spec.deviceQuadType() == GrQuadType::kPerspective, w[i]), in write_quad()
432 if (spec.deviceQuadType() == GrQuadType::kPerspective) { in Tessellate()
445 spec.deviceQuadType() <= GrQuadType::kRectilinear); in Tessellate()
501 return this->deviceQuadType() == GrQuadType::kPerspective ? 3 : 2; in deviceDimensionality()
/external/skia/src/gpu/ops/
DGrQuadPerEdgeAA.h66 VertexSpec(GrQuad::Type deviceQuadType, ColorType colorType, GrQuad::Type localQuadType, in VertexSpec()
70 : fDeviceQuadType(static_cast<unsigned>(deviceQuadType)) in VertexSpec()
79 deviceQuadType > GrQuad::Type::kRectilinear) { } in VertexSpec()
81 GrQuad::Type deviceQuadType() const { return static_cast<GrQuad::Type>(fDeviceQuadType); } in deviceQuadType() function
DGrQuadPerEdgeAA.cpp43 If(spec.deviceQuadType() == GrQuad::Type::kPerspective, deviceQuad->w(i)), in write_quad_generic()
82 SkASSERT(spec.deviceQuadType() != GrQuad::Type::kPerspective); in write_2d_color()
109 SkASSERT(spec.deviceQuadType() != GrQuad::Type::kPerspective); in write_2d_uv()
129 SkASSERT(spec.deviceQuadType() != GrQuad::Type::kPerspective); in write_2d_color_uv()
155 SkASSERT(spec.deviceQuadType() != GrQuad::Type::kPerspective); in write_2d_cov_uv()
182 SkASSERT(spec.deviceQuadType() != GrQuad::Type::kPerspective); in write_2d_uv_strict()
202 SkASSERT(spec.deviceQuadType() != GrQuad::Type::kPerspective); in write_2d_color_uv_strict()
228 SkASSERT(spec.deviceQuadType() != GrQuad::Type::kPerspective); in write_2d_cov_uv_strict()
271 if (spec.deviceQuadType() != GrQuad::Type::kPerspective && !spec.requiresGeometrySubset()) { in GetWriteQuadProc()
314 SkASSERT(deviceQuad->quadType() <= fVertexSpec.deviceQuadType()); in append()
[all …]
DGrFillRectOp.cpp192 return VertexSpec(fQuads.deviceQuadType(), fColorType, fQuads.localQuadType(), in vertexSpec()
367 (uint32_t) fQuads.deviceQuadType(), (uint32_t) fQuads.localQuadType()); in onDumpInfo()
DGrTextureOp.cpp809 if (op.fQuads.deviceQuadType() > quadType) { in characterize()
810 quadType = op.fQuads.deviceQuadType(); in characterize()
/external/skia/tests/
DGrQuadBufferTest.cpp108 ASSERT(GrQuad::Type::kPerspective == buffer.deviceQuadType()); in TEST()
/external/skia/src/gpu/geometry/
DGrQuadBuffer.h41 GrQuad::Type deviceQuadType() const { return fDeviceType; } in deviceQuadType() function