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

  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aatritemp.h 182 const GLfloat dxdy = majDx / majDy; variable
183 const GLfloat xAdj = dxdy < 0.0F ? -dxdy : 0.0F;
189 GLfloat x = pMin[0] - (yMin - iy) * dxdy;
251 const GLfloat dxdy = majDx / majDy;
252 const GLfloat xAdj = dxdy > 0 ? dxdy : 0.0F;
258 GLfloat x = pMin[0] - (yMin - iy) * dxdy;
s_tritemp.h 119 GLfloat dxdy; /* dx/dy */ member in struct:__anon15299
254 eMaj.dxdy = eMaj.dx / eMaj.dy;
255 eMaj.fdxdy = SignedFloatToFixed(eMaj.dxdy);
258 eMaj.fsx = eMaj.fx0 + (GLfixed) (eMaj.adjy * eMaj.dxdy);
267 eTop.dxdy = eTop.dx / eTop.dy;
268 eTop.fdxdy = SignedFloatToFixed(eTop.dxdy);
271 eTop.fsx = eTop.fx0 + (GLfixed) (eTop.adjy * eTop.dxdy);
277 eBot.dxdy = eBot.dx / eBot.dy;
278 eBot.fdxdy = SignedFloatToFixed(eBot.dxdy);
281 eBot.fsx = eBot.fx0 + (GLfixed) (eBot.adjy * eBot.dxdy);
    [all...]
s_aaline.c 415 GLfloat dxdy = line->dx / line->dy; local
455 xLeft += dxdy;
456 xRight += dxdy;
  /external/mesa3d/src/mesa/swrast/
s_aatritemp.h 182 const GLfloat dxdy = majDx / majDy; variable
183 const GLfloat xAdj = dxdy < 0.0F ? -dxdy : 0.0F;
189 GLfloat x = pMin[0] - (yMin - iy) * dxdy;
251 const GLfloat dxdy = majDx / majDy;
252 const GLfloat xAdj = dxdy > 0 ? dxdy : 0.0F;
258 GLfloat x = pMin[0] - (yMin - iy) * dxdy;
s_tritemp.h 119 GLfloat dxdy; /* dx/dy */ member in struct:__anon25641
254 eMaj.dxdy = eMaj.dx / eMaj.dy;
255 eMaj.fdxdy = SignedFloatToFixed(eMaj.dxdy);
258 eMaj.fsx = eMaj.fx0 + (GLfixed) (eMaj.adjy * eMaj.dxdy);
267 eTop.dxdy = eTop.dx / eTop.dy;
268 eTop.fdxdy = SignedFloatToFixed(eTop.dxdy);
271 eTop.fsx = eTop.fx0 + (GLfixed) (eTop.adjy * eTop.dxdy);
277 eBot.dxdy = eBot.dx / eBot.dy;
278 eBot.fdxdy = SignedFloatToFixed(eBot.dxdy);
281 eBot.fsx = eBot.fx0 + (GLfixed) (eBot.adjy * eBot.dxdy);
    [all...]
s_aaline.c 415 GLfloat dxdy = line->dx / line->dy; local
455 xLeft += dxdy;
456 xRight += dxdy;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_setup_line.c 438 const float dxdy = dx / dy; local
464 float xintersect = fracf(v1[0][0]) + y1diff * dxdy;
482 float xintersect = fracf(v2[0][0]) + y2diff * dxdy;
502 x_offset_end = y_offset_end * dxdy;
506 x_offset = y_offset * dxdy;
513 x_offset = y_offset * dxdy;
518 x_offset_end = y_offset_end * dxdy;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_setup_line.c 438 const float dxdy = dx / dy; local
464 float xintersect = fracf(v1[0][0]) + y1diff * dxdy;
482 float xintersect = fracf(v2[0][0]) + y2diff * dxdy;
502 x_offset_end = y_offset_end * dxdy;
506 x_offset = y_offset * dxdy;
513 x_offset = y_offset * dxdy;
518 x_offset_end = y_offset_end * dxdy;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_setup.c 57 float dxdy; /**< dx/dy */ member in struct:edge
687 setup->emaj.dxdy = setup->emaj.dy ? setup->emaj.dx / setup->emaj.dy : .0f;
688 setup->emaj.sx = vmin_x + (setup->emaj.sy - vmin_y) * setup->emaj.dxdy;
692 setup->etop.dxdy = setup->etop.dy ? setup->etop.dx / setup->etop.dy : .0f;
693 setup->etop.sx = vmid_x + (setup->etop.sy - vmid_y) * setup->etop.dxdy;
697 setup->ebot.dxdy = setup->ebot.dy ? setup->ebot.dx / setup->ebot.dy : .0f;
698 setup->ebot.sx = vmin_x + (setup->ebot.sy - vmin_y) * setup->ebot.dxdy;
747 int left = (int)(eleft->sx + y * eleft->dxdy);
748 int right = (int)(eright->sx + y * eright->dxdy);
771 eleft->sx += lines * eleft->dxdy;
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_setup.c 57 float dxdy; /**< dx/dy */ member in struct:edge
687 setup->emaj.dxdy = setup->emaj.dy ? setup->emaj.dx / setup->emaj.dy : .0f;
688 setup->emaj.sx = vmin_x + (setup->emaj.sy - vmin_y) * setup->emaj.dxdy;
692 setup->etop.dxdy = setup->etop.dy ? setup->etop.dx / setup->etop.dy : .0f;
693 setup->etop.sx = vmid_x + (setup->etop.sy - vmid_y) * setup->etop.dxdy;
697 setup->ebot.dxdy = setup->ebot.dy ? setup->ebot.dx / setup->ebot.dy : .0f;
698 setup->ebot.sx = vmin_x + (setup->ebot.sy - vmin_y) * setup->ebot.dxdy;
747 int left = (int)(eleft->sx + y * eleft->dxdy);
748 int right = (int)(eright->sx + y * eright->dxdy);
771 eleft->sx += lines * eleft->dxdy;
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkDQuadIntersection.cpp 126 SkDVector dxdy = q2.dxdyAtT(tMid); local
127 line[0] -= dxdy;
128 line[1] += dxdy;
SkOpSegment.h 62 SkVector dxdy(int index) const { function in class:SkOpSegment
67 return dxdy(index).fY;
  /external/skia/src/pathops/
SkDQuadIntersection.cpp 126 SkDVector dxdy = q2.dxdyAtT(tMid); local
127 line[0] -= dxdy;
128 line[1] += dxdy;
SkOpSegment.h 62 SkVector dxdy(int index) const { function in class:SkOpSegment
67 return dxdy(index).fY;

Completed in 714 milliseconds