zink: Fix validation failure for maxLod < minLod.
GL lets you set a silly state, so do something plausible instead of undefined. Cc: mesa-stable Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20756>
This commit is contained in:
@@ -369,7 +369,7 @@ zink_create_sampler_state(struct pipe_context *pctx,
|
||||
} else if (state->min_mip_filter != PIPE_TEX_MIPFILTER_NONE) {
|
||||
sci.mipmapMode = sampler_mipmap_mode(state->min_mip_filter);
|
||||
sci.minLod = state->min_lod;
|
||||
sci.maxLod = state->max_lod;
|
||||
sci.maxLod = MAX2(state->max_lod, state->min_lod);
|
||||
} else {
|
||||
sci.mipmapMode = VK_SAMPLER_MIPMAP_MODE_NEAREST;
|
||||
sci.minLod = 0;
|
||||
|
Reference in New Issue
Block a user