HomeSort by relevance Sort by last modified time
    Searched refs:curr_y (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/skia/src/core/
SkScan_Path.cpp 62 static void backward_insert_edge_based_on_x(SkEdge* edge SkDECLAREPARAM(int, curr_y)) {
68 // add 1 to curr_y since we may have added new edges (built from curves)
70 SkASSERT(prev && prev->fFirstY <= curr_y + 1);
79 static void insert_new_edges(SkEdge* newEdge, int curr_y) {
80 SkASSERT(newEdge->fFirstY >= curr_y);
82 while (newEdge->fFirstY == curr_y) {
84 backward_insert_edge_based_on_x(newEdge SkPARAM(curr_y));
90 static void validate_edges_for_y(const SkEdge* edge, int curr_y) {
91 while (edge->fFirstY <= curr_y) {
102 #define validate_edges_for_y(edge, curr_y)
119 int curr_y = start_y; local
    [all...]
  /external/skia/src/core/
SkScan_Path.cpp 62 static void backward_insert_edge_based_on_x(SkEdge* edge SkDECLAREPARAM(int, curr_y)) {
68 // add 1 to curr_y since we may have added new edges (built from curves)
70 SkASSERT(prev && prev->fFirstY <= curr_y + 1);
79 static void insert_new_edges(SkEdge* newEdge, int curr_y) {
80 SkASSERT(newEdge->fFirstY >= curr_y);
82 while (newEdge->fFirstY == curr_y) {
84 backward_insert_edge_based_on_x(newEdge SkPARAM(curr_y));
90 static void validate_edges_for_y(const SkEdge* edge, int curr_y) {
91 while (edge->fFirstY <= curr_y) {
102 #define validate_edges_for_y(edge, curr_y)
119 int curr_y = start_y; local
    [all...]
  /external/chromium_org/ui/gfx/android/
scroller_unittest.cc 69 float curr_y = scroller.GetCurrY(); local
74 EXPECT_EQ(curr_y, scroller.GetCurrY());
141 float curr_y = scroller.GetCurrY(); local
146 EXPECT_EQ(curr_y, scroller.GetCurrY());
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_scene.c 425 scene->curr_y++;
427 if (scene->curr_y >= scene->tiles_y) {
438 scene->curr_x = scene->curr_y = -1;
444 * The lp_scene::curr_x and ::curr_y fields will be advanced.
458 scene->curr_y = 0;
465 bin = lp_scene_get_bin(scene, scene->curr_x, scene->curr_y);
lp_scene.h 168 int curr_x, curr_y; /**< for iterating over bins */ member in struct:lp_scene
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_scene.c 425 scene->curr_y++;
427 if (scene->curr_y >= scene->tiles_y) {
438 scene->curr_x = scene->curr_y = -1;
444 * The lp_scene::curr_x and ::curr_y fields will be advanced.
458 scene->curr_y = 0;
465 bin = lp_scene_get_bin(scene, scene->curr_x, scene->curr_y);
lp_scene.h 168 int curr_x, curr_y; /**< for iterating over bins */ member in struct:lp_scene
  /external/chromium_org/third_party/skia/experimental/Intersection/
SkAntiEdge.cpp 454 // add 1 to curr_y since we may have added new edges (built from curves)
465 static void insert_new_edges(SkAntiEdge* newEdge, SkFixed curr_y) {
466 int y = SkFixedFloor(curr_y);
    [all...]
  /external/skia/experimental/Intersection/
SkAntiEdge.cpp 454 // add 1 to curr_y since we may have added new edges (built from curves)
465 static void insert_new_edges(SkAntiEdge* newEdge, SkFixed curr_y) {
466 int y = SkFixedFloor(curr_y);
    [all...]

Completed in 538 milliseconds