Searched refs:EyePlane (Results 1 – 10 of 10) sorted by relevance
/external/mesa3d/src/mesa/main/ |
D | texgen.c | 163 if (TEST_EQ_4V(texgen->EyePlane, tmp)) in texgenfv() 166 COPY_4FV(texgen->EyePlane, tmp); in texgenfv() 202 COPY_4V(params, texgen->EyePlane); in gettexgendv() 240 COPY_4V(params, texgen->EyePlane); in gettexgenfv() 281 params[0] = (GLint) texgen->EyePlane[0]; in gettexgeniv() 282 params[1] = (GLint) texgen->EyePlane[1]; in gettexgeniv() 283 params[2] = (GLint) texgen->EyePlane[2]; in gettexgeniv() 284 params[3] = (GLint) texgen->EyePlane[3]; in gettexgeniv()
|
D | attrib.c | 838 COPY_4FV(destUnit->GenS.EyePlane, unit->GenS.EyePlane); in pop_texture_group() 839 COPY_4FV(destUnit->GenT.EyePlane, unit->GenT.EyePlane); in pop_texture_group() 840 COPY_4FV(destUnit->GenR.EyePlane, unit->GenR.EyePlane); in pop_texture_group() 841 COPY_4FV(destUnit->GenQ.EyePlane, unit->GenQ.EyePlane); in pop_texture_group() 843 ctx->Driver.TexGen(ctx, GL_S, GL_EYE_PLANE, unit->GenS.EyePlane); in pop_texture_group() 844 ctx->Driver.TexGen(ctx, GL_T, GL_EYE_PLANE, unit->GenT.EyePlane); in pop_texture_group() 845 ctx->Driver.TexGen(ctx, GL_R, GL_EYE_PLANE, unit->GenR.EyePlane); in pop_texture_group() 846 ctx->Driver.TexGen(ctx, GL_Q, GL_EYE_PLANE, unit->GenQ.EyePlane); in pop_texture_group()
|
D | rastpos.c | 310 texcoord[0] = DOT4(vEye, texUnit->GenS.EyePlane); in compute_texgen() 333 texcoord[1] = DOT4(vEye, texUnit->GenT.EyePlane); in compute_texgen() 356 texcoord[2] = DOT4(vEye, texUnit->GenR.EyePlane); in compute_texgen() 376 texcoord[3] = DOT4(vEye, texUnit->GenQ.EyePlane); in compute_texgen()
|
D | texstate.c | 1061 ASSIGN_4V( texUnit->GenS.EyePlane, 1.0, 0.0, 0.0, 0.0 ); in _mesa_init_texture() 1062 ASSIGN_4V( texUnit->GenT.EyePlane, 0.0, 1.0, 0.0, 0.0 ); in _mesa_init_texture() 1063 ASSIGN_4V( texUnit->GenR.EyePlane, 0.0, 0.0, 0.0, 0.0 ); in _mesa_init_texture() 1064 ASSIGN_4V( texUnit->GenQ.EyePlane, 0.0, 0.0, 0.0, 0.0 ); in _mesa_init_texture()
|
D | mtypes.h | 1180 GLfloat EyePlane[4]; member
|
/external/mesa3d/src/mesa/tnl/ |
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 | 1192 texUnit->GenS.EyePlane, in r200_validate_texgen() 1193 texUnit->GenT.EyePlane, in r200_validate_texgen() 1194 texUnit->GenR.EyePlane, in r200_validate_texgen() 1195 texUnit->GenQ.EyePlane ); in r200_validate_texgen() 1210 (texUnit->TexGenEnabled & S_BIT) ? texUnit->GenS.EyePlane : I, in r200_validate_texgen() 1211 (texUnit->TexGenEnabled & T_BIT) ? texUnit->GenT.EyePlane : I + 4, in r200_validate_texgen() 1212 (texUnit->TexGenEnabled & R_BIT) ? texUnit->GenR.EyePlane : I + 8, in r200_validate_texgen() 1213 (texUnit->TexGenEnabled & Q_BIT) ? texUnit->GenQ.EyePlane : I + 12); in r200_validate_texgen()
|
/external/mesa3d/src/mesa/program/ |
D | prog_statevars.c | 218 COPY_4V(value, ctx->Texture.FixedFuncUnit[unit].GenS.EyePlane); in fetch_state() 221 COPY_4V(value, ctx->Texture.FixedFuncUnit[unit].GenT.EyePlane); in fetch_state() 224 COPY_4V(value, ctx->Texture.FixedFuncUnit[unit].GenR.EyePlane); in fetch_state() 227 COPY_4V(value, ctx->Texture.FixedFuncUnit[unit].GenQ.EyePlane); in fetch_state()
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_texstate.c | 867 texUnit->GenS.EyePlane, in radeon_validate_texgen() 868 texUnit->GenT.EyePlane, in radeon_validate_texgen() 869 texUnit->GenR.EyePlane, in radeon_validate_texgen() 870 texUnit->GenQ.EyePlane); in radeon_validate_texgen()
|
/external/mesa3d/src/mesa/drivers/dri/nouveau/ |
D | nouveau_util.h | 208 return c->EyePlane; in get_texgen_coeff()
|