Searched refs:EyePlane (Results 1 – 10 of 10) sorted by relevance
/external/mesa3d/src/mesa/main/ |
D | texgen.c | 170 if (TEST_EQ_4V(texgen->EyePlane, tmp)) in _mesa_TexGenfv() 173 COPY_4FV(texgen->EyePlane, tmp); in _mesa_TexGenfv() 317 COPY_4V(params, texgen->EyePlane); in _mesa_GetTexGendv() 362 COPY_4V(params, texgen->EyePlane); in _mesa_GetTexGenfv() 410 params[0] = (GLint) texgen->EyePlane[0]; in _mesa_GetTexGeniv() 411 params[1] = (GLint) texgen->EyePlane[1]; in _mesa_GetTexGeniv() 412 params[2] = (GLint) texgen->EyePlane[2]; in _mesa_GetTexGeniv() 413 params[3] = (GLint) texgen->EyePlane[3]; in _mesa_GetTexGeniv()
|
D | attrib.c | 789 COPY_4FV(destUnit->GenS.EyePlane, unit->GenS.EyePlane); in pop_texture_group() 790 COPY_4FV(destUnit->GenT.EyePlane, unit->GenT.EyePlane); in pop_texture_group() 791 COPY_4FV(destUnit->GenR.EyePlane, unit->GenR.EyePlane); in pop_texture_group() 792 COPY_4FV(destUnit->GenQ.EyePlane, unit->GenQ.EyePlane); in pop_texture_group() 794 ctx->Driver.TexGen(ctx, GL_S, GL_EYE_PLANE, unit->GenS.EyePlane); in pop_texture_group() 795 ctx->Driver.TexGen(ctx, GL_T, GL_EYE_PLANE, unit->GenT.EyePlane); in pop_texture_group() 796 ctx->Driver.TexGen(ctx, GL_R, GL_EYE_PLANE, unit->GenR.EyePlane); in pop_texture_group() 797 ctx->Driver.TexGen(ctx, GL_Q, GL_EYE_PLANE, unit->GenQ.EyePlane); in pop_texture_group()
|
D | rastpos.c | 291 texcoord[0] = DOT4(vEye, texUnit->GenS.EyePlane); in compute_texgen() 314 texcoord[1] = DOT4(vEye, texUnit->GenT.EyePlane); in compute_texgen() 337 texcoord[2] = DOT4(vEye, texUnit->GenR.EyePlane); in compute_texgen() 357 texcoord[3] = DOT4(vEye, texUnit->GenQ.EyePlane); in compute_texgen()
|
D | texstate.c | 1016 ASSIGN_4V( texUnit->GenS.EyePlane, 1.0, 0.0, 0.0, 0.0 ); in init_texture_unit() 1017 ASSIGN_4V( texUnit->GenT.EyePlane, 0.0, 1.0, 0.0, 0.0 ); in init_texture_unit() 1018 ASSIGN_4V( texUnit->GenR.EyePlane, 0.0, 0.0, 0.0, 0.0 ); in init_texture_unit() 1019 ASSIGN_4V( texUnit->GenQ.EyePlane, 0.0, 0.0, 0.0, 0.0 ); in init_texture_unit()
|
D | mtypes.h | 1233 GLfloat EyePlane[4]; member
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
D | r200_texstate.c | 1193 texUnit->GenS.EyePlane, in r200_validate_texgen() 1194 texUnit->GenT.EyePlane, in r200_validate_texgen() 1195 texUnit->GenR.EyePlane, in r200_validate_texgen() 1196 texUnit->GenQ.EyePlane ); in r200_validate_texgen() 1211 (texUnit->TexGenEnabled & S_BIT) ? texUnit->GenS.EyePlane : I, in r200_validate_texgen() 1212 (texUnit->TexGenEnabled & T_BIT) ? texUnit->GenT.EyePlane : I + 4, in r200_validate_texgen() 1213 (texUnit->TexGenEnabled & R_BIT) ? texUnit->GenR.EyePlane : I + 8, in r200_validate_texgen() 1214 (texUnit->TexGenEnabled & Q_BIT) ? texUnit->GenQ.EyePlane : I + 12); in r200_validate_texgen()
|
/external/mesa3d/src/mesa/tnl/ |
D | t_vb_texgen.c | 376 texUnit->GenS.EyePlane ); in texgen() 409 texUnit->GenT.EyePlane ); in texgen() 442 texUnit->GenR.EyePlane ); in texgen() 470 texUnit->GenQ.EyePlane ); in texgen()
|
/external/mesa3d/src/mesa/program/ |
D | prog_statevars.c | 218 COPY_4V(value, ctx->Texture.Unit[unit].GenS.EyePlane); in _mesa_fetch_state() 221 COPY_4V(value, ctx->Texture.Unit[unit].GenT.EyePlane); in _mesa_fetch_state() 224 COPY_4V(value, ctx->Texture.Unit[unit].GenR.EyePlane); in _mesa_fetch_state() 227 COPY_4V(value, ctx->Texture.Unit[unit].GenQ.EyePlane); in _mesa_fetch_state()
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
D | radeon_texstate.c | 871 texUnit->GenS.EyePlane, in radeon_validate_texgen() 872 texUnit->GenT.EyePlane, in radeon_validate_texgen() 873 texUnit->GenR.EyePlane, in radeon_validate_texgen() 874 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()
|