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

  /external/mesa3d/src/mesa/main/
drawpix.c 61 IROUND(ctx->Current.RasterPos[0]),
62 IROUND(ctx->Current.RasterPos[1]));
144 GLint x = IROUND(ctx->Current.RasterPos[0]);
145 GLint y = IROUND(ctx->Current.RasterPos[1]);
172 ctx->Current.RasterPos,
205 IROUND(ctx->Current.RasterPos[0]),
206 IROUND(ctx->Current.RasterPos[1]));
268 GLint destx = IROUND(ctx->Current.RasterPos[0]);
269 GLint desty = IROUND(ctx->Current.RasterPos[1]);
278 ctx->Current.RasterPos,
    [all...]
rastpos.c 368 * glRasterPos transformation. Typically called via ctx->Driver.RasterPos().
418 ctx->Current.RasterPos[0] = ndc[0] * scale[0] + translate[0];
419 ctx->Current.RasterPos[1] = ndc[1] * scale[1] + translate[1];
420 ctx->Current.RasterPos[2] = ndc[2] * scale[2] + translate[2];
421 ctx->Current.RasterPos[3] = clip[3];
424 ctx->Current.RasterPos[3] = CLAMP(ctx->Current.RasterPos[3],
479 _mesa_update_hitflag( ctx, ctx->Current.RasterPos[2] );
485 * Helper function for all the RasterPos functions.
488 rasterpos(GLfloat x, GLfloat y, GLfloat z, GLfloat w function
    [all...]
dd.h 118 void (*RasterPos)( struct gl_context *ctx, const GLfloat v[4] );
    [all...]
mtypes.h 511 GLfloat RasterPos[4];
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_rasterpos.c 30 * private draw module. Plug in a special "rasterpos" stage at the end
146 ctx->Current.RasterPos[0] = pos[0];
148 ctx->Current.RasterPos[1] = height - pos[1]; /* invert Y */
150 ctx->Current.RasterPos[1] = pos[1];
151 ctx->Current.RasterPos[2] = pos[2];
152 ctx->Current.RasterPos[3] = pos[3];
170 _mesa_update_hitflag( ctx, ctx->Current.RasterPos[2] );
176 * Create rasterpos "drawing" stage.
232 * function implementation of RasterPos.
284 functions->RasterPos = st_RasterPos
    [all...]
st_cb_bitmap.c 488 const GLfloat z = ctx->Current.RasterPos[2];
666 draw_bitmap_quad(ctx, x, y, ctx->Current.RasterPos[2],
691 const float z = ctx->Current.RasterPos[2] * 2.0f - 1.0f;
731 const float x0 = IFLOOR(ctx->Current.RasterPos[0] - xorig + epsilon);
732 const float y0 = IFLOOR(ctx->Current.RasterPos[1] - yorig + epsilon);
788 ctx->Current.RasterPos[0] += xmove;
789 ctx->Current.RasterPos[1] += ymove;
st_cb_drawpixels.c     [all...]
  /external/mesa3d/docs/specs/
MESA_window_pos.spec 32 coordinate with the RasterPos command, the modelview matrix, projection
93 WindowPosMESA operates like RasterPos except that the current modelview
107 to that of RasterPos is expected.
  /external/mesa3d/src/mesa/drivers/common/
driverfuncs.c 85 driver->RasterPos = _mesa_RasterPos;
meta.c     [all...]
  /external/mesa3d/src/mesa/swrast/
s_span.c 72 span->z = FloatToFixed(ctx->Current.RasterPos[2] * depthMax + 0.5F);
74 GLfloat tmpf = ctx->Current.RasterPos[2] * depthMax;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_swtcl.c 855 vert.tv.z = ctx->Current.RasterPos[2];
  /external/mesa3d/prebuilt-intermediates/main/
get_hash.h     [all...]

Completed in 277 milliseconds