Searched refs:blockheight (Results 1 - 14 of 14) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/nouveau/
H A Dnouveau_util.h218 GLuint blockheight; local in function:get_format_blocksx
219 _mesa_get_format_block_size(format, &blockwidth, &blockheight);
228 GLuint blockheight; local in function:get_format_blocksy
229 _mesa_get_format_block_size(format, &blockwidth, &blockheight);
230 return (y + blockheight - 1) / blockheight;
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/
H A Dnouveau_util.h218 GLuint blockheight; local in function:get_format_blocksx
219 _mesa_get_format_block_size(format, &blockwidth, &blockheight);
228 GLuint blockheight; local in function:get_format_blocksy
229 _mesa_get_format_block_size(format, &blockwidth, &blockheight);
230 return (y + blockheight - 1) / blockheight;
/xsrc/external/mit/MesaLib/dist/src/freedreno/fdl/
H A Dfd6_layout.c41 uint32_t *blockheight)
59 *blockheight = 8;
66 *blockheight = blocksize[cpp].height;
40 fdl6_get_ubwc_blockwidth(struct fdl_layout * layout,uint32_t * blockwidth,uint32_t * blockheight) argument
H A Dfreedreno_layout.h256 uint32_t *blockheight);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_surface.c82 int blockheight = util_format_get_blockheight(format); local in function:util_copy_rect
86 assert(blockheight > 0);
89 dst_y /= blockheight;
91 height = (height + blockheight - 1)/blockheight;
93 src_y /= blockheight;
161 int blockheight = desc->block.height; local in function:util_fill_rect
165 assert(blockheight > 0);
168 dst_y /= blockheight;
170 height = (height + blockheight
[all...]
H A Du_format.h864 unsigned blockheight = util_format_get_blockheight(format); local in function:util_format_get_nblocksy
865 return (y + blockheight - 1) / blockheight;
/xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/
H A Dvk_format.h217 unsigned blockheight = vk_format_get_blockheight(format); local in function:vk_format_get_block_count_height
218 return (height + blockheight - 1) / blockheight;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a6xx/
H A Dfd6_blitter.c381 int blockheight = util_format_get_blockheight(info->src.format); local in function:emit_blit_texture
405 sy1 = sbox->y / blockheight;
407 sy2 = DIV_ROUND_UP(sbox->y + sbox->height, blockheight) - 1;
410 dy1 = dbox->y / blockheight;
412 dy2 = DIV_ROUND_UP(dbox->y + dbox->height, blockheight) - 1;
415 uint32_t height = DIV_ROUND_UP(u_minify(src->base.height0, info->src.level), blockheight);
/xsrc/external/mit/MesaLib/dist/src/util/format/
H A Du_format.c66 int blockheight = util_format_get_blockheight(format); local in function:util_copy_rect
70 assert(blockheight > 0);
73 dst_y /= blockheight;
75 height = (height + blockheight - 1)/blockheight;
77 src_y /= blockheight;
H A Du_format.h903 unsigned blockheight = util_format_get_blockheight(format); local in function:util_format_get_nblocksy
904 return (y + blockheight - 1) / blockheight;
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
H A Du_surface.c108 int blockheight = desc->block.height; local in function:util_fill_rect
112 assert(blockheight > 0);
115 dst_y /= blockheight;
117 height = (height + blockheight - 1)/blockheight;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
H A Dsvga_resource_texture.c131 unsigned blockheight = local in function:svga_transfer_dma
134 h = st->hw_nblocksy * blockheight;
145 assert(y % blockheight == 0);
146 assert(h % blockheight == 0);
148 offset = y * st->base.stride / blockheight;
149 length = h * st->base.stride / blockheight;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
H A Dsvga_resource_texture.c137 unsigned blockheight = local in function:svga_transfer_dma
140 h = st->hw_nblocksy * blockheight;
151 assert(y % blockheight == 0);
152 assert(h % blockheight == 0);
154 offset = y * st->base.stride / blockheight;
155 length = h * st->base.stride / blockheight;
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D20.2.0.rst1692 - freedreno/a6xx: Fix UBWC blockheight for RG8.

Completed in 31 milliseconds