Searched defs:Geometry (Results 1 - 25 of 25) sorted by relevance

/external/skia/src/gpu/batches/
H A DGrTInstanceBatch.h18 * A Geometry struct
27 * void SetBounds(const Geometry& seedGeometry, SkRect* outBounds)
29 * void UpdateBoundsAfterAppend(const Geometry& lastGeometry, SkRect* currentBounds)
31 * bool CanCombine(const Geometry& mine, const Geometry& theirs,
34 * const GrGeometryProcessor* CreateGP(const Geometry& seedGeometry,
39 * Tesselate(intptr_t vertices, size_t vertexStride, const Geometry& geo,
47 typedef typename Impl::Geometry Geometry; typedef in class:GrTInstanceBatch
75 SkSTArray<1, Geometry, tru
[all...]
H A DGrTestBatch.h23 struct Geometry { struct in class:GrTestBatch
67 virtual Geometry* geoData(int index) = 0;
68 virtual const Geometry* geoData(int index) const = 0;
H A DGrDrawAtlasBatch.h19 struct Geometry { struct in class:GrDrawAtlasBatch
24 static GrDrawBatch* Create(const Geometry& geometry, const SkMatrix& viewMatrix,
44 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
51 GrDrawAtlasBatch(const Geometry& geometry, const SkMatrix& viewMatrix, int spriteCount,
62 SkSTArray<1, Geometry, true> fGeoData;
H A DGrDrawVerticesBatch.h25 struct Geometry { struct in class:GrDrawVerticesBatch
33 static GrDrawBatch* Create(const Geometry& geometry, GrPrimitiveType primitiveType,
49 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
55 GrDrawVerticesBatch(const Geometry& geometry, GrPrimitiveType primitiveType,
77 SkSTArray<1, Geometry, true> fGeoData;
H A DGrNinePatch.cpp34 struct Geometry { struct in class:GrNonAANinePatchBatch
44 Geometry& geo = fGeoData.push_back();
84 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
114 const Geometry& geo = fGeoData[i];
173 SkSTArray<1, Geometry, true> fGeoData;
H A DGrAALinearizingConvexPathRenderer.cpp122 struct Geometry { struct in class:AAFlatteningConvexPathBatch
131 static GrDrawBatch* Create(const Geometry& geometry) {
221 const Geometry& args = fGeoData[i];
259 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
261 AAFlatteningConvexPathBatch(const Geometry& geometry) : INHERITED(ClassID()) {
318 SkSTArray<1, Geometry, true> fGeoData;
329 AAFlatteningConvexPathBatch::Geometry geometry;
349 AAFlatteningConvexPathBatch::Geometry geometry;
H A DGrNonAAFillRectBatch.cpp33 template <typename Geometry>
34 static void SetBounds(const Geometry& geo, SkRect* outBounds) {
38 template <typename Geometry>
39 static void UpdateBoundsAfterAppend(const Geometry& geo, SkRect* outBounds) {
118 struct Geometry { struct in class:NonAAFillRectBatchImp
127 static SkString DumpInfo(const Geometry& geo, int index) {
136 static bool CanCombine(const Geometry& mine, const Geometry& theirs,
141 static const GrGeometryProcessor* CreateGP(const Geometry& geo,
151 static void Tesselate(intptr_t vertices, size_t vertexStride, const Geometry
160 struct Geometry { struct in class:NonAAFillRectBatchPerspectiveImp
[all...]
H A DGrNonAAStrokeRectBatch.cpp44 struct Geometry { struct in class:NonAAStrokeRectBatch
67 Geometry& geometry = fGeoData.push_back();
87 const Geometry& geo = fGeoData[0];
95 void setupBounds(SkRect* bounds, const Geometry& geo, bool snapToPixelCenters) {
126 const Geometry& args = fGeoData[0];
212 SkSTArray<1, Geometry, true> fGeoData;
H A DGrAAFillRectBatch.cpp198 template <class Geometry>
199 static void SetBounds(const Geometry& geo, SkRect* outBounds) {
203 template <class Geometry>
204 static void UpdateBoundsAfterAppend(const Geometry& geo, SkRect* outBounds) {
211 struct Geometry { struct in class:AAFillRectBatchNoLocalMatrixImp
220 static SkString DumpInfo(const Geometry& geo, int index) {
229 static bool CanCombine(const Geometry& mine, const Geometry& theirs,
237 static const GrGeometryProcessor* CreateGP(const Geometry& geo,
250 static void Tesselate(intptr_t vertices, size_t vertexStride, const Geometry
260 struct Geometry { struct in class:AAFillRectBatchLocalMatrixImp
[all...]
H A DGrAtlasTextBatch.h24 struct Geometry { struct in class:GrAtlasTextBatch
78 Geometry& geometry() { return fGeoData[0]; }
81 const Geometry& geo = fGeoData[0];
165 // The minimum number of Geometry we will try to allocate.
167 SkAutoSTMalloc<kMinGeometryAllocated, Geometry> fGeoData;
H A DGrDefaultPathRenderer.cpp217 struct Geometry { struct in class:DefaultPathBatch
223 static GrDrawBatch* Create(const Geometry& geometry, uint8_t coverage,
282 const Geometry& args = fGeoData[i];
344 const Geometry& args = fGeoData[i];
379 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
381 DefaultPathBatch(const Geometry& geometry, uint8_t coverage, const SkMatrix& viewMatrix,
541 SkSTArray<1, Geometry, true> fGeoData;
709 DefaultPathBatch::Geometry geometry;
768 DefaultPathBatch::Geometry geometry;
H A DGrAAConvexPathRenderer.cpp748 struct Geometry { struct in class:AAConvexPathBatch
754 static GrDrawBatch* Create(const Geometry& geometry) { return new AAConvexPathBatch(geometry); }
811 const Geometry& args = fGeoData[i];
871 const Geometry& args = fGeoData[i];
940 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
942 AAConvexPathBatch(const Geometry& geometry) : INHERITED(ClassID()) {
998 SkSTArray<1, Geometry, true> fGeoData;
1009 AAConvexPathBatch::Geometry geometry;
1026 AAConvexPathBatch::Geometry geometry;
H A DGrAADistanceFieldPathRenderer.cpp131 struct Geometry { struct in class:AADistanceFieldPathBatch
132 Geometry(const SkStrokeRec& stroke) : fStroke(stroke) { function in struct:AADistanceFieldPathBatch::Geometry
151 static GrDrawBatch* Create(const Geometry& geometry, const SkMatrix& viewMatrix,
232 const Geometry& args = fGeoData[i];
298 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
300 AADistanceFieldPathBatch(const Geometry& geometry,
531 SkSTArray<1, Geometry, true> fGeoData;
558 AADistanceFieldPathBatch::Geometry geometry(*args.fStroke);
642 AADistanceFieldPathBatch::Geometry geometry(GrTest::TestStrokeRec(random));
H A DGrAAStrokeRectBatch.cpp51 struct Geometry { struct in class:AAStrokeRectBatch
73 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
81 Geometry& geometry = fGeoData.push_back();
102 void updateBounds(SkRect* bounds, const Geometry& geo) {
134 const Geometry& geometry() const { return fGeoData[0]; }
162 SkSTArray<1, Geometry, true> fGeoData;
221 const Geometry& args = fGeoData[i];
H A DGrPLSPathRenderer.cpp788 struct Geometry { struct in class:PLSPathBatch
794 static GrDrawBatch* Create(const Geometry& geometry) {
841 const Geometry& args = fGeoData[i];
943 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
946 PLSPathBatch(const Geometry& geometry) : INHERITED(ClassID()) {
973 SkSTArray<1, Geometry, true> fGeoData;
985 PLSPathBatch::Geometry geometry;
1003 PLSPathBatch::Geometry geometry;
H A DGrAAHairLinePathRenderer.cpp674 struct Geometry { struct in class:AAHairlineBatch
682 static GrDrawBatch* Create(const Geometry& geometry) { return new AAHairlineBatch(geometry); }
710 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
718 AAHairlineBatch(const Geometry& geometry) : INHERITED(ClassID()) {
785 SkSTArray<1, Geometry, true> fGeoData;
851 const Geometry& args = fGeoData[i];
962 AAHairlineBatch::Geometry geometry;
/external/skia/gm/
H A Dconvexpolyeffect.cpp35 struct Geometry : public GrTestBatch::Geometry { struct in class:skiagm::ConvexPolyTestBatch
43 static GrDrawBatch* Create(const GrGeometryProcessor* gp, const Geometry& geo) {
48 ConvexPolyTestBatch(const GrGeometryProcessor* gp, const Geometry& geo)
57 Geometry* geoData(int index) override {
62 const Geometry* geoData(int index) const override {
81 Geometry fGeometry;
201 ConvexPolyTestBatch::Geometry geometry;
247 ConvexPolyTestBatch::Geometry geometry;
H A Dbeziereffects.cpp36 struct Geometry : public GrTestBatch::Geometry { struct in class:skiagm::BezierCubicOrConicTestBatch
42 static GrDrawBatch* Create(const GrGeometryProcessor* gp, const Geometry& geo,
48 BezierCubicOrConicTestBatch(const GrGeometryProcessor* gp, const Geometry& geo,
64 Geometry* geoData(int index) override {
69 const Geometry* geoData(int index) const override {
94 Geometry fGeometry;
222 BezierCubicOrConicTestBatch::Geometry geometry;
363 BezierCubicOrConicTestBatch::Geometry geometry;
427 struct Geometry struct in class:skiagm::BezierQuadTestBatch
[all...]
/external/lzma/CPP/Windows/
H A DFileIO.h132 DISK_GEOMETRY Geometry; member in struct:NWindows::NFile::NIO::my_DISK_GEOMETRY_EX
/external/skia/samplecode/
H A DSampleClipDrawMatch.cpp24 enum Geometry { enum
248 Geometry fGeom;
/external/deqp/modules/gles3/performance/
H A Des3pDepthTests.cpp90 typedef vector<float> Geometry; typedef in namespace:deqp::gles3::Performance::__anon4373
95 Geometry geometry;
97 ObjectData (const ProgramSources& shader_, const Geometry& geometry_) : shader(shader_), geometry(geometry_) {}
682 log << TestLog::Section("Geometry", "Geometry");
687 log << TestLog::Image("Test Geometry", "Test Geometry", sample);
1147 log << TestLog::Message << "Geometry consists of two fullsceen quads. The first (occluding) is rendered once, the second (occluded) is rendered repeatedly" << TestLog::EndMessage;
1179 log << TestLog::Message << "Geometry consists of two fullsceen quads. The first (occluding) is rendered once, the second (occluded) is rendered repeatedly" << TestLog::EndMessage;
1211 log << TestLog::Message << "Geometry consist
[all...]
/external/skia/src/gpu/
H A DGrOvalRenderer.cpp611 struct Geometry { struct in class:CircleBatch
620 static GrDrawBatch* Create(const Geometry& geometry) { return new CircleBatch(geometry); }
688 const Geometry& geom = fGeoData[i];
727 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
729 CircleBatch(const Geometry& geometry) : INHERITED(ClassID()) {
770 SkSTArray<1, Geometry, true> fGeoData;
812 CircleBatch::Geometry geometry;
837 struct Geometry { struct in class:EllipseBatch
848 static GrDrawBatch* Create(const Geometry& geometry) { return new EllipseBatch(geometry); }
901 const Geometry
1087 struct Geometry { struct in class:DIEllipseBatch
1372 struct Geometry { struct in class:RRectCircleRendererBatch
1549 struct Geometry { struct in class:RRectEllipseRendererBatch
[all...]
/external/skia/src/gpu/effects/
H A DGrDashingEffect.cpp253 struct Geometry { struct in class:DashBatch
265 static GrDrawBatch* Create(const Geometry& geometry, SkPaint::Cap cap, DashAAMode aaMode,
280 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
283 DashBatch(const Geometry& geometry, SkPaint::Cap cap, DashAAMode aaMode, bool fullDash)
318 DashDraw(const Geometry& geo) {
380 const Geometry& args = fGeoData[i];
578 const Geometry& geom = fGeoData[i];
691 SkSTArray<1, Geometry, true> fGeoData;
703 DashBatch::Geometry geometry;
/external/pdfium/third_party/lcms2-2.6/include/
H A Dlcms2.h992 cmsUInt32Number Geometry; // 0=unknown, 1=45/0, 0/45 2=0d, d/0 member in struct:__anon16000
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 555 milliseconds