OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImageOffsets
(Results
1 - 18
of
18
) sorted by null
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_texture.c
79
/* RowStride and
ImageOffsets
[] describe how to address texels in 'Data' */
82
/* Allocate the
ImageOffsets
array and initialize to typical values.
86
swImg->
ImageOffsets
= (GLuint *) malloc(texImage->Depth * sizeof(GLuint));
87
if (!swImg->
ImageOffsets
)
91
swImg->
ImageOffsets
[i] = i * texImage->Width * texImage->Height;
103
* buffer or initializing
ImageOffsets
or RowStride.
147
if (swImage->
ImageOffsets
) {
148
free(swImage->
ImageOffsets
);
149
swImage->
ImageOffsets
= NULL;
s_texrender.c
98
swImage->
ImageOffsets
[zOffset] * _mesa_get_format_bytes(format);
s_context.h
141
GLuint *
ImageOffsets
; /**< if 3D texture: array [Depth] of offsets to
s_texfetch_tmp.h
61
((type *)(image)->Map + ((image)->
ImageOffsets
[k] \
[
all
...]
/external/mesa3d/src/mesa/swrast/
s_texture.c
79
/* RowStride and
ImageOffsets
[] describe how to address texels in 'Data' */
82
/* Allocate the
ImageOffsets
array and initialize to typical values.
86
swImg->
ImageOffsets
= (GLuint *) malloc(texImage->Depth * sizeof(GLuint));
87
if (!swImg->
ImageOffsets
)
91
swImg->
ImageOffsets
[i] = i * texImage->Width * texImage->Height;
103
* buffer or initializing
ImageOffsets
or RowStride.
147
if (swImage->
ImageOffsets
) {
148
free(swImage->
ImageOffsets
);
149
swImage->
ImageOffsets
= NULL;
s_texrender.c
98
swImage->
ImageOffsets
[zOffset] * _mesa_get_format_bytes(format);
s_context.h
141
GLuint *
ImageOffsets
; /**< if 3D texture: array [Depth] of offsets to
s_texfetch_tmp.h
61
((type *)(image)->Map + ((image)->
ImageOffsets
[k] \
[
all
...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_tex.c
70
/* Allocate the swrast_texture_image::
ImageOffsets
array now */
82
assert(!intel_image->base.
ImageOffsets
);
83
intel_image->base.
ImageOffsets
= malloc(slices * sizeof(GLuint));
153
if (intelImage->base.
ImageOffsets
) {
154
free(intelImage->base.
ImageOffsets
);
155
intelImage->base.
ImageOffsets
= NULL;
intel_tex_validate.c
145
/*
ImageOffsets
[] is only used for swrast's fetch_texel_3d, so we can't
150
intel_image->base.
ImageOffsets
[i] = x + y * mt->region->pitch;
/external/mesa3d/src/mesa/drivers/dri/intel/
intel_tex.c
70
/* Allocate the swrast_texture_image::
ImageOffsets
array now */
82
assert(!intel_image->base.
ImageOffsets
);
83
intel_image->base.
ImageOffsets
= malloc(slices * sizeof(GLuint));
153
if (intelImage->base.
ImageOffsets
) {
154
free(intelImage->base.
ImageOffsets
);
155
intelImage->base.
ImageOffsets
= NULL;
intel_tex_validate.c
145
/*
ImageOffsets
[] is only used for swrast's fetch_texel_3d, so we can't
150
intel_image->base.
ImageOffsets
[i] = x + y * mt->region->pitch;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
texcompress_rgtc.c
299
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] / 2 : 0;
314
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] / 2 : 0;
329
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] : 0;
347
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] : 0;
365
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] / 2 : 0;
380
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] / 2 : 0;
395
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] : 0;
413
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] : 0;
texcompress_s3tc.c
376
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] / 2 : 0;
405
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] / 2 : 0;
434
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] : 0;
463
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] : 0;
/external/mesa3d/src/mesa/main/
texcompress_rgtc.c
299
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] / 2 : 0;
314
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] / 2 : 0;
329
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] : 0;
347
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] : 0;
365
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] / 2 : 0;
380
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] / 2 : 0;
395
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] : 0;
413
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] : 0;
texcompress_s3tc.c
376
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] / 2 : 0;
405
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] / 2 : 0;
434
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] : 0;
463
GLint sliceOffset = k ? texImage->
ImageOffsets
[k] : 0;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_texture.c
122
assert(!image->base.
ImageOffsets
);
123
image->base.
ImageOffsets
= malloc(slices * sizeof(GLuint));
151
if (image->base.
ImageOffsets
) {
152
free(image->base.
ImageOffsets
);
153
image->base.
ImageOffsets
= NULL;
734
image->base.
ImageOffsets
[i] = rs * lvl->height * i;
/external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_texture.c
122
assert(!image->base.
ImageOffsets
);
123
image->base.
ImageOffsets
= malloc(slices * sizeof(GLuint));
151
if (image->base.
ImageOffsets
) {
152
free(image->base.
ImageOffsets
);
153
image->base.
ImageOffsets
= NULL;
734
image->base.
ImageOffsets
[i] = rs * lvl->height * i;
Completed in 274 milliseconds