Searched defs:pack_x_pitch (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_tex_layout.c90 GLuint pack_x_pitch, pack_x_nr; local
104 pack_x_pitch = width;
119 x += pack_x_pitch;
138 if (pack_x_pitch > ALIGN(width, mt->align_w)) {
139 pack_x_pitch = ALIGN(width, mt->align_w);
144 if (pack_x_pitch > 4) {
145 pack_x_pitch >>= 1;
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_tex_layout.c90 GLuint pack_x_pitch, pack_x_nr; local
104 pack_x_pitch = width;
119 x += pack_x_pitch;
138 if (pack_x_pitch > ALIGN(width, mt->align_w)) {
139 pack_x_pitch = ALIGN(width, mt->align_w);
144 if (pack_x_pitch > 4) {
145 pack_x_pitch >>= 1;
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_tex_layout.c408 GLuint pack_x_pitch, pack_x_nr; local
416 pack_x_pitch = mt->total_width;
431 x += pack_x_pitch;
440 if (pack_x_pitch > 4) {
441 pack_x_pitch >>= 1;
443 assert(pack_x_pitch * pack_x_nr <= mt->total_width);
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_tex_layout.c408 GLuint pack_x_pitch, pack_x_nr; local
416 pack_x_pitch = mt->total_width;
431 x += pack_x_pitch;
440 if (pack_x_pitch > 4) {
441 pack_x_pitch >>= 1;
443 assert(pack_x_pitch * pack_x_nr <= mt->total_width);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_resource_texture.c505 unsigned pack_x_pitch, pack_x_nr; local
513 pack_x_pitch = tex->stride / util_format_get_blocksize(pt->format);
526 x += pack_x_pitch;
535 if (pack_x_pitch > 4) {
536 pack_x_pitch >>= 1;
538 assert(pack_x_pitch * pack_x_nr * util_format_get_blocksize(pt->format) <= tex->stride);
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_resource_texture.c505 unsigned pack_x_pitch, pack_x_nr; local
513 pack_x_pitch = tex->stride / util_format_get_blocksize(pt->format);
526 x += pack_x_pitch;
535 if (pack_x_pitch > 4) {
536 pack_x_pitch >>= 1;
538 assert(pack_x_pitch * pack_x_nr * util_format_get_blocksize(pt->format) <= tex->stride);

Completed in 681 milliseconds