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

1 2

  /external/swiftshader/src/Renderer/
Clipper.cpp 17 #include "Polygon.hpp"
43 bool Clipper::clip(Polygon &polygon, int clipFlagsOr, const DrawCall &draw)
47 if(clipFlagsOr & CLIP_NEAR) clipNear(polygon);
48 if(polygon.n >= 3) {
49 if(clipFlagsOr & CLIP_FAR) clipFar(polygon);
50 if(polygon.n >= 3) {
51 if(clipFlagsOr & CLIP_LEFT) clipLeft(polygon);
52 if(polygon.n >= 3) {
53 if(clipFlagsOr & CLIP_RIGHT) clipRight(polygon);
    [all...]
Clipper.hpp 23 struct Polygon;
60 bool clip(Polygon &polygon, int clipFlagsOr, const DrawCall &draw);
63 void clipNear(Polygon &polygon);
64 void clipFar(Polygon &polygon);
65 void clipLeft(Polygon &polygon);
66 void clipRight(Polygon &polygon)
    [all...]
SetupProcessor.hpp 28 struct Polygon;
86 typedef bool (*RoutinePointer)(Primitive *primitive, const Triangle *triangle, const Polygon *polygon, const DrawData *draw);
Renderer.cpp 20 #include "Polygon.hpp"
    [all...]
  /external/clang/test/Sema/
flexible-array-init.c 43 struct polygon { struct
47 struct polygon poly = {
  /frameworks/base/libs/hwui/
SpotShadow.h 57 static void reverse(Vector2* polygon, int len);
65 static bool testConvex(const Vector2* polygon, int polygonLength, const char* name);
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
145 * @param pointsLength the number of vertices of the polygon.
156 * @param pointsLength the number of vertices of the polygon.
158 * @return the number of points in the polygon 0 if no intersection
231 * @param polyLength The number of vertices of the polygon.
273 * Test whether a point is inside the polygon.
276 * @param poly the polygon
    [all...]
TessellationCache.cpp 190 static void reverseVertexArray(Vertex* polygon, int len) {
193 Vertex tmp = polygon[i];
195 polygon[i] = polygon[k];
196 polygon[k] = tmp;
204 // tessellate caster outline into a 2d polygon
  /external/python/cpython2/Lib/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/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/mesa/main/
attrib.c 47 #include "polygon.h"
328 attr->CullFace = ctx->Polygon.CullFlag;
363 attr->PolygonOffsetPoint = ctx->Polygon.OffsetPoint;
364 attr->PolygonOffsetLine = ctx->Polygon.OffsetLine;
365 attr->PolygonOffsetFill = ctx->Polygon.OffsetFill;
366 attr->PolygonSmooth = ctx->Polygon.SmoothFlag;
367 attr->PolygonStipple = ctx->Polygon.StippleFlag;
471 (void*)&ctx->Polygon))
604 TEST_AND_UPDATE(ctx->Polygon.CullFlag, enable->CullFace, GL_CULL_FACE);
664 TEST_AND_UPDATE(ctx->Polygon.OffsetPoint, enable->PolygonOffsetPoint
1267 const struct gl_polygon_attrib *polygon; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/indices/
u_unfilled_gen.py 38 'polygon',
177 def polygon(intype, outtype): function
178 preamble(intype, outtype, prim='polygon')
225 polygon(intype, outtype)
u_indices_gen.py 45 'polygon',
271 def polygon(intype, outtype, inpv, outpv, pr): function
272 preamble(intype, outtype, inpv, outpv, pr, prim='polygon')
438 polygon(intype, outtype, inpv, outpv, pr)
  /prebuilts/tools/common/m2/repository/com/cocoahero/android/geojson/1.0.1/
geojson-1.0.1.jar 
  /external/mesa3d/src/mapi/glapi/gen/
gl_genexec.py 99 #include "main/polygon.h"
  /external/swiftshader/src/Shader/
SetupRoutine.cpp 19 #include "Renderer/Polygon.hpp"
44 Pointer<Byte> polygon(function.Arg<2>());
141 Int n = *Pointer<Int>(polygon + OFFSET(Polygon,n));
142 Int m = *Pointer<Int>(polygon + OFFSET(Polygon,i));
146 Pointer<Byte> V = polygon + OFFSET(Polygon,P) + m * sizeof(void*) * 16;
  /external/ImageMagick/coders/
wmf.c 925 DrawSetClipRule(WmfDrawingWand,EvenOddRule); /* Default for WMF is ALTERNATE polygon fill mode */
1212 polygon, local
    [all...]
  /external/mesa3d/src/mesa/
Makefile.sources 163 main/polygon.c \
164 main/polygon.h \
  /external/python/cpython3/Lib/
turtle.py 495 """Create an invisible polygon item on canvas self.cv)
742 """Return 'line' or 'polygon' or 'image' depending on
    [all...]
  /external/mesa3d/docs/specs/
MESA_texture_array.spec 46 a polygon. Several examples include:
    [all...]

Completed in 349 milliseconds

1 2