mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 10:30:00 +00: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
|
// Generate presentation sampler
|
||||||
present_sampler.Create();
|
present_sampler.Create();
|
||||||
glSamplerParameteri(present_sampler.handle, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
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
|
// Generate VBO handle for drawing
|
||||||
vertex_buffer.Create();
|
vertex_buffer.Create();
|
||||||
|
|
Loading…
Reference in a new issue