• Home
  • Raw
  • Download

Lines Matching refs:Current

238    ctx->Current.RasterPos[0] = x;  in window_pos3f()
239 ctx->Current.RasterPos[1] = y; in window_pos3f()
240 ctx->Current.RasterPos[2] = z2; in window_pos3f()
241 ctx->Current.RasterPos[3] = 1.0F; in window_pos3f()
243 ctx->Current.RasterPosValid = GL_TRUE; in window_pos3f()
246 ctx->Current.RasterDistance = ctx->Current.Attrib[VERT_ATTRIB_FOG][0]; in window_pos3f()
248 ctx->Current.RasterDistance = 0.0; in window_pos3f()
251 ctx->Current.RasterColor[0] in window_pos3f()
252 = CLAMP(ctx->Current.Attrib[VERT_ATTRIB_COLOR0][0], 0.0F, 1.0F); in window_pos3f()
253 ctx->Current.RasterColor[1] in window_pos3f()
254 = CLAMP(ctx->Current.Attrib[VERT_ATTRIB_COLOR0][1], 0.0F, 1.0F); in window_pos3f()
255 ctx->Current.RasterColor[2] in window_pos3f()
256 = CLAMP(ctx->Current.Attrib[VERT_ATTRIB_COLOR0][2], 0.0F, 1.0F); in window_pos3f()
257 ctx->Current.RasterColor[3] in window_pos3f()
258 = CLAMP(ctx->Current.Attrib[VERT_ATTRIB_COLOR0][3], 0.0F, 1.0F); in window_pos3f()
259 ctx->Current.RasterSecondaryColor[0] in window_pos3f()
260 = CLAMP(ctx->Current.Attrib[VERT_ATTRIB_COLOR1][0], 0.0F, 1.0F); in window_pos3f()
261 ctx->Current.RasterSecondaryColor[1] in window_pos3f()
262 = CLAMP(ctx->Current.Attrib[VERT_ATTRIB_COLOR1][1], 0.0F, 1.0F); in window_pos3f()
263 ctx->Current.RasterSecondaryColor[2] in window_pos3f()
264 = CLAMP(ctx->Current.Attrib[VERT_ATTRIB_COLOR1][2], 0.0F, 1.0F); in window_pos3f()
265 ctx->Current.RasterSecondaryColor[3] in window_pos3f()
266 = CLAMP(ctx->Current.Attrib[VERT_ATTRIB_COLOR1][3], 0.0F, 1.0F); in window_pos3f()
272 assert(texSet < Elements(ctx->Current.RasterTexCoords)); in window_pos3f()
273 COPY_4FV( ctx->Current.RasterTexCoords[texSet], in window_pos3f()
274 ctx->Current.Attrib[VERT_ATTRIB_TEX0 + texSet] ); in window_pos3f()
279 _mesa_update_hitflag( ctx, ctx->Current.RasterPos[2] ); in window_pos3f()
290 ctx->Current.RasterPos[3] = w; in window_pos4f()
557 ASSIGN_4V( ctx->Current.RasterPos, 0.0, 0.0, 0.0, 1.0 ); in _mesa_init_rastpos()
558 ctx->Current.RasterDistance = 0.0; in _mesa_init_rastpos()
559 ASSIGN_4V( ctx->Current.RasterColor, 1.0, 1.0, 1.0, 1.0 ); in _mesa_init_rastpos()
560 ASSIGN_4V( ctx->Current.RasterSecondaryColor, 0.0, 0.0, 0.0, 1.0 ); in _mesa_init_rastpos()
561 for (i = 0; i < Elements(ctx->Current.RasterTexCoords); i++) in _mesa_init_rastpos()
562 ASSIGN_4V( ctx->Current.RasterTexCoords[i], 0.0, 0.0, 0.0, 1.0 ); in _mesa_init_rastpos()
563 ctx->Current.RasterPosValid = GL_TRUE; in _mesa_init_rastpos()