Lines Matching full:tex_coord
619 GLdouble invQ = tex_coord[2] ? \
620 (1.0 / tex_coord[2]) : 1.0; \
621 GLfloat s_tmp = (GLfloat) (tex_coord[0] * invQ); \
622 GLfloat t_tmp = (GLfloat) (tex_coord[1] * invQ); \
632 tex_coord[0] += tex_step[0]; \
633 tex_coord[1] += tex_step[1]; \
634 tex_coord[2] += tex_step[2]; \
640 GLdouble invQ = tex_coord[2] ? \
641 (1.0 / tex_coord[2]) : 1.0; \
642 const GLfloat s_tmp = (GLfloat) (tex_coord[0] * invQ); \
643 const GLfloat t_tmp = (GLfloat) (tex_coord[1] * invQ); \
668 tex_coord[0] += tex_step[0]; \
669 tex_coord[1] += tex_step[1]; \
670 tex_coord[2] += tex_step[2]; \
675 GLfloat tex_coord[3], tex_step[3];
681 tex_coord[0] = span->attrStart[FRAG_ATTRIB_TEX0][0] * (info->smask + 1);
683 tex_coord[1] = span->attrStart[FRAG_ATTRIB_TEX0][1] * (info->tmask + 1);
686 tex_coord[2] = span->attrStart[FRAG_ATTRIB_TEX0][3];