mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
radv: do not set DISABLE_LSB_CEIL on GFX9
The state no longer exists on GFX9. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
This commit is contained in:
parent
319f56e675
commit
f5955c6bf8
1 changed files with 1 additions and 1 deletions
|
|
@ -3439,7 +3439,7 @@ radv_init_sampler(struct radv_device *device,
|
|||
S_008F38_XY_MIN_FILTER(radv_tex_filter(pCreateInfo->minFilter, max_aniso)) |
|
||||
S_008F38_MIP_FILTER(radv_tex_mipfilter(pCreateInfo->mipmapMode)) |
|
||||
S_008F38_MIP_POINT_PRECLAMP(0) |
|
||||
S_008F38_DISABLE_LSB_CEIL(1) |
|
||||
S_008F38_DISABLE_LSB_CEIL(device->physical_device->rad_info.chip_class <= VI) |
|
||||
S_008F38_FILTER_PREC_FIX(1) |
|
||||
S_008F38_ANISO_OVERRIDE(is_vi));
|
||||
sampler->state[3] = (S_008F3C_BORDER_COLOR_PTR(0) |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue