[GPU] Make RegisterFile::kRegisterCount constexpr

This commit is contained in:
Triang3l 2022-05-08 19:37:29 +03:00
parent 72cf75f365
commit 2473496c7e
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class RegisterFile {
static const RegisterInfo* GetRegisterInfo(uint32_t index);
static const size_t kRegisterCount = 0x5003;
static constexpr size_t kRegisterCount = 0x5003;
union RegisterValue {
uint32_t u32;
float f32;