Lines Matching refs:tex_coord
620 GLdouble invQ = tex_coord[2] ? \ in fast_persp_span()
621 (1.0 / tex_coord[2]) : 1.0; \ in fast_persp_span()
622 GLfloat s_tmp = (GLfloat) (tex_coord[0] * invQ); \ in fast_persp_span()
623 GLfloat t_tmp = (GLfloat) (tex_coord[1] * invQ); \ in fast_persp_span()
633 tex_coord[0] += tex_step[0]; \ in fast_persp_span()
634 tex_coord[1] += tex_step[1]; \ in fast_persp_span()
635 tex_coord[2] += tex_step[2]; \ in fast_persp_span()
641 GLdouble invQ = tex_coord[2] ? \ in fast_persp_span()
642 (1.0 / tex_coord[2]) : 1.0; \ in fast_persp_span()
643 const GLfloat s_tmp = (GLfloat) (tex_coord[0] * invQ); \ in fast_persp_span()
644 const GLfloat t_tmp = (GLfloat) (tex_coord[1] * invQ); \ in fast_persp_span()
669 tex_coord[0] += tex_step[0]; \ in fast_persp_span()
670 tex_coord[1] += tex_step[1]; \ in fast_persp_span()
671 tex_coord[2] += tex_step[2]; \ in fast_persp_span()
676 GLfloat tex_coord[3], tex_step[3]; in fast_persp_span() local
682 tex_coord[0] = span->attrStart[VARYING_SLOT_TEX0][0] * (info->smask + 1); in fast_persp_span()
684 tex_coord[1] = span->attrStart[VARYING_SLOT_TEX0][1] * (info->tmask + 1); in fast_persp_span()
687 tex_coord[2] = span->attrStart[VARYING_SLOT_TEX0][3]; in fast_persp_span()