HomeSort by relevance Sort by last modified time
    Searched refs:polygon (Results 1 - 25 of 38) 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...]
  /external/opencv3/modules/imgproc/src/
min_enclosing_triangle.cpp 24 // polygon", Journal of Algorithms, vol. 6, no. 3, pp. 359-375, Sep. 1985.
29 // of vertices in the convex polygon.
78 // Intersection of line and polygon
107 static void advanceBToRightChain(const std::vector<cv::Point2f> &polygon,
134 static void createConvexHull(cv::InputArray points, std::vector<cv::Point2f> &polygon);
141 static bool findGammaIntersectionPoints(const std::vector<cv::Point2f> &polygon, unsigned int nrOfPoints,
150 static void findMinEnclosingTriangle(const std::vector<cv::Point2f> &polygon,
153 static void findMinimumAreaEnclosingTriangle(const std::vector<cv::Point2f> &polygon,
156 static cv::Point2f findVertexCOnSideB(const std::vector<cv::Point2f> &polygon, unsigned int nrOfPoints,
164 const std::vector<cv::Point2f> &polygon, unsigned int nrOfPoints
323 std::vector<cv::Point2f> resultingTriangle, polygon; local
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
shape-handler.js 44 var polygon = scope.consumeToken(/^polygon/, input);
45 if (polygon && polygon[0]) {
46 return ['polygon'].concat(scope.consumeList([
51 ], polygon[1]));
74 if (left[0] == 'polygon' && left[1] == right[1]) {
76 'polygon(',
  /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 24 // When the polygon is about 90 vertices, the penumbra + umbra can reach 270 rays.
25 // That is consider pretty fine tessllated polygon so far.
38 // For the whole polygon, the sum of all the deltas b/t normals is 2 * M_PI,
69 * For each polygon's vertex, the light center will project it to the receiver
144 * @param pointsLength the number of vertices of the polygon.
157 * @param pointsLength the number of vertices of the polygon.
159 * @return the number of points in the polygon 0 if no intersection
235 * @param polyLength The number of vertices of the polygon.
278 * Test whether a point is inside the polygon.
281 * @param poly the polygon
    [all...]
TessellationCache.cpp 197 static void reverseVertexArray(Vertex* polygon, int len) {
200 Vertex tmp = polygon[i];
202 polygon[i] = polygon[k];
203 polygon[k] = tmp;
214 // tessellate caster outline into a 2d polygon
  /external/clang/test/Sema/
flexible-array-init.c 43 struct polygon { struct
47 struct polygon poly = {
  /prebuilts/gdb/darwin-x86/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,
  /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/chromium-trace/catapult/third_party/polymer/components/web-animations-js/
web-animations-next.min.js     [all...]
web-animations.min.js     [all...]

Completed in 905 milliseconds

1 2