Lines Matching refs:texcoord
74 GLvector4f texcoord[MAX_TEXTURE_COORD_UNITS]; member
255 GLvector4f *out = &store->texcoord[unit]; in texgen_reflection_map_nv()
277 GLvector4f *out = &store->texcoord[unit]; in texgen_normal_map_nv()
279 GLfloat (*texcoord)[4] = (GLfloat (*)[4])out->start; in texgen_normal_map_nv() local
285 texcoord[i][0] = norm[0]; in texgen_normal_map_nv()
286 texcoord[i][1] = norm[1]; in texgen_normal_map_nv()
287 texcoord[i][2] = norm[2]; in texgen_normal_map_nv()
305 GLvector4f *out = &store->texcoord[unit]; in texgen_sphere_map()
306 GLfloat (*texcoord)[4] = (GLfloat (*)[4]) out->start; in texgen_sphere_map() local
320 texcoord[i][0] = f[i][0] * m[i] + 0.5F; in texgen_sphere_map()
321 texcoord[i][1] = f[i][1] * m[i] + 0.5F; in texgen_sphere_map()
339 GLvector4f *out = &store->texcoord[unit]; in texgen()
346 GLfloat (*texcoord)[4] = (GLfloat (*)[4])out->data; in texgen() local
380 texcoord[i][0] = f[i][0] * m[i] + 0.5F; in texgen()
384 texcoord[i][0] = f[i][0]; in texgen()
389 texcoord[i][0] = norm[0]; in texgen()
413 texcoord[i][1] = f[i][1] * m[i] + 0.5F; in texgen()
417 texcoord[i][1] = f[i][1]; in texgen()
422 texcoord[i][1] = norm[1]; in texgen()
446 texcoord[i][2] = f[i][2]; in texgen()
451 texcoord[i][2] = norm[2]; in texgen()
498 VB->AttribPtr[VERT_ATTRIB_TEX0 + i] = &store->texcoord[i]; in run_texgen_stage()
569 _mesa_vector4f_alloc( &store->texcoord[i], 0, VB->Size, 32 ); in alloc_texgen_data()
586 if (store->texcoord[i].data) in free_texgen_data()
587 _mesa_vector4f_free( &store->texcoord[i] ); in free_texgen_data()