Lines Matching refs:texImg

130    const struct gl_texture_image *texImg =				\
133 swrast_texture_image_const(texImg); \
134 const GLfloat twidth = (GLfloat) texImg->Width; \
135 const GLfloat theight = (GLfloat) texImg->Height; \
136 const GLint twidth_log2 = texImg->WidthLog2; \
138 const GLint smask = texImg->Width - 1; \
139 const GLint tmask = texImg->Height - 1; \
140 assert(texImg->TexFormat == MESA_FORMAT_BGR_UNORM8); \
188 const struct gl_texture_image *texImg = \
191 swrast_texture_image_const(texImg); \
192 const GLfloat twidth = (GLfloat) texImg->Width; \
193 const GLfloat theight = (GLfloat) texImg->Height; \
194 const GLint twidth_log2 = texImg->WidthLog2; \
196 const GLint smask = texImg->Width - 1; \
197 const GLint tmask = texImg->Height - 1; \
198 assert(texImg->TexFormat == MESA_FORMAT_BGR_UNORM8); \
545 const struct gl_texture_image *texImg = \
548 swrast_texture_image_const(texImg); \
549 const GLfloat twidth = (GLfloat) texImg->Width; \
550 const GLfloat theight = (GLfloat) texImg->Height; \
552 info.twidth_log2 = texImg->WidthLog2; \
553 info.smask = texImg->Width - 1; \
554 info.tmask = texImg->Height - 1; \
555 info.format = texImg->TexFormat; \
577 info.tbytesline = texImg->Width * 3; \
580 info.tbytesline = texImg->Width * 4; \
586 info.tsize = texImg->Height * info.tbytesline;
814 const struct gl_texture_image *texImg = \
817 swrast_texture_image_const(texImg); \
819 info.twidth_log2 = texImg->WidthLog2; \
820 info.smask = texImg->Width - 1; \
821 info.tmask = texImg->Height - 1; \
822 info.format = texImg->TexFormat; \
843 info.tbytesline = texImg->Width * 3; \
846 info.tbytesline = texImg->Width * 4; \
852 info.tsize = texImg->Height * info.tbytesline;
1051 const struct gl_texture_image *texImg;
1063 texImg = texObj2D ? _mesa_base_tex_image(texObj2D) : NULL;
1064 swImg = swrast_texture_image_const(texImg);
1066 format = texImg ? texImg->TexFormat : MESA_FORMAT_NONE;
1081 && texImg->Border == 0
1082 && (_mesa_format_row_stride(format, texImg->Width) ==