mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 16:15:46 +00:00
glsl: Increase NUM_VARS that can be allocated
needed for HW:AoC.
This commit is contained in:
parent
2e8da9d3be
commit
dfa7abe1e7
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ static_assert(sizeof(Id) == sizeof(u32));
|
|||
|
||||
class VarAlloc {
|
||||
public:
|
||||
static constexpr size_t NUM_VARS = 511;
|
||||
static constexpr size_t NUM_VARS = 1023;
|
||||
struct UseTracker {
|
||||
size_t num_used{};
|
||||
std::bitset<NUM_VARS> var_use{};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue