Lines Matching refs:texImg

129    const struct gl_texture_image *texImg =				\
132 swrast_texture_image_const(texImg); \
133 const GLfloat twidth = (GLfloat) texImg->Width; \
134 const GLfloat theight = (GLfloat) texImg->Height; \
135 const GLint twidth_log2 = texImg->WidthLog2; \
137 const GLint smask = texImg->Width - 1; \
138 const GLint tmask = texImg->Height - 1; \
139 assert(texImg->TexFormat == MESA_FORMAT_BGR_UNORM8); \
187 const struct gl_texture_image *texImg = \
190 swrast_texture_image_const(texImg); \
191 const GLfloat twidth = (GLfloat) texImg->Width; \
192 const GLfloat theight = (GLfloat) texImg->Height; \
193 const GLint twidth_log2 = texImg->WidthLog2; \
195 const GLint smask = texImg->Width - 1; \
196 const GLint tmask = texImg->Height - 1; \
197 assert(texImg->TexFormat == MESA_FORMAT_BGR_UNORM8); \
544 const struct gl_texture_image *texImg = \
547 swrast_texture_image_const(texImg); \
548 const GLfloat twidth = (GLfloat) texImg->Width; \
549 const GLfloat theight = (GLfloat) texImg->Height; \
551 info.twidth_log2 = texImg->WidthLog2; \
552 info.smask = texImg->Width - 1; \
553 info.tmask = texImg->Height - 1; \
554 info.format = texImg->TexFormat; \
576 info.tbytesline = texImg->Width * 3; \
579 info.tbytesline = texImg->Width * 4; \
585 info.tsize = texImg->Height * info.tbytesline;
813 const struct gl_texture_image *texImg = \
816 swrast_texture_image_const(texImg); \
818 info.twidth_log2 = texImg->WidthLog2; \
819 info.smask = texImg->Width - 1; \
820 info.tmask = texImg->Height - 1; \
821 info.format = texImg->TexFormat; \
842 info.tbytesline = texImg->Width * 3; \
845 info.tbytesline = texImg->Width * 4; \
851 info.tsize = texImg->Height * info.tbytesline;
1050 const struct gl_texture_image *texImg; in _swrast_choose_triangle() local
1062 texImg = texObj2D ? _mesa_base_tex_image(texObj2D) : NULL; in _swrast_choose_triangle()
1063 swImg = swrast_texture_image_const(texImg); in _swrast_choose_triangle()
1065 format = texImg ? texImg->TexFormat : MESA_FORMAT_NONE; in _swrast_choose_triangle()
1080 && texImg->Border == 0 in _swrast_choose_triangle()
1081 && (_mesa_format_row_stride(format, texImg->Width) == in _swrast_choose_triangle()