mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 13:39:59 +00:00
gl_rasterizer: Make DrawParameters rasterizer instance const
This commit is contained in:
parent
2e39c20da5
commit
2b9d4088ec
1 changed files with 1 additions and 1 deletions
|
@ -655,7 +655,7 @@ void RasterizerOpenGL::DrawArrays() {
|
|||
SetupVertexBuffer(vertex_array);
|
||||
const GLintptr index_buffer_offset = SetupIndexBuffer();
|
||||
|
||||
DrawParameters params = SetupDraw(index_buffer_offset);
|
||||
const DrawParameters params = SetupDraw(index_buffer_offset);
|
||||
texture_cache.GuardSamplers(true);
|
||||
SetupShaders(params.primitive_mode);
|
||||
texture_cache.GuardSamplers(false);
|
||||
|
|
Loading…
Reference in a new issue