mirror of
https://github.com/zhaobot/yuzu.git
synced 2025-01-27 15:17:03 -03:00
OpenGL: set linear mag filter when blitting a downscaled image.
This commit is contained in:
parent
117f8ee7a4
commit
cee7eba64e
1 changed files with 1 additions and 0 deletions
|
@ -257,6 +257,7 @@ void RendererOpenGL::InitOpenGLObjects() {
|
|||
// Generate presentation sampler
|
||||
present_sampler.Create();
|
||||
glSamplerParameteri(present_sampler.handle, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
||||
glSamplerParameteri(present_sampler.handle, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
||||
|
||||
// Generate VBO handle for drawing
|
||||
vertex_buffer.Create();
|
||||
|
|
Loading…
Add table
Reference in a new issue