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

/external/skia/src/gpu/
H A DGrTestBatch.h20 struct Geometry { struct in class:GrTestBatch
76 virtual Geometry* geoData(int index) = 0;
77 virtual const Geometry* geoData(int index) const = 0;
H A DGrRectBatch.cpp42 struct Geometry { struct in class:RectBatch
52 static GrBatch* Create(const Geometry& geometry) {
130 const Geometry& geom = fGeoData[i];
161 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
164 RectBatch(const Geometry& geometry) {
218 SkSTArray<1, Geometry, true> fGeoData;
228 RectBatch::Geometry geometry;
H A DGrAARectRenderer.cpp50 struct Geometry { struct in class:AAFillRectBatch
57 static GrBatch* Create(const Geometry& geometry) {
130 const Geometry& args = fGeoData[i];
144 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
147 AAFillRectBatch(const Geometry& geometry) {
308 SkSTArray<1, Geometry, true> fGeoData;
325 AAFillRectBatch::Geometry geometry;
404 struct Geometry { struct in class:AAStrokeRectBatch
412 static GrBatch* Create(const Geometry& geometry, const SkMatrix& viewMatrix) {
493 const Geometry
[all...]
H A DGrDefaultPathRenderer.cpp216 struct Geometry { struct in class:DefaultPathBatch
222 static GrBatch* Create(const Geometry& geometry, uint8_t coverage, const SkMatrix& viewMatrix,
284 Geometry& args = fGeoData[i];
346 Geometry& args = fGeoData[i];
381 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
384 DefaultPathBatch(const Geometry& geometry, uint8_t coverage, const SkMatrix& viewMatrix,
533 SkSTArray<1, Geometry, true> fGeoData;
695 DefaultPathBatch::Geometry geometry;
765 DefaultPathBatch::Geometry geometry;
H A DGrAADistanceFieldPathRenderer.cpp134 struct Geometry { struct in class:AADistanceFieldPathBatch
135 Geometry(const SkStrokeRec& stroke) : fStroke(stroke) {} function in struct:AADistanceFieldPathBatch::Geometry
142 static GrBatch* Create(const Geometry& geometry, GrColor color, const SkMatrix& viewMatrix,
224 Geometry& args = fGeoData[i];
290 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
293 AADistanceFieldPathBatch(const Geometry& geometry, GrColor color, const SkMatrix& viewMatrix,
550 SkSTArray<1, Geometry, true> fGeoData;
600 AADistanceFieldPathBatch::Geometry geometry(stroke.getStrokeRec());
670 AADistanceFieldPathBatch::Geometry geometry(GrTest::TestStrokeRec(random));
H A DGrAAConvexPathRenderer.cpp746 struct Geometry { struct in class:AAConvexPathBatch
752 static GrBatch* Create(const Geometry& geometry) {
819 Geometry& args = fGeoData[i];
888 Geometry& args = fGeoData[i];
950 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
953 AAConvexPathBatch(const Geometry& geometry) {
1005 SkSTArray<1, Geometry, true> fGeoData;
1019 AAConvexPathBatch::Geometry geometry;
1036 AAConvexPathBatch::Geometry geometry;
H A DGrAAHairLinePathRenderer.cpp679 struct Geometry { struct in class:AAHairlineBatch
687 static GrBatch* Create(const Geometry& geometry) {
719 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
726 AAHairlineBatch(const Geometry& geometry) {
788 SkSTArray<1, Geometry, true> fGeoData;
848 const Geometry& args = fGeoData[i];
983 AAHairlineBatch::Geometry geometry;
H A DGrOvalRenderer.cpp650 struct Geometry { struct in class:CircleBatch
659 static GrBatch* Create(const Geometry& geometry) { return SkNEW_ARGS(CircleBatch, (geometry)); }
722 Geometry& geom = fGeoData[i];
756 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
759 CircleBatch(const Geometry& geometry) {
802 SkSTArray<1, Geometry, true> fGeoData;
843 CircleBatch::Geometry geometry;
871 struct Geometry { struct in class:EllipseBatch
882 static GrBatch* Create(const Geometry& geometry) {
946 Geometry
1142 struct Geometry { struct in class:DIEllipseBatch
1504 struct Geometry { struct in class:RRectCircleRendererBatch
1684 struct Geometry { struct in class:RRectEllipseRendererBatch
[all...]
H A DGrAtlasTextContext.cpp1434 struct Geometry { struct in class:BitmapTextBatch
1577 Geometry& args = fGeoData[i];
1731 // The minimum number of Geometry we will try to allocate.
1734 // Total number of Geometry this Batch owns
1736 SkAutoSTMalloc<kMinAllocated, Geometry>* geoData() { return &fGeoData; }
1741 Geometry& geometry() { return fGeoData[0]; }
1743 const Geometry& geo = fGeoData[0];
1939 SkAutoSTMalloc<kMinAllocated, Geometry>* otherGeoData = that->geoData();
1950 otherInstanceCount * sizeof(Geometry));
2028 SkAutoSTMalloc<kMinAllocated, Geometry> fGeoDat
[all...]
H A DGrContext.cpp400 struct Geometry { struct in class:StrokeRectBatch
407 static GrBatch* Create(const Geometry& geometry, bool snapToPixelCenters) {
460 Geometry& args = fGeoData[0];
501 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
504 StrokeRectBatch(const Geometry& geometry, bool snapToPixelCenters) {
573 SkSTArray<1, Geometry, true> fGeoData;
663 StrokeRectBatch::Geometry geometry;
736 struct Geometry { struct in class:DrawVerticesBatch
744 static GrBatch* Create(const Geometry& geometry, GrPrimitiveType primitiveType,
837 const Geometry
[all...]
/external/skia/gm/
H A Dconvexpolyeffect.cpp32 struct Geometry : public GrTestBatch::Geometry { struct in class:skiagm::ConvexPolyTestBatch
38 static GrBatch* Create(const GrGeometryProcessor* gp, const Geometry& geo) {
43 ConvexPolyTestBatch(const GrGeometryProcessor* gp, const Geometry& geo)
48 Geometry* geoData(int index) override {
53 const Geometry* geoData(int index) const override {
75 Geometry fGeometry;
191 ConvexPolyTestBatch::Geometry geometry;
240 ConvexPolyTestBatch::Geometry geometry;
H A Dbeziereffects.cpp34 struct Geometry : public GrTestBatch::Geometry { struct in class:skiagm::BezierCubicOrConicTestBatch
40 static GrBatch* Create(const GrGeometryProcessor* gp, const Geometry& geo,
46 BezierCubicOrConicTestBatch(const GrGeometryProcessor* gp, const Geometry& geo,
62 Geometry* geoData(int index) override {
67 const Geometry* geoData(int index) const override {
92 Geometry fGeometry;
225 BezierCubicOrConicTestBatch::Geometry geometry;
370 BezierCubicOrConicTestBatch::Geometry geometry;
433 struct Geometry struct in class:skiagm::BezierQuadTestBatch
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DGeometry.java53 * <code>Geometry</code> defines a leaf node of the scene graph. The leaf node
60 public class Geometry extends Spatial { class in inherits:Spatial
66 private static final Logger logger = Logger.getLogger(Geometry.class.getName());
95 public Geometry() { method in class:Geometry
105 public Geometry(String name) { method in class:Geometry
117 public Geometry(String name, Mesh mesh) { method in class:Geometry
129 * @see Geometry#setIgnoreTransform(boolean)
275 throw new NullPointerException("Geometry: " + getName() + " has null mesh");
383 * Recomputes the matrix returned by {@link Geometry#getWorldMatrix() }.
404 * A {@link Matrix4f matrix} that transforms the {@link Geometry#getMes
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DShader.java90 Geometry; enum constant in enum:Shader.ShaderType
/external/skia/samplecode/
H A DSampleClipDrawMatch.cpp22 enum Geometry { enum
246 Geometry fGeom;
/external/deqp/modules/gles3/performance/
H A Des3pDepthTests.cpp90 typedef vector<float> Geometry; typedef in namespace:deqp::gles3::Performance::__anon3536
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/effects/
H A DGrDashingEffect.cpp248 struct Geometry { struct in class:DashBatch
260 static GrBatch* Create(const Geometry& geometry, SkPaint::Cap cap, DashAAMode aaMode,
351 Geometry& args = fGeoData[i];
548 Geometry& geom = fGeoData[i];
605 SkSTArray<1, Geometry, true>* geoData() { return &fGeoData; }
608 DashBatch(const Geometry& geometry, SkPaint::Cap cap, DashAAMode aaMode, bool fullDash) {
679 SkSTArray<1, Geometry, true> fGeoData;
689 DashBatch::Geometry geometry;
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/include/
H A Dlcms2.h992 cmsUInt32Number Geometry; // 0=unknown, 1=45/0, 0/45 2=0d, d/0 member in struct:__anon13201
/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 4288 milliseconds