Searched refs:util_format_get_stride (Results 1 - 25 of 67) sorted by relevance

123

/xsrc/external/mit/mesa-demos/dist/src/rbug/
H A Dbin_to_bmp.c70 assert(src_stride >= util_format_get_stride(src_format, width));
73 dst_stride = util_format_get_stride(dst_format, width);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_resource.c58 util_format_get_stride(res->format, width) * slices * samples);
H A Du_debug_describe.c44 util_sprintf(buf, "pipe_buffer<%u>", (unsigned)util_format_get_stride(ptr->format, ptr->width0));
H A Du_tile.c55 dst_stride = util_format_get_stride(pt->resource->format, w);
76 src_stride = util_format_get_stride(format, w);
399 src, util_format_get_stride(format, w),
412 src, util_format_get_stride(format, w),
424 src, util_format_get_stride(format, w),
521 packed, util_format_get_stride(format, w),
550 packed, util_format_get_stride(format, w),
578 packed, util_format_get_stride(format, w),
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
H A Du_resource.c58 util_format_get_stride(res->format, width) * slices * samples);
H A Du_tile.c55 dst_stride = util_format_get_stride(pt->resource->format, w);
76 src_stride = util_format_get_stride(format, w);
441 packed, util_format_get_stride(format, w),
H A Du_transfer_helper.c259 ptrans->stride = util_format_get_stride(format, box->width);
585 ptrans->stride = util_format_get_stride(format, box->width);
/xsrc/external/mit/MesaLib/dist/src/util/
H A Du_debug_describe.c44 sprintf(buf, "pipe_buffer<%u>", (unsigned)util_format_get_stride(ptr->format, ptr->width0));
/xsrc/external/mit/MesaLib.old/dist/src/gallium/tests/unit/
H A Dtranslate_test.c192 output_format_size = util_format_get_stride(output_format, 1);
212 input_format_size = util_format_get_stride(input_format, 1);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/i915/
H A Di915_resource_texture.c107 return util_next_power_of_two(util_format_get_stride(format, width));
214 tex->stride = align(util_format_get_stride(pt->format, pt->width0), 64);
252 tex->stride = align(util_format_get_stride(pt->format, pt->width0), 64);
345 tex->stride = align(util_format_get_stride(pt->format, width), 4);
374 tex->stride = align(util_format_get_stride(pt->format, width), 4);
453 tex->stride = align(util_format_get_stride(pt->format, width), 4);
510 tex->stride = align(util_format_get_stride(pt->format, width), 4);
870 offset += util_format_get_stride(format, transfer->box.x);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/
H A Di915_resource_texture.c96 return util_next_power_of_two(util_format_get_stride(format, width));
197 tex->stride = align(util_format_get_stride(pt->format, pt->width0), 64);
240 tex->stride = align(util_format_get_stride(pt->format, pt->width0), 64);
373 tex->stride = align(util_format_get_stride(pt->format, width), 4);
402 tex->stride = align(util_format_get_stride(pt->format, width), 4);
479 tex->stride = align(util_format_get_stride(pt->format, width), 4);
536 tex->stride = align(util_format_get_stride(pt->format, width), 4);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/sw/hgl/
H A Dhgl_sw_winsys.c123 size_t formatStride = util_format_get_stride(format, width);
/xsrc/external/mit/MesaLib/dist/src/gallium/winsys/sw/hgl/
H A Dhgl_sw_winsys.cpp125 size_t formatStride = util_format_get_stride(format, width);
/xsrc/external/mit/MesaLib/dist/src/gallium/tests/unit/
H A Dtranslate_test.c196 output_format_size = util_format_get_stride(output_format, 1);
219 input_format_size = util_format_get_stride(input_format, 1);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
H A Dsp_image.c163 if (util_format_get_stride(pformat, *width) >
164 util_format_get_stride(spr->base.format, spr->base.width0))
234 stride = util_format_get_stride(params->format, width);
339 stride = util_format_get_stride(pformat, width);
682 stride = util_format_get_stride(spr->base.format, width);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
H A Dsp_image.c163 if (util_format_get_stride(pformat, *width) >
164 util_format_get_stride(spr->base.format, spr->base.width0))
234 stride = util_format_get_stride(params->format, width);
320 stride = util_format_get_stride(pformat, width);
649 stride = util_format_get_stride(spr->base.format, width);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_resource.c160 mip->stride = util_format_get_stride(prsc->format, mip->padded_width);
556 if (level->stride < util_format_get_stride(tmpl->format, level->padded_width)) {
558 level->stride, util_format_get_stride(tmpl->format, level->padded_width),
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/
H A Dlima_resource.c111 stride = util_format_get_stride(pres->format, aligned_width);
301 stride = util_format_get_stride(pres->format, width);
500 ptrans->stride = util_format_get_stride(pres->format, ptrans->box.width);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
H A Dsi_test_blit.c47 tex->stride = align(util_format_get_stride(templ->format, templ->width0), RAND_NUM_SIZE);
90 unsigned stride = util_format_get_stride(tex->format, tex->width0);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/sw/dri/
H A Ddri_sw_winsys.c135 format_stride = util_format_get_stride(format, width);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/
H A Dlima_resource.c114 stride = util_format_get_stride(pres->format, aligned_width);
122 res->levels[level].layer_stride = util_format_get_stride(pres->format, align(width, 16)) * align(height, 16);
353 stride = util_format_get_stride(pres->format, width);
675 ptrans->stride = util_format_get_stride(pres->format, ptrans->box.width);
/xsrc/external/mit/MesaLib/dist/src/gallium/winsys/sw/dri/
H A Ddri_sw_winsys.c139 format_stride = util_format_get_stride(format, width);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/
H A Dvolume9.c109 This->stride = util_format_get_stride(This->info.format, pDesc->Width);
244 unsigned x_offset = util_format_get_stride(format, x);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/
H A Dr300_texture_desc.c143 stride = util_format_get_stride(tex->b.b.format, width);
147 return align(util_format_get_stride(tex->b.b.format, width), is_rs690 ? 64 : 32);
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/
H A Dvolume9.c109 This->stride = util_format_get_stride(This->info.format, pDesc->Width);
243 unsigned x_offset = util_format_get_stride(format, x);

Completed in 26 milliseconds

123