mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 20:55:45 +00:00
gl_shader_manager: Zero initialize current assembly programs
This commit is contained in:
parent
bde1749606
commit
d4bc962012
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ private:
|
|||
GLuint current_source_program = 0;
|
||||
|
||||
u32 current_assembly_mask = 0;
|
||||
std::array<GLuint, NUM_STAGES> current_assembly_programs;
|
||||
std::array<GLuint, NUM_STAGES> current_assembly_programs{};
|
||||
GLuint current_compute_assembly_program = 0;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue