Searched refs:blk_h (Results 1 - 25 of 34) sorted by relevance

12

/xsrc/external/mit/MesaLib/dist/src/amd/vulkan/winsys/amdgpu/
H A Dradv_amdgpu_surface.c42 if (!surf->blk_w || !surf->blk_h)
/xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/winsys/amdgpu/
H A Dradv_amdgpu_surface.c44 if (!surf->blk_w || !surf->blk_h)
/xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/amdgpu/drm/
H A Damdgpu_surface.c77 surf->blk_h = util_format_get_blockheight(tex->format);
/xsrc/external/mit/MesaLib/dist/src/gallium/winsys/amdgpu/drm/
H A Damdgpu_surface.c77 surf->blk_h = util_format_get_blockheight(tex->format);
/xsrc/external/mit/libdrm/dist/radeon/
H A Dradeon_surface.h115 uint32_t blk_h; member in struct:radeon_surface
H A Dradeon_surface.c177 surflevel->nblk_y = (surflevel->npix_y + surf->blk_h - 1) / surf->blk_h;
586 surflevel->nblk_y = (surflevel->npix_y + surf->blk_h - 1) / surf->blk_h;
1437 surflevel->nblk_y = (next_power_of_two(surflevel->npix_y) + surf->blk_h - 1) / surf->blk_h;
1441 surflevel->nblk_y = (surflevel->npix_y + surf->blk_h - 1) / surf->blk_h;
1487 surflevel->nblk_y = (next_power_of_two(surflevel->npix_y) + surf->blk_h - 1) / surf->blk_h;
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
H A Dcik_sdma.c135 dst_level, sdst->surface.blk_h);
137 src_level, ssrc->surface.blk_h);
139 unsigned srcy = src_box->y / ssrc->surface.blk_h;
142 unsigned copy_height = DIV_ROUND_UP(src_box->height, ssrc->surface.blk_h);
159 dsty /= sdst->surface.blk_h;
H A Dsi_dma.c276 src_box->height / ssrc->surface.blk_h,
/xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_surface.c104 surf_drm->blk_h = util_format_get_blockheight(tex->format);
184 surf_ws->blk_h = surf_drm->blk_h;
/xsrc/external/mit/MesaLib.old/dist/src/amd/common/
H A Dac_surface.h174 unsigned blk_h:4; member in struct:radeon_surf
H A Dac_surface.c484 surf->blk_w <= 2 && surf->blk_h == 1) {
486 if (surf->blk_w == 2 && surf->blk_h == 1)
623 * blk_w, blk_h, bpe, flags.
651 compressed = surf->blk_w == 4 && surf->blk_h == 4;
1469 compressed = surf->blk_w == 4 && surf->blk_h == 4;
/xsrc/external/mit/MesaLib/dist/src/gallium/winsys/radeon/drm/
H A Dradeon_drm_surface.c104 surf_drm->blk_h = util_format_get_blockheight(tex->format);
184 surf_ws->blk_h = surf_drm->blk_h;
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
H A Dsi_sdma_copy_image.c121 unsigned copy_height = DIV_ROUND_UP(ssrc->buffer.b.b.height0, ssrc->surface.blk_h);
157 unsigned tiled_height = DIV_ROUND_UP(tiled->buffer.b.b.height0, tiled->surface.blk_h);
250 unsigned copy_height = DIV_ROUND_UP(ssrc->buffer.b.b.height0, ssrc->surface.blk_h);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dtexcompress_astc.cpp1835 unsigned blk_w, blk_h; local in function:_mesa_unpack_astc_2d_ldr
1836 _mesa_get_format_block_size(format, &blk_w, &blk_h);
1840 unsigned y_blocks = (src_height + blk_h - 1) / blk_h;
1842 Decoder dec(blk_w, blk_h, 1, srgb, true);
1853 unsigned dst_blk_h = MIN2(blk_h, src_height - y*blk_h);
1869 dst_row += dst_stride * blk_h;
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dtexcompress_astc.cpp1836 unsigned blk_w, blk_h; local in function:_mesa_unpack_astc_2d_ldr
1837 _mesa_get_format_block_size(format, &blk_w, &blk_h);
1841 unsigned y_blocks = (src_height + blk_h - 1) / blk_h;
1843 Decoder dec(blk_w, blk_h, 1, srgb, true);
1854 unsigned dst_blk_h = MIN2(blk_h, src_height - y*blk_h);
1870 dst_row += dst_stride * blk_h;
/xsrc/external/mit/MesaLib/dist/src/amd/common/
H A Dac_surface.h310 uint8_t blk_h : 4; member in struct:radeon_surf
H A Dac_surface_modifier_test.c250 .blk_h = 1,
H A Dac_surface.c820 surf->blk_h == 1) {
822 if (surf->blk_w == 2 && surf->blk_h == 1)
956 * blk_w, blk_h, bpe, flags.
982 compressed = surf->blk_w == 4 && surf->blk_h == 4;
2042 compressed = surf->blk_w == 4 && surf->blk_h == 4;
2924 "blk_h=%u, bpe=%u, flags=0x%"PRIx64"\n",
2928 surf->blk_w, surf->blk_h, surf->bpe, surf->flags);
2966 " Surf: size=%" PRIu64 ", alignment=%u, blk_w=%u, blk_h=%u, "
2969 surf->blk_h, surf->bpe, surf->flags);
/xsrc/external/mit/xf86-video-ati-kms/dist/src/
H A Dradeon_bo_helper.c122 surface->blk_h = 1;
/xsrc/external/mit/xf86-video-ati/dist/src/
H A Dradeon_exa.c508 surface.blk_h = 1;
H A Ddrmmode_display.c84 surface->blk_h = 1;
1303 surface.blk_h = 1;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
H A Dst_cb_texture.c300 unsigned blk_w, blk_h; local in function:st_MapTextureImage
301 _mesa_get_format_block_size(texImage->TexFormat, &blk_w, &blk_h);
303 unsigned y_blocks = DIV_ROUND_UP(texImage->Height2, blk_h);
310 (z * y_blocks + (y / blk_h)) * stride +
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
H A Dst_cb_texture.c593 unsigned blk_w, blk_h; local in function:st_MapTextureImage
594 _mesa_get_format_block_size(texImage->TexFormat, &blk_w, &blk_h);
596 unsigned y_blocks = DIV_ROUND_UP(texImage->Height2, blk_h);
604 (z * y_blocks + (y / blk_h)) * stride +
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
H A Dr600_texture.c191 (box->y / rtex->surface.blk_h *
834 "blk_h=%u, array_size=%u, last_level=%u, "
838 rtex->surface.blk_h,
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/
H A Dr600_texture.c192 (box->y / rtex->surface.blk_h *
829 "blk_h=%u, array_size=%u, last_level=%u, "
833 rtex->surface.blk_h,

Completed in 55 milliseconds

12