HomeSort by relevance Sort by last modified time
    Searched refs:polygon (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
polygon.h 32 struct polygon;
37 struct polygon *polygon_create(int size);
38 struct polygon *polygon_create_from_data(float *data, int size);
39 void polygon_destroy(struct polygon *poly);
41 void polygon_resize(struct polygon *poly, int new_size);
42 int polygon_size(struct polygon *poly);
44 int polygon_vertex_count(struct polygon *poly);
45 float * polygon_data(struct polygon *poly);
47 void polygon_vertex_append(struct polygon *p,
49 void polygon_append_polygon(struct polygon *dst
    [all...]
polygon.c 27 #include "polygon.h"
52 struct polygon struct
70 static void polygon_print(struct polygon *poly)
74 debug_printf("Polygon %p, size = %d\n", poly, poly->num_verts);
84 struct polygon * polygon_create(int size)
86 struct polygon *poly = (struct polygon*)malloc(sizeof(struct polygon));
97 struct polygon * polygon_create_from_data(float *data, int size)
99 struct polygon *poly = polygon_create(size)
    [all...]
bezier.h 30 struct polygon;
56 struct polygon *bezier_to_polygon(struct bezier *bez);
58 struct polygon *poly);
arc.h 32 struct polygon;
63 struct polygon *poly,
path.h 33 struct polygon;
  /external/mesa3d/src/gallium/state_trackers/vega/
polygon.h 32 struct polygon;
37 struct polygon *polygon_create(int size);
38 struct polygon *polygon_create_from_data(float *data, int size);
39 void polygon_destroy(struct polygon *poly);
41 void polygon_resize(struct polygon *poly, int new_size);
42 int polygon_size(struct polygon *poly);
44 int polygon_vertex_count(struct polygon *poly);
45 float * polygon_data(struct polygon *poly);
47 void polygon_vertex_append(struct polygon *p,
49 void polygon_append_polygon(struct polygon *dst
    [all...]
polygon.c 27 #include "polygon.h"
52 struct polygon struct
70 static void polygon_print(struct polygon *poly)
74 debug_printf("Polygon %p, size = %d\n", poly, poly->num_verts);
84 struct polygon * polygon_create(int size)
86 struct polygon *poly = (struct polygon*)malloc(sizeof(struct polygon));
97 struct polygon * polygon_create_from_data(float *data, int size)
99 struct polygon *poly = polygon_create(size)
    [all...]
bezier.h 30 struct polygon;
56 struct polygon *bezier_to_polygon(struct bezier *bez);
58 struct polygon *poly);
arc.h 32 struct polygon;
63 struct polygon *poly,
path.h 33 struct polygon;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
PolygonShape.cpp 140 static inline PassOwnPtr<FloatPolygon> computeShapePaddingBounds(const FloatPolygon& polygon, float padding, WindRule fillRule)
145 for (unsigned i = 0; i < polygon.numberOfEdges(); ++i) {
146 const FloatPolygonEdge& thisEdge = polygon.edgeAt(i);
161 static inline PassOwnPtr<FloatPolygon> computeShapeMarginBounds(const FloatPolygon& polygon, float margin, WindRule fillRule)
166 for (unsigned i = 0; i < polygon.numberOfEdges(); ++i) {
167 const FloatPolygonEdge& thisEdge = polygon.edgeAt(i);
211 ASSERT(intersection.edge && intersection.edge->polygon());
212 const FloatPolygon& polygon = *(intersection.edge->polygon()); local
217 prevVertex = polygon.vertexAt(thisEdge.previousEdge().vertexIndex1())
368 const FloatPolygon& polygon = shapeMarginBounds(); local
396 const FloatPolygon& polygon = shapePaddingBounds(); local
452 const FloatPolygon& polygon = shapePaddingBounds(); local
    [all...]
PolygonShape.h 62 OffsetPolygonEdge(const FloatPolygon& polygon, float minLogicalIntervalTop, const FloatSize& offset)
63 : m_vertex1(FloatPoint(polygon.boundingBox().x(), minLogicalIntervalTop) + offset)
64 , m_vertex2(FloatPoint(polygon.boundingBox().maxX(), minLogicalIntervalTop) + offset)
Shape.cpp 170 const BasicShapePolygon* polygon = static_cast<const BasicShapePolygon*>(basicShape); local
171 const Vector<Length>& values = polygon->values();
181 shape = createPolygonShape(vertices.release(), polygon->windRule());
  /external/clang/test/Sema/
flexible-array-init.c 43 struct polygon { struct
47 struct polygon poly = {
  /external/chromium/chrome/browser/ui/views/
dropdown_bar_host.cc 201 // |w| is used to make it easier to create the part of the polygon that curves
210 // This polygon array represents the outline of the background image for the
213 const Path::Point polygon[] = { local
219 // Find the largest x and y value in the polygon.
221 for (size_t i = 0; i < arraysize(polygon); i++) {
222 max_x = std::max(max_x, static_cast<int>(polygon[i].x));
223 max_y = std::max(max_y, static_cast<int>(polygon[i].y));
226 // We then create the polygon and use SetWindowRgn to force the window to draw
228 Path path(polygon, arraysize(polygon));
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
dropdown_bar_host.cc 235 // |w| is used to make it easier to create the part of the polygon that curves
244 // This polygon array represents the outline of the background image for the
247 const Path::Point polygon[] = { local
253 // Find the largest x and y value in the polygon.
255 for (size_t i = 0; i < arraysize(polygon); i++) {
256 max_x = std::max(max_x, static_cast<int>(polygon[i].x));
257 max_y = std::max(max_y, static_cast<int>(polygon[i].y));
260 // We then create the polygon and use SetWindowRgn to force the window to draw
262 Path path(polygon, arraysize(polygon));
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
QuickDraw_Graphics_Suite.py 160 class polygon(aetools.ComponentItem): class in inherits:aetools.ComponentItem
161 """polygon - A polygon """
164 """point list - the list of points that define the polygon """
168 polygons = polygon
286 polygon._superclassnames = []
287 polygon._privpropdict = {
290 polygon._privelemdict = {
365 'cpgn' : polygon,
  /external/chromium_org/third_party/WebKit/Source/core/css/
BasicShapeFunctions.cpp 86 const BasicShapePolygon* polygon = static_cast<const BasicShapePolygon*>(basicShape); local
89 polygonValue->setWindRule(polygon->windRule());
90 const Vector<Length>& values = polygon->values();
174 RefPtr<BasicShapePolygon> polygon = BasicShapePolygon::create(); local
176 polygon->setWindRule(polygonValue->windRule());
179 polygon->appendPoint(convertToLength(state, values.at(i).get()), convertToLength(state, values.at(i + 1).get()));
181 basicShape = polygon.release();
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatPolygon.cpp 64 static unsigned findNextEdgeVertexIndex(const FloatPolygon& polygon, unsigned vertexIndex1, bool clockwise)
66 unsigned nVertices = polygon.numberOfVertices();
69 while (vertexIndex2 && areCoincidentPoints(polygon.vertexAt(vertexIndex1), polygon.vertexAt(vertexIndex2)))
74 if (!areCollinearPoints(polygon.vertexAt(vertexIndex1), polygon.vertexAt(vertexIndex2), polygon.vertexAt(vertexIndex3)))
FloatPolygon.h 126 const FloatPolygon* polygon() const { return m_polygon; } function in class:WebCore::FloatPolygonEdge
132 // Edge vertex index1 is less than index2, except the last edge, where index2 is 0. When a polygon edge
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/
dot.stg 72 node [fontsize=11, shape = <if(useBox)>polygon,sides=4,peripheries=2<else>doublecircle, fixedsize=true, width=.6<endif>]; <name>
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/indices/
u_unfilled_gen.py 38 'polygon')
168 def polygon(intype, outtype): function
169 preamble(intype, outtype, prim='polygon')
200 polygon(intype, outtype)
  /external/mesa3d/src/gallium/auxiliary/indices/
u_unfilled_gen.py 38 'polygon')
168 def polygon(intype, outtype): function
169 preamble(intype, outtype, prim='polygon')
200 polygon(intype, outtype)
  /external/chromium/chrome/browser/first_run/
try_chrome_dialog_view.cc 233 static const POINT polygon[] = { local
238 HRGN region = ::CreatePolygonRgn(polygon, arraysize(polygon), WINDING);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
attrib.c 49 #include "polygon.h"
269 attr->CullFace = ctx->Polygon.CullFlag;
306 attr->PolygonOffsetPoint = ctx->Polygon.OffsetPoint;
307 attr->PolygonOffsetLine = ctx->Polygon.OffsetLine;
308 attr->PolygonOffsetFill = ctx->Polygon.OffsetFill;
309 attr->PolygonSmooth = ctx->Polygon.SmoothFlag;
310 attr->PolygonStipple = ctx->Polygon.StippleFlag;
395 memcpy( attr, &ctx->Polygon, sizeof(struct gl_polygon_attrib) );
521 TEST_AND_UPDATE(ctx->Polygon.CullFlag, enable->CullFace, GL_CULL_FACE);
589 TEST_AND_UPDATE(ctx->Polygon.OffsetPoint, enable->PolygonOffsetPoint
1175 const struct gl_polygon_attrib *polygon; local
    [all...]

Completed in 946 milliseconds

1 2 3