HomeSort by relevance Sort by last modified time
    Searched full:ccw (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /cts/tests/tests/graphics/src/android/graphics/cts/
Path_DirectionTest.java 27 assertEquals(Direction.CCW, Direction.valueOf("CCW"));
35 Direction.CCW};
PathDashPathEffectTest.java 82 p.addRect(new RectF(-SQUARE, -SQUARE, SQUARE, SQUARE), Direction.CCW);
  /external/skia/tests/
PathOpsAngleIdeas.cpp 38 bool ccw; member in struct:TRange
159 1 if no overlap ccw
249 result->ccw = refCCW;
311 SkDebugf("u bestCCW=%d ccw=%d bestMin=%1.9g:%1.9g r=%1.9g tMin=%1.9g\n",
312 bestCCW, tRange.ccw, lowerRange->tMin, upperRange->tMin, r,
315 if (bestCCW >= 0 && bestCCW != (int) tRange.ccw) {
323 bestCCW = tRange.ccw;
346 SkDebugf("l bestCCW=%d ccw=%d bestMin=%1.9g:%1.9g r=%1.9g tMin=%1.9g\n",
347 bestCCW, tRange.ccw, lowerRange->tMin, upperRange->tMin, r,
350 if (bestCCW != (int) tRange.ccw || upperRange->tMin < tRange.tMin)
    [all...]
PathOpsSimplifyRectThreadedTest.cpp 15 // cw or ccw (1 bit)
31 SkPath::Direction cCW = state.fC >> 2 ? SkPath::kCCW_Direction : SkPath::kCW_Direction;
130 cCW);
133 " SkPath::kC%sW_Direction);\n", l, t, r, b, cCW ? "C" : "");
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathFillTypes.java 46 mPath.addCircle(40, 40, 45, Path.Direction.CCW);
47 mPath.addCircle(80, 80, 45, Path.Direction.CCW);
Clipping.java 83 mPath.addCircle(50, 50, 50, Path.Direction.CCW);
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_rss.c 150 int cw, ccw; local
157 ccw = 0;
161 ccw = 1;
175 EMIT_RS( svga, curr->stencil[ccw].func, CCWSTENCILFUNC, fail );
176 EMIT_RS( svga, curr->stencil[ccw].fail, CCWSTENCILFAIL, fail );
177 EMIT_RS( svga, curr->stencil[ccw].zfail, CCWSTENCILZFAIL, fail );
178 EMIT_RS( svga, curr->stencil[ccw].pass, CCWSTENCILPASS, fail );
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_cull.c 77 unsigned ccw = (header->det < 0); local
78 unsigned face = ((ccw == cull_stage(stage)->front_ccw) ?
  /external/skia/src/core/
SkStrokerPriv.cpp 161 bool ccw; local
171 ccw = !is_clockwise(before, after);
172 if (ccw)
211 if (ccw)
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
SmallCircleActivity.java 56 mPath.addCircle(SIZE * 0.5f, SIZE * 0.5f, SIZE * 0.225f, Path.Direction.CCW);
  /external/skia/src/pathops/
SkPathOpsWinding.cpp 271 bool ccw = ccw_dxdy(hit->fSlope, dir); local
272 SkDebugf("%s [%d] valid=%d operand=%d span=%d ccw=%d ", __FUNCTION__, index,
273 hit->fValid, operand, span ? span->debugID() : -1, ccw);
289 bool ccw = ccw_dxdy(hit->fSlope, dir); local
314 int windValue = ccw ? -span->windValue() : span->windValue();
315 int oppValue = ccw ? -span->oppValue() : span->oppValue();
346 hitSegment->contour()->setCcw(ccw);
SkLineParameters.h 50 if (dx() < 0) { // only worry about y bias when breaking cw/ccw tie
100 if (dx() < 0) { // only worry about y bias when breaking cw/ccw tie
  /development/perftests/panorama/feature_mos/src/mosaic/
Delaunay.cpp 28 #define valid(l) ccw(orig(basel), dest(l), dest(basel))
114 if (ccw(s1, s3, s2)) {
121 if (ccw(s1, s2, s3)) {
493 int CDelaunay::ccw(SitePointer a, SitePointer b, SitePointer c) function in class:CDelaunay
522 while (ccw(orig(ldi), dest(ldi), orig(rdi))) {
525 if (ccw(dest(rdi), orig(rdi), orig(ldi))) {
Delaunay.h 98 int ccw(SitePointer a, SitePointer b, SitePointer c);
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Delaunay.cpp 28 #define valid(l) ccw(orig(basel), dest(l), dest(basel))
114 if (ccw(s1, s3, s2)) {
121 if (ccw(s1, s2, s3)) {
493 int CDelaunay::ccw(SitePointer a, SitePointer b, SitePointer c) function in class:CDelaunay
522 while (ccw(orig(ldi), dest(ldi), orig(rdi))) {
525 if (ccw(dest(rdi), orig(rdi), orig(ldi))) {
Delaunay.h 98 int ccw(SitePointer a, SitePointer b, SitePointer c);
  /frameworks/base/libs/hwui/
SpotShadow.h 49 static bool ccw(float ax, float ay, float bx, float by, float cx, float cy);
  /hardware/bsp/intel/peripheral/libupm/examples/java/
GroveMDSample.java 50 // counter clockwise (CCW)
  /hardware/bsp/intel/peripheral/libupm/src/rotaryencoder/
rotaryencoder.cxx 91 This->m_position--; // CCW
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterColorBorder.java 78 r, r, Path.Direction.CCW);
  /external/skia/gm/
addarc.cpp 169 SkScalar end, bool ccw) {
171 SkScalar sweep = ccw ? end - start : start - end;
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
RoundRectShape.java 121 mPath.addRoundRect(mInnerRect, mInnerRadii, Path.Direction.CCW);
123 mPath.addRect(mInnerRect, Path.Direction.CCW);
  /packages/apps/Gallery2/jni/filters/
geometry.c 72 //90 CCW (opposite of what's used in UI?)
98 // rotate == 1 is 90 degrees, 2 is 180, 3 is 270 (positive is CCW).
  /packages/apps/Camera2/jni/
jpegutil.cpp 68 // 90-degree CCW rotation
76 // 270-degree CCW rotation
84 // 180-degree CCW rotation
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineVertexUtil.hpp 69 * The triangles of each quad have different winding orders (CW/CCW).

Completed in 1168 milliseconds

1 2 3 4