summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_vulkan/renderer_vulkan.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* renderer_vulkan: assume X11 if not Windows/macOS after bf1d66b7c074Jan Beich2020-04-191-3/+3
| | | | | | Render.Vulkan <Error> video_core/renderer_vulkan/renderer_vulkan.cpp:CreateInstance:131: Presentation not supported on this platform Render.Vulkan <Error> video_core/renderer_vulkan/renderer_vulkan.cpp:CreateSurface:378: Presentation not supported on this platform Core <Critical> core/core.cpp:Load:199: Failed to initialize system (Error 5)!
* renderer_vulkan: Drop Vulkan-HppReinUsesLisp2020-04-111-90/+67
|
* yuzu: Drop SDL2 and Qt frontend Vulkan requirementsReinUsesLisp2020-04-071-43/+170
| | | | Create Vulkan instances and surfaces from the Vulkan backend.
* renderer_vulkan: Query device names from the backendReinUsesLisp2020-04-071-0/+69
|
* Frontend/GPU: Refactor context managementJames Rowe2020-03-251-1/+2
| | | | | | | | | | | | | | | | | | | | 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
* vk_state_tracker: Initial implementationReinUsesLisp2020-02-281-2/+6
| | | | Add support for render targets and viewports.
* frontend: qt: bootmanager: Vulkan: Restore support for VK backend.bunnei2020-02-261-3/+12
|
* yuzu: Implement Vulkan frontendReinUsesLisp2020-01-291-0/+265
Adds a Qt and SDL2 frontend for Vulkan. It also finishes the missing bits on Vulkan initialization.