Revert "[vulkan] Added conservative path for RoundingModeRTZ + instrumentalization for shaders use"

This commit is contained in:
CamilleLaVey 2026-03-08 01:21:36 -04:00
parent 825b899bf8
commit 1aae75512b
4 changed files with 0 additions and 4 deletions

View file

@ -509,7 +509,6 @@ std::vector<u32> EmitSPIRV(const Profile& profile, const RuntimeInfo& runtime_in
if (profile.support_float_controls) {
ctx.AddExtension("SPV_KHR_float_controls");
SetupDenormControl(profile, program, ctx, main);
SetupRoundingControl(profile, program, ctx, main);
SetupSignedNanCapabilities(profile, program, ctx, main);
}
SetupCapabilities(profile, program.info, ctx);

View file

@ -21,7 +21,6 @@ struct Profile {
bool support_float_controls{};
bool support_separate_denorm_behavior{};
bool support_separate_rounding_mode{};
bool support_fp32_rounding_rtz{};
bool support_fp16_denorm_preserve{};
bool support_fp32_denorm_preserve{};
bool support_fp16_denorm_flush{};