mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
astc: Make IntegerEncodedValue constructor constexpr
This commit is contained in:
parent
5ed377b989
commit
70a31eda62
1 changed files with 6 additions and 5 deletions
|
@ -162,16 +162,17 @@ enum class IntegerEncoding { JustBits, Qus32, Trit };
|
|||
|
||||
class IntegerEncodedValue {
|
||||
private:
|
||||
IntegerEncoding m_Encoding;
|
||||
u32 m_NumBits;
|
||||
u32 m_BitValue;
|
||||
IntegerEncoding m_Encoding{};
|
||||
u32 m_NumBits = 0;
|
||||
u32 m_BitValue = 0;
|
||||
union {
|
||||
u32 m_Qus32Value;
|
||||
u32 m_Qus32Value = 0;
|
||||
u32 m_TritValue;
|
||||
};
|
||||
|
||||
public:
|
||||
IntegerEncodedValue(IntegerEncoding encoding, u32 numBits)
|
||||
constexpr IntegerEncodedValue() = default;
|
||||
constexpr IntegerEncodedValue(IntegerEncoding encoding, u32 numBits)
|
||||
: m_Encoding(encoding), m_NumBits(numBits) {}
|
||||
|
||||
IntegerEncoding GetEncoding() const {
|
||||
|
|
Loading…
Reference in a new issue