mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-09 23:30:13 +01:00
panfrost: Set sample_count when packing bifrost texture descriptors
Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com> Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7653>
This commit is contained in:
parent
9e3d2a7d9b
commit
864f4e2b15
1 changed files with 2 additions and 0 deletions
|
|
@ -476,6 +476,8 @@ panfrost_new_texture_bifrost(
|
|||
cfg.height = u_minify(height, first_level);
|
||||
if (dim == MALI_TEXTURE_DIMENSION_3D)
|
||||
cfg.depth = u_minify(depth, first_level);
|
||||
else
|
||||
cfg.sample_count = MAX2(nr_samples, 1);
|
||||
cfg.swizzle = swizzle;
|
||||
cfg.texel_ordering = panfrost_modifier_to_layout(modifier);
|
||||
cfg.levels = last_level - first_level;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue