summaryrefslogtreecommitdiffstats
path: root/src/shader_recompiler/frontend/ir/modifiers.h
blob: c288eede0333d3d920ef80d77ea1a1ca898d1041 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

namespace Shader::IR {

enum class FmzMode : u8 {
    None, // Denorms are not flushed, NAN is propagated (nouveau)
    FTZ,  // Flush denorms to zero, NAN is propagated (D3D11, NVN, GL, VK)
    FMZ,  // Flush denorms to zero, x * 0 == 0 (D3D9)
};

enum class FpRounding : u8 {
    RN, // Round to nearest even,
    RM, // Round towards negative infinity
    RP, // Round towards positive infinity
    RZ, // Round towards zero
};

struct FpControl {
    bool no_contraction{false};
    FpRounding rounding{FpRounding::RN};
    FmzMode fmz_mode{FmzMode::FTZ};
};
static_assert(sizeof(FpControl) <= sizeof(u32));
} // namespace Shader::IR