Home
last modified time | relevance | path

Searched refs:EyePlane (Results 1 – 10 of 10) sorted by relevance

/external/mesa3d/src/mesa/main/
Dtexgen.c163 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()
Dattrib.c838 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()
Drastpos.c310 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()
Dtexstate.c1061 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()
Dmtypes.h1180 GLfloat EyePlane[4]; member
/external/mesa3d/src/mesa/tnl/
Dt_vb_texgen.c378 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/
Dr200_texstate.c1192 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/
Dprog_statevars.c218 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/
Dradeon_texstate.c867 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/
Dnouveau_util.h208 return c->EyePlane; in get_texgen_coeff()