Searched refs:EyePlane (Results 1 – 10 of 10) sorted by relevance
/external/mesa3d/src/mesa/main/ |
D | texgen.c | 175 if (TEST_EQ_4V(texgen->EyePlane, tmp)) in _mesa_TexGenfv() 178 COPY_4FV(texgen->EyePlane, tmp); in _mesa_TexGenfv() 325 COPY_4V(params, texgen->EyePlane); in _mesa_GetTexGendv() 371 COPY_4V(params, texgen->EyePlane); in _mesa_GetTexGenfv() 420 params[0] = (GLint) texgen->EyePlane[0]; in _mesa_GetTexGeniv() 421 params[1] = (GLint) texgen->EyePlane[1]; in _mesa_GetTexGeniv() 422 params[2] = (GLint) texgen->EyePlane[2]; in _mesa_GetTexGeniv() 423 params[3] = (GLint) texgen->EyePlane[3]; in _mesa_GetTexGeniv()
|
D | attrib.c | 716 COPY_4FV(destUnit->GenS.EyePlane, unit->GenS.EyePlane); in pop_texture_group() 717 COPY_4FV(destUnit->GenT.EyePlane, unit->GenT.EyePlane); in pop_texture_group() 718 COPY_4FV(destUnit->GenR.EyePlane, unit->GenR.EyePlane); in pop_texture_group() 719 COPY_4FV(destUnit->GenQ.EyePlane, unit->GenQ.EyePlane); in pop_texture_group() 721 ctx->Driver.TexGen(ctx, GL_S, GL_EYE_PLANE, unit->GenS.EyePlane); in pop_texture_group() 722 ctx->Driver.TexGen(ctx, GL_T, GL_EYE_PLANE, unit->GenT.EyePlane); in pop_texture_group() 723 ctx->Driver.TexGen(ctx, GL_R, GL_EYE_PLANE, unit->GenR.EyePlane); in pop_texture_group() 724 ctx->Driver.TexGen(ctx, GL_Q, GL_EYE_PLANE, unit->GenQ.EyePlane); in pop_texture_group()
|
D | texstate.c | 776 ASSIGN_4V( texUnit->GenS.EyePlane, 1.0, 0.0, 0.0, 0.0 ); in init_texture_unit() 777 ASSIGN_4V( texUnit->GenT.EyePlane, 0.0, 1.0, 0.0, 0.0 ); in init_texture_unit() 778 ASSIGN_4V( texUnit->GenR.EyePlane, 0.0, 0.0, 0.0, 0.0 ); in init_texture_unit() 779 ASSIGN_4V( texUnit->GenQ.EyePlane, 0.0, 0.0, 0.0, 0.0 ); in init_texture_unit()
|
D | mtypes.h | 1376 GLfloat EyePlane[4]; member
|
/external/mesa3d/src/mesa/tnl/ |
D | t_rasterpos.c | 284 texcoord[0] = DOT4(vEye, texUnit->GenS.EyePlane); in compute_texgen() 307 texcoord[1] = DOT4(vEye, texUnit->GenT.EyePlane); in compute_texgen() 330 texcoord[2] = DOT4(vEye, texUnit->GenR.EyePlane); in compute_texgen() 350 texcoord[3] = DOT4(vEye, texUnit->GenQ.EyePlane); in compute_texgen()
|
D | t_vb_texgen.c | 378 texUnit->GenS.EyePlane ); in texgen() 411 texUnit->GenT.EyePlane ); in texgen() 444 texUnit->GenR.EyePlane ); in texgen() 472 texUnit->GenQ.EyePlane ); in texgen()
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_texstate.c | 1287 texUnit->GenS.EyePlane, in r200_validate_texgen() 1288 texUnit->GenT.EyePlane, in r200_validate_texgen() 1289 texUnit->GenR.EyePlane, in r200_validate_texgen() 1290 texUnit->GenQ.EyePlane ); in r200_validate_texgen() 1305 (texUnit->TexGenEnabled & S_BIT) ? texUnit->GenS.EyePlane : I, in r200_validate_texgen() 1306 (texUnit->TexGenEnabled & T_BIT) ? texUnit->GenT.EyePlane : I + 4, in r200_validate_texgen() 1307 (texUnit->TexGenEnabled & R_BIT) ? texUnit->GenR.EyePlane : I + 8, in r200_validate_texgen() 1308 (texUnit->TexGenEnabled & Q_BIT) ? texUnit->GenQ.EyePlane : I + 12); in r200_validate_texgen()
|
/external/mesa3d/src/mesa/program/ |
D | prog_statevars.c | 210 COPY_4V(value, ctx->Texture.Unit[unit].GenS.EyePlane); in _mesa_fetch_state() 213 COPY_4V(value, ctx->Texture.Unit[unit].GenT.EyePlane); in _mesa_fetch_state() 216 COPY_4V(value, ctx->Texture.Unit[unit].GenR.EyePlane); in _mesa_fetch_state() 219 COPY_4V(value, ctx->Texture.Unit[unit].GenQ.EyePlane); in _mesa_fetch_state()
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_texstate.c | 934 texUnit->GenS.EyePlane, in radeon_validate_texgen() 935 texUnit->GenT.EyePlane, in radeon_validate_texgen() 936 texUnit->GenR.EyePlane, in radeon_validate_texgen() 937 texUnit->GenQ.EyePlane); in radeon_validate_texgen()
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nouveau_util.h | 205 return c->EyePlane; in get_texgen_coeff()
|