mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-11 17:07:57 -05:00
gl_state: Fixup multibind bug
This commit is contained in:
@ -461,7 +461,7 @@ void OpenGLState::ApplyTextures() const {
|
||||
|
||||
if (has_delta) {
|
||||
glBindTextures(static_cast<GLuint>(first), static_cast<GLsizei>(last - first + 1),
|
||||
textures.data());
|
||||
textures.data() + first);
|
||||
}
|
||||
}
|
||||
|
||||
@ -482,7 +482,7 @@ void OpenGLState::ApplySamplers() const {
|
||||
}
|
||||
if (has_delta) {
|
||||
glBindSamplers(static_cast<GLuint>(first), static_cast<GLsizei>(last - first + 1),
|
||||
samplers.data());
|
||||
samplers.data() + first);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user