Searched refs:Vertex (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/libs/hwui/ |
D | Vertex.h | 30 struct Vertex { struct 42 static inline void set(Vertex* vertex, float x, float y) { in set() argument 47 static inline void set(Vertex* vertex, Vector2 val) { set(vertex, val.x, val.y); } in set() argument 49 static inline void copyWithOffset(Vertex* vertex, const Vertex& src, float x, float y) { in copyWithOffset() argument 55 REQUIRE_COMPATIBLE_LAYOUT(Vertex);
|
D | Rect.h | 199 left = floorf(left + Vertex::GeometryFudgeFactor()); in snapGeometryToPixelBoundaries() 200 top = floorf(top + Vertex::GeometryFudgeFactor()); in snapGeometryToPixelBoundaries() 201 right = ceilf(right - Vertex::GeometryFudgeFactor()); in snapGeometryToPixelBoundaries() 202 bottom = ceilf(bottom - Vertex::GeometryFudgeFactor()); in snapGeometryToPixelBoundaries() 208 left = floorf(left + 0.5f - Vertex::GeometryFudgeFactor()); in snapGeometryToPixelBoundaries() 209 top = floorf(top + 0.5f - Vertex::GeometryFudgeFactor()); in snapGeometryToPixelBoundaries() 210 right = floorf(right + 0.5f + Vertex::GeometryFudgeFactor()); in snapGeometryToPixelBoundaries() 211 bottom = floorf(bottom + 0.5f + Vertex::GeometryFudgeFactor()); in snapGeometryToPixelBoundaries()
|
/frameworks/libs/systemui/toruslib/torus-core/src/main/java/com/google/android/torus/core/geometry/ |
D | Vertex.kt | 24 class Vertex(vararg input: Number) { class
|
/frameworks/rs/script_api/include/ |
D | rs_graphics.rsh | 151 RS_PRIMITIVE_POINT = 0, // Vertex data will be rendered as a series of points 152 RS_PRIMITIVE_LINE = 1, // Vertex pairs will be rendered as lines 153 RS_PRIMITIVE_LINE_STRIP = 2, // Vertex data will be rendered as a connected line strip
|