mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
Renderer: Improve null renderer performance (#646)
* Renderer: Improve null renderer performance * Update frontend_sdl.cpp
This commit is contained in:
parent
1a40deccb1
commit
4df171abfc
2 changed files with 9 additions and 5 deletions
|
@ -17,6 +17,10 @@ class RendererNull final : public Renderer {
|
||||||
void screenshot(const std::string& name) override;
|
void screenshot(const std::string& name) override;
|
||||||
void deinitGraphicsContext() override;
|
void deinitGraphicsContext() override;
|
||||||
|
|
||||||
|
// Tell the GPU core that we'll handle vertex fetch & shader execution in the renderer in order to speed up execution.
|
||||||
|
// Of course, we don't do this and geometry is never actually processed, since this is the null renderer.
|
||||||
|
virtual bool prepareForDraw(ShaderUnit& shaderUnit, PICA::DrawAcceleration* accel) override { return true; };
|
||||||
|
|
||||||
#ifdef PANDA3DS_FRONTEND_QT
|
#ifdef PANDA3DS_FRONTEND_QT
|
||||||
virtual void initGraphicsContext([[maybe_unused]] GL::Context* context) override {}
|
virtual void initGraphicsContext([[maybe_unused]] GL::Context* context) override {}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -29,8 +29,8 @@ FrontendSDL::FrontendSDL() : keyboardMappings(InputMappings::defaultKeyboardMapp
|
||||||
}
|
}
|
||||||
|
|
||||||
const EmulatorConfig& config = emu.getConfig();
|
const EmulatorConfig& config = emu.getConfig();
|
||||||
// We need OpenGL for software rendering or for OpenGL if it's enabled
|
// We need OpenGL for software rendering/null renderer or for the OpenGL renderer if it's enabled.
|
||||||
bool needOpenGL = config.rendererType == RendererType::Software;
|
bool needOpenGL = config.rendererType == RendererType::Software || config.rendererType == RendererType::Null;
|
||||||
#ifdef PANDA3DS_ENABLE_OPENGL
|
#ifdef PANDA3DS_ENABLE_OPENGL
|
||||||
needOpenGL = needOpenGL || (config.rendererType == RendererType::OpenGL);
|
needOpenGL = needOpenGL || (config.rendererType == RendererType::OpenGL);
|
||||||
#endif
|
#endif
|
||||||
|
@ -58,11 +58,11 @@ FrontendSDL::FrontendSDL() : keyboardMappings(InputMappings::defaultKeyboardMapp
|
||||||
emu.setOutputSize(windowWidth, windowHeight);
|
emu.setOutputSize(windowWidth, windowHeight);
|
||||||
|
|
||||||
if (needOpenGL) {
|
if (needOpenGL) {
|
||||||
// Demand 3.3 core for software renderer, or 4.1 core for OpenGL renderer (max available on MacOS)
|
// Demand 4.1 core for OpenGL renderer (max available on MacOS), 3.3 for the software & null renderers
|
||||||
// MacOS gets mad if we don't explicitly demand a core profile
|
// MacOS gets mad if we don't explicitly demand a core profile
|
||||||
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE);
|
||||||
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, config.rendererType == RendererType::Software ? 3 : 4);
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, config.rendererType == RendererType::OpenGL ? 4 : 3);
|
||||||
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, config.rendererType == RendererType::Software ? 3 : 1);
|
SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, config.rendererType == RendererType::OpenGL ? 1 : 3);
|
||||||
window = SDL_CreateWindow(windowTitle, windowX, windowY, windowWidth, windowHeight, SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE);
|
window = SDL_CreateWindow(windowTitle, windowX, windowY, windowWidth, windowHeight, SDL_WINDOW_OPENGL | SDL_WINDOW_RESIZABLE);
|
||||||
|
|
||||||
if (window == nullptr) {
|
if (window == nullptr) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue