summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-05-18OpenGL: Enable Debug Context and Synchronous debugging when graphics debugging is enabled.Fernando Sahmkow1-0/+3
This commit aims to help easing debugging of driver crashes without having to modify existing code.
2020-04-07yuzu: Drop SDL2 and Qt frontend Vulkan requirementsReinUsesLisp1-6/+0
Create Vulkan instances and surfaces from the Vulkan backend.
2020-03-30Frontend: Don't call DoneCurrent if the context isnt already currentJames Rowe1-1/+9
2020-03-25Frontend/GPU: Refactor context managementJames Rowe1-8/+0
Changes the GraphicsContext to be managed by the GPU core. This eliminates the need for the frontends to fool around with tricky MakeCurrent/DoneCurrent calls that are dependent on the settings (such as async gpu option). This also refactors out the need to use QWidget::fromWindowContainer as that caused issues with focus and input handling. Now we use a regular QWidget and just access the native windowHandle() directly. Another change is removing the debug tool setting in FrameMailbox. Instead of trying to block the frontend until a new frame is ready, the core will now take over presentation and draw directly to the window if the renderer detects that its hooked by NSight or RenderDoc Lastly, since it was in the way, I removed ScopeAcquireWindowContext and replaced it with a simple subclass in GraphicsContext that achieves the same result
2020-02-26frontend: sdl2: emu_window: Implement separate presentation thread.bunnei1-20/+34
2020-01-29yuzu: Implement Vulkan frontendReinUsesLisp1-0/+7
Adds a Qt and SDL2 frontend for Vulkan. It also finishes the missing bits on Vulkan initialization.
2019-11-07yuzu_cmd: Use string_view instead of string for extensionsReinUsesLisp1-3/+3
Avoids potential allocations due to the usage of std::string on strings that we know at compile time. Most of these might fit in SSO, but it adds complexity that can be easily avoided with string views.
2019-11-07gl_rasterizer: Emulate viewport flipping with ARB_clip_controlReinUsesLisp1-0/+2
Emulates negative y viewports with ARB_clip_control. This allows us to more easily emulated pipelines with tessellation and/or geometry shader stages. It also avoids corrupting games with transform feedbacks and negative viewports (gl_Position.y was being modified).
2019-06-21video_core: Make ARB_buffer_storage a required extensionReinUsesLisp1-0/+4
2019-05-30rasterizer_opengl: Remove OpenGL core profileReinUsesLisp1-5/+1
2019-05-25yuzu_cmd: Split emu_window OpenGL implementation into its own fileReinUsesLisp1-0/+154