OpenGL Renderer: Fix bug where clear images were Y-flipped. (Regression from commit 3db6d56.)
This commit is contained in:
parent
8197174d69
commit
f84a804499
|
@ -4729,17 +4729,17 @@ Render3DError OpenGLRenderer_1_2::ClearUsingImage(const u16 *__restrict colorBuf
|
||||||
{
|
{
|
||||||
glReadBuffer(OGL_CI_FOGATTRIBUTES_ATTACHMENT_ID);
|
glReadBuffer(OGL_CI_FOGATTRIBUTES_ATTACHMENT_ID);
|
||||||
glDrawBuffer(OGL_FOGATTRIBUTES_ATTACHMENT_ID);
|
glDrawBuffer(OGL_FOGATTRIBUTES_ATTACHMENT_ID);
|
||||||
glBlitFramebufferEXT(0, GPU_FRAMEBUFFER_NATIVE_HEIGHT, GPU_FRAMEBUFFER_NATIVE_WIDTH, 0, 0, 0, (GLint)this->_framebufferWidth, (GLint)this->_framebufferHeight, GL_COLOR_BUFFER_BIT, GL_NEAREST);
|
glBlitFramebufferEXT(0, 0, GPU_FRAMEBUFFER_NATIVE_WIDTH, GPU_FRAMEBUFFER_NATIVE_HEIGHT, 0, 0, (GLint)this->_framebufferWidth, (GLint)this->_framebufferHeight, GL_COLOR_BUFFER_BIT, GL_NEAREST);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Blit the color buffer. Do this last so that color attachment 0 is set to the read FBO.
|
// Blit the color buffer. Do this last so that color attachment 0 is set to the read FBO.
|
||||||
glReadBuffer(OGL_CI_COLOROUT_ATTACHMENT_ID);
|
glReadBuffer(OGL_CI_COLOROUT_ATTACHMENT_ID);
|
||||||
glDrawBuffer(OGL_COLOROUT_ATTACHMENT_ID);
|
glDrawBuffer(OGL_COLOROUT_ATTACHMENT_ID);
|
||||||
glBlitFramebufferEXT(0, GPU_FRAMEBUFFER_NATIVE_HEIGHT, GPU_FRAMEBUFFER_NATIVE_WIDTH, 0, 0, 0, (GLint)this->_framebufferWidth, (GLint)this->_framebufferHeight, GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT, GL_NEAREST);
|
glBlitFramebufferEXT(0, 0, GPU_FRAMEBUFFER_NATIVE_WIDTH, GPU_FRAMEBUFFER_NATIVE_HEIGHT, 0, 0, (GLint)this->_framebufferWidth, (GLint)this->_framebufferHeight, GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT, GL_NEAREST);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
glBlitFramebufferEXT(0, GPU_FRAMEBUFFER_NATIVE_HEIGHT, GPU_FRAMEBUFFER_NATIVE_WIDTH, 0, 0, 0, (GLint)this->_framebufferWidth, (GLint)this->_framebufferHeight, GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT, GL_NEAREST);
|
glBlitFramebufferEXT(0, 0, GPU_FRAMEBUFFER_NATIVE_WIDTH, GPU_FRAMEBUFFER_NATIVE_HEIGHT, 0, 0, (GLint)this->_framebufferWidth, (GLint)this->_framebufferHeight, GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT, GL_NEAREST);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this->_enableMultisampledRendering)
|
if (this->_enableMultisampledRendering)
|
||||||
|
|
|
@ -401,7 +401,7 @@ out vec2 texCoord;\n\
|
||||||
\n\
|
\n\
|
||||||
void main()\n\
|
void main()\n\
|
||||||
{\n\
|
{\n\
|
||||||
texCoord = vec2(inTexCoord0.x, 1.0 - inTexCoord0.y);\n\
|
texCoord = inTexCoord0;\n\
|
||||||
gl_Position = vec4(inPosition, 0.0, 1.0);\n\
|
gl_Position = vec4(inPosition, 0.0, 1.0);\n\
|
||||||
}\n\
|
}\n\
|
||||||
"};
|
"};
|
||||||
|
@ -2966,13 +2966,13 @@ Render3DError OpenGLRenderer_3_2::ClearUsingImage(const u16 *__restrict colorBuf
|
||||||
// Blit the fog buffer
|
// Blit the fog buffer
|
||||||
glReadBuffer(OGL_CI_FOGATTRIBUTES_ATTACHMENT_ID);
|
glReadBuffer(OGL_CI_FOGATTRIBUTES_ATTACHMENT_ID);
|
||||||
glDrawBuffer(OGL_FOGATTRIBUTES_ATTACHMENT_ID);
|
glDrawBuffer(OGL_FOGATTRIBUTES_ATTACHMENT_ID);
|
||||||
glBlitFramebuffer(0, GPU_FRAMEBUFFER_NATIVE_HEIGHT, GPU_FRAMEBUFFER_NATIVE_WIDTH, 0, 0, 0, (GLint)this->_framebufferWidth, (GLint)this->_framebufferHeight, GL_COLOR_BUFFER_BIT, GL_NEAREST);
|
glBlitFramebuffer(0, 0, GPU_FRAMEBUFFER_NATIVE_WIDTH, GPU_FRAMEBUFFER_NATIVE_HEIGHT, 0, 0, (GLint)this->_framebufferWidth, (GLint)this->_framebufferHeight, GL_COLOR_BUFFER_BIT, GL_NEAREST);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Blit the color and depth/stencil buffers. Do this last so that color attachment 0 is set to the read FBO.
|
// Blit the color and depth/stencil buffers. Do this last so that color attachment 0 is set to the read FBO.
|
||||||
glReadBuffer(OGL_CI_COLOROUT_ATTACHMENT_ID);
|
glReadBuffer(OGL_CI_COLOROUT_ATTACHMENT_ID);
|
||||||
glDrawBuffer(OGL_COLOROUT_ATTACHMENT_ID);
|
glDrawBuffer(OGL_COLOROUT_ATTACHMENT_ID);
|
||||||
glBlitFramebuffer(0, GPU_FRAMEBUFFER_NATIVE_HEIGHT, GPU_FRAMEBUFFER_NATIVE_WIDTH, 0, 0, 0, (GLint)this->_framebufferWidth, (GLint)this->_framebufferHeight, GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT, GL_NEAREST);
|
glBlitFramebuffer(0, 0, GPU_FRAMEBUFFER_NATIVE_WIDTH, GPU_FRAMEBUFFER_NATIVE_HEIGHT, 0, 0, (GLint)this->_framebufferWidth, (GLint)this->_framebufferHeight, GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT | GL_STENCIL_BUFFER_BIT, GL_NEAREST);
|
||||||
|
|
||||||
if (this->_enableMultisampledRendering)
|
if (this->_enableMultisampledRendering)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue