Home
last modified time | relevance | path

Searched refs:ccw (Results 1 – 20 of 20) sorted by relevance

/external/chromium_org/third_party/skia/tests/
DPathOpsAngleIdeas.cpp38 bool ccw; member
249 result->ccw = refCCW; in orderTRange()
312 bestCCW, tRange.ccw, lowerRange->tMin, upperRange->tMin, r, in bruteMinT()
315 if (bestCCW >= 0 && bestCCW != (int) tRange.ccw) { in bruteMinT()
323 bestCCW = tRange.ccw; in bruteMinT()
347 bestCCW, tRange.ccw, lowerRange->tMin, upperRange->tMin, r, in bruteMinT()
350 if (bestCCW != (int) tRange.ccw || upperRange->tMin < tRange.tMin) { in bruteMinT()
351 bestCCW = tRange.ccw; in bruteMinT()
390 bool ccw) { in bruteForce() argument
398 REPORTER_ASSERT(reporter, angle > 3.998 || ccw == upperRange.ccw); in bruteForce()
[all …]
/external/skia/tests/
DPathOpsAngleIdeas.cpp38 bool ccw; member
249 result->ccw = refCCW; in orderTRange()
312 bestCCW, tRange.ccw, lowerRange->tMin, upperRange->tMin, r, in bruteMinT()
315 if (bestCCW >= 0 && bestCCW != (int) tRange.ccw) { in bruteMinT()
323 bestCCW = tRange.ccw; in bruteMinT()
347 bestCCW, tRange.ccw, lowerRange->tMin, upperRange->tMin, r, in bruteMinT()
350 if (bestCCW != (int) tRange.ccw || upperRange->tMin < tRange.tMin) { in bruteMinT()
351 bestCCW = tRange.ccw; in bruteMinT()
390 bool ccw) { in bruteForce() argument
398 REPORTER_ASSERT(reporter, angle > 3.998 || ccw == upperRange.ccw); in bruteForce()
[all …]
/external/mesa3d/src/gallium/drivers/svga/
Dsvga_state_rss.c150 int cw, ccw; in emit_rss() local
157 ccw = 0; in emit_rss()
161 ccw = 1; in emit_rss()
175 EMIT_RS( svga, curr->stencil[ccw].func, CCWSTENCILFUNC, fail ); in emit_rss()
176 EMIT_RS( svga, curr->stencil[ccw].fail, CCWSTENCILFAIL, fail ); in emit_rss()
177 EMIT_RS( svga, curr->stencil[ccw].zfail, CCWSTENCILZFAIL, fail ); in emit_rss()
178 EMIT_RS( svga, curr->stencil[ccw].pass, CCWSTENCILPASS, fail ); in emit_rss()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
Dsvga_state_rss.c150 int cw, ccw; in emit_rss() local
157 ccw = 0; in emit_rss()
161 ccw = 1; in emit_rss()
175 EMIT_RS( svga, curr->stencil[ccw].func, CCWSTENCILFUNC, fail ); in emit_rss()
176 EMIT_RS( svga, curr->stencil[ccw].fail, CCWSTENCILFAIL, fail ); in emit_rss()
177 EMIT_RS( svga, curr->stencil[ccw].zfail, CCWSTENCILZFAIL, fail ); in emit_rss()
178 EMIT_RS( svga, curr->stencil[ccw].pass, CCWSTENCILPASS, fail ); in emit_rss()
/external/skia/src/core/
DSkStrokerPriv.cpp170 bool ccw; in MiterJoiner() local
180 ccw = !is_clockwise(before, after); in MiterJoiner()
181 if (ccw) in MiterJoiner()
220 if (ccw) in MiterJoiner()
/external/chromium_org/third_party/skia/src/core/
DSkStrokerPriv.cpp170 bool ccw; in MiterJoiner() local
180 ccw = !is_clockwise(before, after); in MiterJoiner()
181 if (ccw) in MiterJoiner()
220 if (ccw) in MiterJoiner()
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pipe_cull.c77 unsigned ccw = (header->det < 0); in cull_tri() local
78 unsigned face = ((ccw == cull_stage(stage)->front_ccw) ? in cull_tri()
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
Ddraw_pipe_cull.c77 unsigned ccw = (header->det < 0); in cull_tri() local
78 unsigned face = ((ccw == cull_stage(stage)->front_ccw) ? in cull_tri()
/external/skia/experimental/Intersection/
DLineIntersection.cpp330 static bool ccw(const _Point& A, const _Point& B, const _Point& C) { in ccw() function
336 return ccw(a[0], b[0], b[1]) != ccw(a[1], b[0], b[1]) in testIntersect()
337 && ccw(a[0], a[1], b[0]) != ccw(a[0], a[1], b[1]); in testIntersect()
/external/chromium_org/third_party/skia/experimental/Intersection/
DLineIntersection.cpp330 static bool ccw(const _Point& A, const _Point& B, const _Point& C) { in ccw() function
336 return ccw(a[0], b[0], b[1]) != ccw(a[1], b[0], b[1]) in testIntersect()
337 && ccw(a[0], a[1], b[0]) != ccw(a[0], a[1], b[1]); in testIntersect()
/external/skia/src/pathops/
DSkDLineIntersection.cpp390 static bool ccw(const SkDPoint& A, const SkDPoint& B, const SkDPoint& C) { in ccw() function
396 return ccw(a[0], b[0], b[1]) != ccw(a[1], b[0], b[1]) in Test()
397 && ccw(a[0], a[1], b[0]) != ccw(a[0], a[1], b[1]); in Test()
/external/chromium_org/third_party/skia/src/pathops/
DSkDLineIntersection.cpp390 static bool ccw(const SkDPoint& A, const SkDPoint& B, const SkDPoint& C) { in ccw() function
396 return ccw(a[0], b[0], b[1]) != ccw(a[1], b[0], b[1]) in Test()
397 && ccw(a[0], a[1], b[0]) != ccw(a[0], a[1], b[1]); in Test()
/external/chromium_org/third_party/skia/experimental/StrokePathRenderer/
DGrStrokePathRenderer.cpp161 bool ccw = !is_clockwise(v0, v1); in onDrawPath() local
162 int offset = ccw ? 1 : 0; in onDrawPath()
166 const SkPoint* pt1 = ccw ? &l2a : &l1a; in onDrawPath()
/external/skia/experimental/StrokePathRenderer/
DGrStrokePathRenderer.cpp161 bool ccw = !is_clockwise(v0, v1); in onDrawPath() local
162 int offset = ccw ? 1 : 0; in onDrawPath()
166 const SkPoint* pt1 = ccw ? &l2a : &l1a; in onDrawPath()
/external/pdfium/core/src/fxge/agg/agg23/
Dagg_math_stroke.h57 bool ccw = da > 0 && da < FX_PI; in stroke_calc_arc() local
63 if(!ccw) { in stroke_calc_arc()
/external/deqp/doc/testspecs/GLES31/
Dfunctional.tessellation.txt32 + Winding modes (cw, ccw)
87 ("cw" or "ccw") input layout qualifier in the TES. Back face culling is enabled.
/external/jpeg/
Dusage.doc439 -rotate 270 Rotate image 270 degrees clockwise (or 90 ccw).
/external/qemu/distrib/jpeg-6b/
Dusage.doc439 -rotate 270 Rotate image 270 degrees clockwise (or 90 ccw).
/external/chromium_org/third_party/skia/src/animator/
DSkAnimateSchema.xsd562 <!-- @pattern ccw The path is traveled counterclockwise. -->
563 <xs:pattern value="ccw"/>
/external/skia/src/animator/
DSkAnimateSchema.xsd562 <!-- @pattern ccw The path is traveled counterclockwise. -->
563 <xs:pattern value="ccw"/>