Fixes new VKCTS coverage dEQP-VK.glsl.builtin_var.frontfacing.*.
Fixes: af375c6756 ("radv: Optimize fs builtins using static gfx state")
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39041>
74 lines
2.0 KiB
C
74 lines
2.0 KiB
C
/*
|
|
* Copyright © 2025 Valve Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include "nir/nir.h"
|
|
#include "nir/nir_builder.h"
|
|
#include "radv_nir.h"
|
|
#include "radv_pipeline_graphics.h"
|
|
|
|
typedef struct {
|
|
const struct radv_graphics_state_key *gfx;
|
|
unsigned vgt_outprim_type;
|
|
} opt_fs_builtins_state;
|
|
|
|
static bool
|
|
pass(nir_builder *b, nir_intrinsic_instr *intr, void *data)
|
|
{
|
|
opt_fs_builtins_state *state = data;
|
|
|
|
b->cursor = nir_before_instr(&intr->instr);
|
|
|
|
nir_def *replacement = NULL;
|
|
if (intr->intrinsic == nir_intrinsic_load_front_face || intr->intrinsic == nir_intrinsic_load_front_face_fsign) {
|
|
int force_front_face = 0;
|
|
|
|
switch (state->vgt_outprim_type) {
|
|
case V_028A6C_POINTLIST:
|
|
case V_028A6C_LINESTRIP:
|
|
force_front_face = 1;
|
|
break;
|
|
case V_028A6C_TRISTRIP:
|
|
if (state->gfx->rs.cull_mode == VK_CULL_MODE_FRONT_BIT) {
|
|
force_front_face = -1;
|
|
} else if (state->gfx->rs.cull_mode == VK_CULL_MODE_BACK_BIT) {
|
|
force_front_face = 1;
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (force_front_face) {
|
|
if (intr->intrinsic == nir_intrinsic_load_front_face) {
|
|
replacement = nir_imm_bool(b, force_front_face == 1);
|
|
} else {
|
|
replacement = nir_imm_float(b, force_front_face == 1 ? 1.0 : -1.0);
|
|
}
|
|
}
|
|
} else if (intr->intrinsic == nir_intrinsic_load_sample_id) {
|
|
if (!state->gfx->dynamic_rasterization_samples && state->gfx->ms.rasterization_samples == 0) {
|
|
replacement = nir_imm_intN_t(b, 0, intr->def.bit_size);
|
|
}
|
|
}
|
|
|
|
if (!replacement)
|
|
return false;
|
|
|
|
nir_def_replace(&intr->def, replacement);
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
radv_nir_opt_fs_builtins(nir_shader *shader, const struct radv_graphics_state_key *gfx_state, unsigned vgt_outprim_type)
|
|
{
|
|
opt_fs_builtins_state state = {
|
|
.gfx = gfx_state,
|
|
.vgt_outprim_type = vgt_outprim_type,
|
|
};
|
|
|
|
return nir_shader_intrinsics_pass(shader, pass, nir_metadata_control_flow, &state);
|
|
}
|