HomeSort by: relevance | last modified time | path
    Searched defs:bpe (Results 1 - 14 of 14) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/gallium/winsys/radeon/drm/
radeon_drm_surface.c 35 tileb = 8 * 8 * surf->bpe;
68 unsigned bpe)
74 level_drm->pitch_bytes = level_ws->nblk_x * bpe;
80 unsigned bpe)
87 assert(level_drm->nblk_x * bpe == level_drm->pitch_bytes);
92 unsigned flags, unsigned bpe,
108 surf_drm->bpe = bpe;
158 bpe * surf_drm->nsamples);
185 surf_ws->bpe = surf_drm->bpe
380 unsigned fmask_flags, bpe; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/radeon/drm/
radeon_drm_surface.c 35 tileb = 8 * 8 * surf->bpe;
68 unsigned bpe)
74 level_drm->pitch_bytes = level_ws->nblk_x * bpe;
80 unsigned bpe)
87 assert(level_drm->nblk_x * bpe == level_drm->pitch_bytes);
92 unsigned flags, unsigned bpe,
108 surf_drm->bpe = bpe;
158 bpe * surf_drm->nsamples);
185 surf_ws->bpe = surf_drm->bpe
314 unsigned fmask_flags, bpe; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/amd/addrlib/src/
addrinterface.cpp 868 UINT_32 bpe = 0; local
874 bpe = pLib->GetBpe(format);
877 return bpe;
  /xsrc/external/mit/MesaLib.old/dist/src/amd/addrlib/src/
addrinterface.cpp 855 UINT_32 bpe = 0; local
861 bpe = pLib->GetBpe(format);
864 return bpe;
  /xsrc/external/mit/libdrm/dist/radeon/
radeon_surface.h 119 uint32_t bpe; member in struct:radeon_surface
  /xsrc/external/mit/MesaLib.old/dist/src/amd/common/
ac_surface.c 465 tileb = 8 * 8 * surf->bpe;
479 unsigned bpe = surf->bpe; local
490 (bpe >= 4 && bpe <= 8 && num_channels == 4) ||
492 (bpe == 2 && num_channels >= 3) ||
494 (bpe == 1 && num_channels == 1))
623 * blk_w, blk_h, bpe, flags.
681 switch (surf->bpe) {
693 AddrDccIn.bpp = AddrSurfInfoIn.bpp = surf->bpe * 8
    [all...]
ac_surface.h 175 unsigned bpe:5; member in struct:radeon_surf
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/
r600_texture.c 58 if (rdst->surface.bpe != rsrc->surface.bpe)
181 rtex->surface.bpe;
194 box->x / rtex->surface.blk_w) * rtex->surface.bpe;
211 unsigned i, bpe, flags = 0; local
218 bpe = 4; /* stencil is allocated separately on evergreen */
220 bpe = util_format_get_blocksize(ptex->format);
221 assert(util_is_power_of_two_or_zero(bpe));
248 flags, bpe, array_mode, surface);
254 pitch_in_bytes_override != surface->u.legacy.level[0].nblk_x * bpe) {
601 unsigned flags, bpe; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
si_texture.c 133 *stride = pitch * tex->surface.bpe;
144 tex->surface.bpe;
146 *stride = tex->surface.u.legacy.level[level].nblk_x * tex->surface.bpe;
159 tex->surface.bpe;
171 unsigned bpe; local
178 bpe = 4; /* stencil is allocated separately */
180 bpe = util_format_get_blocksize(ptex->format);
181 assert(util_is_power_of_two_or_zero(bpe));
198 bpe = 4;
232 if (sscreen->info.family == CHIP_STONEY && bpe == 16 && ptex->nr_samples >= 2
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
r600_texture.c 57 if (rdst->surface.bpe != rsrc->surface.bpe)
180 rtex->surface.bpe;
193 box->x / rtex->surface.blk_w) * rtex->surface.bpe;
210 unsigned i, bpe, flags = 0; local
217 bpe = 4; /* stencil is allocated separately on evergreen */
219 bpe = util_format_get_blocksize(ptex->format);
220 assert(util_is_power_of_two_or_zero(bpe));
249 flags, bpe, array_mode, surface);
255 pitch_in_bytes_override != surface->u.legacy.level[0].nblk_x * bpe) {
606 unsigned flags, bpe; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
si_texture.c 58 if (dst->surface.bpe != src->surface.bpe)
189 *stride = tex->surface.u.gfx9.surf_pitch * tex->surface.bpe;
201 box->x / tex->surface.blk_w) * tex->surface.bpe;
204 tex->surface.bpe;
217 box->x / tex->surface.blk_w) * tex->surface.bpe;
236 unsigned i, bpe, flags = 0; local
243 bpe = 4; /* stencil is allocated separately */
245 bpe = util_format_get_blocksize(ptex->format);
246 assert(util_is_power_of_two_or_zero(bpe));
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/amd/common/
ac_surface.c 796 tileb = 8 * 8 * surf->bpe;
809 unsigned bpe = surf->bpe; local
826 (bpe >= 4 && bpe <= 8 && num_channels == 4) ||
828 (bpe == 2 && num_channels >= 3) ||
830 (bpe == 1 && num_channels == 1))
956 * blk_w, blk_h, bpe, flags.
1017 switch (surf->bpe) {
1028 AddrDccIn.bpp = AddrSurfInfoIn.bpp = surf->bpe * 8
    [all...]
ac_surface.h 311 uint8_t bpe : 5; member in struct:radeon_surf
480 unsigned bpe, struct gfx9_meta_equation *equation,
  /xsrc/external/mit/MesaLib/dist/src/amd/addrlib/inc/
addrinterface.h 3602 UINT_32 bpe; ///< bits per element (e.g. block size for BCn format) member in struct:_ADDR2_COMPUTE_SLICE_PIPEBANKXOR_INPUT

Completed in 22 milliseconds