mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2024-11-15 23:30:05 +00:00
gl_rasterizer: Add oglEnablei helper
This commit is contained in:
parent
1698143a1d
commit
b95f064b51
@ -92,6 +92,10 @@ void oglEnable(GLenum cap, bool state) {
|
||||
(state ? glEnable : glDisable)(cap);
|
||||
}
|
||||
|
||||
void oglEnablei(GLenum cap, bool state, GLuint index) {
|
||||
(state ? glEnablei : glDisablei)(cap, index);
|
||||
}
|
||||
|
||||
} // Anonymous namespace
|
||||
|
||||
RasterizerOpenGL::RasterizerOpenGL(Core::System& system, Core::Frontend::EmuWindow& emu_window,
|
||||
|
Loading…
Reference in New Issue
Block a user