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

  /external/mesa3d/src/mesa/swrast/
s_zoom.c 62 c0 = imageX + (GLint) ((spanX - imageX) * ctx->Pixel.ZoomX);
63 c1 = imageX + (GLint) ((spanX + width - imageX) * ctx->Pixel.ZoomX);
110 unzoom_x(GLfloat zoomX, GLint imageX, GLint zx)
113 zx = imageX + (x - imageX) * zoomX;
114 zx - imageX = (x - imageX) * zoomX;
115 (zx - imageX) / zoomX = x - imageX;
118 if (zoomX < 0.0)
120 x = imageX + (GLint) ((zx - imageX) / zoomX);
215 GLint j = unzoom_x(ctx->Pixel.ZoomX, imgX, x0 + i) - span->x;
225 GLint j = unzoom_x(ctx->Pixel.ZoomX, imgX, x0 + i) - span->x
    [all...]
s_copypix.c 53 GLfloat zoomX, GLfloat zoomY)
55 if (zoomX == 1.0 && zoomY == 1.0) {
72 if (srcx > (dstx + ((zoomX > 0.0F) ? (width * zoomX + 1.0F) : 0.0F))) {
76 else if (srcx + width + 1.0F < dstx + ((zoomX > 0.0F) ? 0.0F : (width * zoomX))) {
104 const GLboolean zoom = ctx->Pixel.ZoomX != 1.0F || ctx->Pixel.ZoomY != 1.0F;
116 ctx->Pixel.ZoomX, ctx->Pixel.ZoomY);
252 const GLboolean zoom = ctx->Pixel.ZoomX != 1.0F || ctx->Pixel.ZoomY != 1.0F;
267 ctx->Pixel.ZoomX, ctx->Pixel.ZoomY)
    [all...]
s_drawpix.c 209 ctx->Pixel.ZoomX != 1.0f ||
265 const GLboolean zoom = ctx->Pixel.ZoomX != 1.0 || ctx->Pixel.ZoomY != 1.0;
311 const GLboolean zoom = ctx->Pixel.ZoomX != 1.0 || ctx->Pixel.ZoomY != 1.0;
416 const GLboolean zoom = ctx->Pixel.ZoomX!=1.0 || ctx->Pixel.ZoomY!=1.0;
559 const GLboolean zoom = ctx->Pixel.ZoomX != 1.0 || ctx->Pixel.ZoomY != 1.0;
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_pixel_copy.c 149 ctx->Pixel.ZoomX != 1.0F || ctx->Pixel.ZoomY != 1.0F)
  /external/mesa3d/src/mesa/main/
pixel.c 57 if (ctx->Pixel.ZoomX == xfactor &&
62 ctx->Pixel.ZoomX = xfactor;
707 ctx->Pixel.ZoomX = 1.0;
image.c 602 ASSERT(ctx->Pixel.ZoomX == 1.0F);
mtypes.h 1057 GLfloat ZoomX, ZoomY;
    [all...]
get.c     [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xm_dd.c 310 ctx->Pixel.ZoomX == 1.0 && /* no zooming */
443 ctx->Pixel.ZoomX == 1.0 && /* no zooming */
572 ctx->Pixel.ZoomX == 1.0 && /* no zooming */
  /external/mesa3d/src/mesa/state_tracker/
st_cb_drawpixels.c 656 GLfloat zoomX, GLfloat zoomY,
795 x1 = x + width * ctx->Pixel.ZoomX;
839 const GLboolean zoom = ctx->Pixel.ZoomX != 1.0 || ctx->Pixel.ZoomY != 1.0;
    [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.c     [all...]

Completed in 59 milliseconds