mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +12:00
Maintain device resolution on window resize for OpenGl
This commit is contained in:
parent
1a40deccb1
commit
f4bc048b8b
2 changed files with 17 additions and 2 deletions
|
@ -542,6 +542,10 @@ void RendererGL::drawVertices(PICA::PrimType primType, std::span<const Vertex> v
|
||||||
}
|
}
|
||||||
|
|
||||||
void RendererGL::display() {
|
void RendererGL::display() {
|
||||||
|
|
||||||
|
static u32 lastWidth = outputWindowWidth;
|
||||||
|
static u32 lastHeight = outputWindowHeight;
|
||||||
|
|
||||||
gl.disableScissor();
|
gl.disableScissor();
|
||||||
gl.disableBlend();
|
gl.disableBlend();
|
||||||
gl.disableDepth();
|
gl.disableDepth();
|
||||||
|
@ -580,9 +584,18 @@ void RendererGL::display() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if constexpr (!Helpers::isHydraCore()) {
|
if constexpr (!Helpers::isHydraCore()) {
|
||||||
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, 0);
|
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, 0);
|
||||||
screenFramebuffer.bind(OpenGL::ReadFramebuffer);
|
screenFramebuffer.bind(OpenGL::ReadFramebuffer);
|
||||||
glBlitFramebuffer(0, 0, 400, 480, 0, 0, outputWindowWidth, outputWindowHeight, GL_COLOR_BUFFER_BIT, GL_LINEAR);
|
|
||||||
|
const u32 newX0 = (outputWindowWidth - 400) / 2;
|
||||||
|
const u32 newY0 = (outputWindowHeight - 480) / 2;
|
||||||
|
if(lastWidth != outputWindowWidth || lastHeight != outputWindowHeight) {
|
||||||
|
lastHeight = outputWindowHeight;
|
||||||
|
lastWidth = outputWindowWidth;
|
||||||
|
glClear(GL_COLOR_BUFFER_BIT);
|
||||||
|
}
|
||||||
|
|
||||||
|
glBlitFramebuffer(0, 0, 400, 480, newX0, newY0, newX0 + 400, newY0 + 480, GL_COLOR_BUFFER_BIT, GL_LINEAR);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -101,6 +101,8 @@ FrontendSDL::FrontendSDL() : keyboardMappings(InputMappings::defaultKeyboardMapp
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
SDL_SetWindowMinimumSize(window, 400, 480);
|
||||||
|
|
||||||
emu.initGraphicsContext(window);
|
emu.initGraphicsContext(window);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue