mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-09 16:00:01 +00:00
spirv: Reduce log severity of mismatching denorm rules
This commit is contained in:
parent
7ac55c2a75
commit
3d822faea1
1 changed files with 2 additions and 2 deletions
|
@ -294,7 +294,7 @@ void SetupDenormControl(const Profile& profile, const IR::Program& program, Emit
|
||||||
Id main_func) {
|
Id main_func) {
|
||||||
const Info& info{program.info};
|
const Info& info{program.info};
|
||||||
if (info.uses_fp32_denorms_flush && info.uses_fp32_denorms_preserve) {
|
if (info.uses_fp32_denorms_flush && info.uses_fp32_denorms_preserve) {
|
||||||
LOG_ERROR(Shader_SPIRV, "Fp32 denorm flush and preserve on the same shader");
|
LOG_WARNING(Shader_SPIRV, "Fp32 denorm flush and preserve on the same shader");
|
||||||
} else if (info.uses_fp32_denorms_flush) {
|
} else if (info.uses_fp32_denorms_flush) {
|
||||||
if (profile.support_fp32_denorm_flush) {
|
if (profile.support_fp32_denorm_flush) {
|
||||||
ctx.AddCapability(spv::Capability::DenormFlushToZero);
|
ctx.AddCapability(spv::Capability::DenormFlushToZero);
|
||||||
|
@ -315,7 +315,7 @@ void SetupDenormControl(const Profile& profile, const IR::Program& program, Emit
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (info.uses_fp16_denorms_flush && info.uses_fp16_denorms_preserve) {
|
if (info.uses_fp16_denorms_flush && info.uses_fp16_denorms_preserve) {
|
||||||
LOG_ERROR(Shader_SPIRV, "Fp16 denorm flush and preserve on the same shader");
|
LOG_WARNING(Shader_SPIRV, "Fp16 denorm flush and preserve on the same shader");
|
||||||
} else if (info.uses_fp16_denorms_flush) {
|
} else if (info.uses_fp16_denorms_flush) {
|
||||||
if (profile.support_fp16_denorm_flush) {
|
if (profile.support_fp16_denorm_flush) {
|
||||||
ctx.AddCapability(spv::Capability::DenormFlushToZero);
|
ctx.AddCapability(spv::Capability::DenormFlushToZero);
|
||||||
|
|
Loading…
Reference in a new issue