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

1 2

  /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;
arc.c 31 #include "polygon.h"
464 struct polygon *poly = (struct polygon*)cb->user_data;
470 struct polygon *poly = (struct polygon*)cb->user_data;
656 struct polygon *poly,
bezier.c 30 #include "polygon.h"
92 struct polygon * bezier_to_polygon(struct bezier *bez)
94 struct polygon *poly = polygon_create(64);
101 struct polygon *poly)
700 struct polygon *poly = polygon_create(64);
path.c 30 #include "polygon.h"
216 struct polygon *p = ((struct polygon **) polyarray->array->data)[i];
289 static INLINE void close_polygon(struct polygon *current,
339 polygon_bounding_rect((((struct polygon**)polys->data)[0]), bounds);
345 struct polygon *p = (((struct polygon**)polys->data)[i]);
363 struct polygon *current = 0;
386 array = array_create(sizeof(struct polygon *));
406 /* add polygon */
    [all...]
stroker.c 36 #include "polygon.h"
81 struct polygon *curve_poly;
    [all...]
  /frameworks/base/libs/hwui/
SpotShadow.h 57 static void makeClockwise(Vector2* polygon, int len);
58 static void reverse(Vector2* polygon, int len);
65 static bool testConvex(const Vector2* polygon, int polygonLength,
ShadowTessellator.h 83 static bool isClockwise(const Vector2* polygon, int len);
SpotShadow.cpp 26 // When the polygon is about 90 vertices, the penumbra + umbra can reach 270 rays.
27 // That is consider pretty fine tessllated polygon so far.
40 // For the whole polygon, the sum of all the deltas b/t normals is 2 * M_PI,
71 * For each polygon's vertex, the light center will project it to the receiver
146 * @param pointsLength the number of vertices of the polygon.
159 * @param pointsLength the number of vertices of the polygon.
161 * @return the number of points in the polygon 0 if no intersection
237 * @param polyLength The number of vertices of the polygon.
280 * Test whether a point is inside the polygon.
283 * @param poly the polygon
    [all...]
TessellationCache.cpp 210 static void reverseVertexArray(Vertex* polygon, int len) {
213 Vertex tmp = polygon[i];
215 polygon[i] = polygon[k];
216 polygon[k] = tmp;
227 // tessellate caster outline into a 2d polygon
  /external/clang/test/Sema/
flexible-array-init.c 43 struct polygon { struct
47 struct polygon poly = {
  /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,
__init__.py 81 getbaseclasses(polygon)
276 'cpgn' : polygon,
  /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/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)
u_indices_gen.py 43 'polygon')
226 def polygon(intype, outtype, inpv, outpv): function
227 preamble(intype, outtype, inpv, outpv, prim='polygon')
267 polygon(intype, outtype, inpv, outpv)
  /external/mesa3d/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...]
  /external/mesa3d/src/mesa/
sources.mak 70 $(SRCDIR)main/polygon.c \
  /external/mesa3d/docs/
MESA_texture_array.spec 46 a polygon. Several examples include:
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/d3/
d3.min.js     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 519 """Create an invisible polygon item on canvas self.cv)
747 """Return 'line' or 'polygon' or 'image' depending on
828 attribute _type is one of "polygon", "image", "compound"
834 if type_ == "polygon":
851 Arguments: poly is a polygon, i. e. a tuple of number pairs.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 519 """Create an invisible polygon item on canvas self.cv)
747 """Return 'line' or 'polygon' or 'image' depending on
828 attribute _type is one of "polygon", "image", "compound"
834 if type_ == "polygon":
851 Arguments: poly is a polygon, i. e. a tuple of number pairs.
    [all...]

Completed in 395 milliseconds

1 2