OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:texImg
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_fragprog.c
119
const struct gl_texture_image *
texImg
=
122
swrast_texture_image_const(
texImg
);
s_triangle.c
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_RGB888); \
187
const struct gl_texture_image *
texImg
= \
190
swrast_texture_image_const(
texImg
); \
[
all
...]
/external/mesa3d/src/mesa/swrast/
s_fragprog.c
119
const struct gl_texture_image *
texImg
=
122
swrast_texture_image_const(
texImg
);
s_triangle.c
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_RGB888); \
187
const struct gl_texture_image *
texImg
= \
190
swrast_texture_image_const(
texImg
); \
[
all
...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_mipmap_tree.c
370
struct gl_texture_image *
texImg
= texObj->Image[0][texObj->BaseLevel];
374
if (!
texImg
) {
381
numLevels = MIN2(texObj->MaxLevel - texObj->BaseLevel + 1,
texImg
->MaxNumLevels);
384
texImg
->TexFormat, texObj->BaseLevel,
385
numLevels,
texImg
->Width,
texImg
->Height,
386
texImg
->Depth, t->tile_bits);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
debug.c
373
struct gl_texture_image *
texImg
= texObj->Image[j][i];
374
if (
texImg
) {
377
texImg
->Width,
texImg
->Height,
texImg
->Depth,
378
_mesa_get_format_name(
texImg
->TexFormat));
fbobject.c
743
const struct gl_texture_image *
texImg
=
745
minWidth = MIN2(minWidth,
texImg
->Width);
746
maxWidth = MAX2(maxWidth,
texImg
->Width);
747
minHeight = MIN2(minHeight,
texImg
->Height);
748
maxHeight = MAX2(maxHeight,
texImg
->Height);
749
f =
texImg
->_BaseFormat;
750
attFormat =
texImg
->TexFormat;
[
all
...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_mipmap_tree.c
370
struct gl_texture_image *
texImg
= texObj->Image[0][texObj->BaseLevel];
374
if (!
texImg
) {
381
numLevels = MIN2(texObj->MaxLevel - texObj->BaseLevel + 1,
texImg
->MaxNumLevels);
384
texImg
->TexFormat, texObj->BaseLevel,
385
numLevels,
texImg
->Width,
texImg
->Height,
386
texImg
->Depth, t->tile_bits);
/external/mesa3d/src/mesa/main/
debug.c
373
struct gl_texture_image *
texImg
= texObj->Image[j][i];
374
if (
texImg
) {
377
texImg
->Width,
texImg
->Height,
texImg
->Depth,
378
_mesa_get_format_name(
texImg
->TexFormat));
fbobject.c
743
const struct gl_texture_image *
texImg
=
745
minWidth = MIN2(minWidth,
texImg
->Width);
746
maxWidth = MAX2(maxWidth,
texImg
->Width);
747
minHeight = MIN2(minHeight,
texImg
->Height);
748
maxHeight = MAX2(maxHeight,
texImg
->Height);
749
f =
texImg
->_BaseFormat;
750
attFormat =
texImg
->TexFormat;
[
all
...]
Completed in 802 milliseconds