summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_base.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-10-03vk_present_manager: recreate surface on any surface lossLiam1-3/+0
2023-06-03android: renderer_vulkan: Fix crash with surface recreation.bunnei1-0/+3
2023-06-03core: frontend: Refactor GraphicsContext to its own module.bunnei1-1/+1
2022-07-27chore: make yuzu REUSE compliantAndrea Pappacoda1-3/+2
[REUSE] is a specification that aims at making file copyright information consistent, so that it can be both human and machine readable. It basically requires that all files have a header containing copyright and licensing information. When this isn't possible, like when dealing with binary assets, generated files or embedded third-party dependencies, it is permitted to insert copyright information in the `.reuse/dep5` file. Oh, and it also requires that all the licenses used in the project are present in the `LICENSES` folder, that's why the diff is so huge. This can be done automatically with `reuse download --all`. The `reuse` tool also contains a handy subcommand that analyzes the project and tells whether or not the project is (still) compliant, `reuse lint`. Following REUSE has a few advantages over the current approach: - Copyright information is easy to access for users / downstream - Files like `dist/license.md` do not need to exist anymore, as `.reuse/dep5` is used instead - `reuse lint` makes it easy to ensure that copyright information of files like binary assets / images is always accurate and up to date To add copyright information of files that didn't have it I looked up who committed what and when, for each file. As yuzu contributors do not have to sign a CLA or similar I couldn't assume that copyright ownership was of the "yuzu Emulator Project", so I used the name and/or email of the commit author instead. [REUSE]: https://reuse.software Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
2022-04-18bootmanager: Don't create another screenshot request if previous one is not done yetgerman771-0/+3
2022-02-02general: Replace NonCopyable struct with equivalentsLioncash1-2/+6
2021-07-29renderers: Add explicit invert_y bool to screenshot callbackameerj1-2/+2
OpenGL and Vulkan images render in different coordinate systems. This allows us to specify the coordinate system of the screenshot within each renderer
2021-07-24renderer_base: Removed redundant settingsameerj1-3/+0
use_framelimiter was not being used internally by the renderers. set_background_color was always set to true as there is no toggle for the renderer background color, instead users directly choose the color of their choice.
2021-06-21video_core: Add GPU vendor name to window title barameerj1-0/+2
2021-02-13gpu: Report renderer errors with exceptionsReinUsesLisp1-15/+2
Instead of using a two step initialization to report errors, initialize the GPU renderer and rasterizer on the constructor and report errors through std::runtime_error.
2020-11-17render_base: Make use of [[nodiscard]] where applicableLioncash1-11/+11
2020-09-20renderer_opengl: Remove emulated mailbox presentationReinUsesLisp1-5/+0
Emulated mailbox presentation was causing performance issues on Nvidia's OpenGL driver. Remove it.
2020-08-22video_core: Initialize renderer with a GPUReinUsesLisp1-3/+14
Add an extra step in GPU initialization to be able to initialize render backends with a valid GPU instance.
2020-03-25Frontend/GPU: Refactor context managementJames Rowe1-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
2020-02-26renderer_opengl: Add texture mailbox support for presenter thread.bunnei1-3/+7
2019-08-21gpu: Change optional<reference_wrapper<T>> to T* for FramebufferConfigReinUsesLisp1-2/+1
2018-12-18yuzu, video_core: Screenshot functionalityzhupengfei1-0/+27
Allows capturing screenshot at the current internal resolution (native for software renderer), but a setting is available to capture it in other resolutions. The screenshot is saved to a single PNG in the current layout.
2018-10-30global: Use std::optional instead of boost::optional (#1578)Frederic L1-2/+4
* get rid of boost::optional * Remove optional references * Use std::reference_wrapper for optional references * Fix clang format * Fix clang format part 2 * Adressed feedback * Fix clang format and MacOS build
2018-09-09Port Citra #4047 & #4052: add change background color supporttech4me1-0/+1
2018-08-21renderer_base: Make creation of the rasterizer, the responsibility of the renderers themselvesLioncash1-3/+0
Given we use a base-class type within the renderer for the rasterizer (RasterizerInterface), we want to allow renderers to perform more complex initialization if they need to do such a thing. This makes it important to reserve type information. Given the OpenGL renderer is quite simple settings-wise, this is just a simple shuffling of the initialization code. For something like Vulkan however this might involve doing something like: // Initialize and call rasterizer-specific function that requires // the full type of the instance created. auto raster = std::make_unique<VulkanRasterizer>(some, params); raster->CallSomeVulkanRasterizerSpecificFunction(); // Assign to base class variable rasterizer = std::move(raster)
2018-08-12core: Namespace EmuWindowLioncash1-2/+4
Gets the class out of the global namespace.
2018-08-11video_core; Get rid of global g_toggle_framelimit_enabled variableLioncash1-5/+16
Instead, we make a struct for renderer settings and allow the renderer to update all of these settings, getting rid of the need for global-scoped variables. This also uncovered a few indirect inclusions for certain headers, which this commit also fixes.
2018-08-11renderer_base: Remove unused kFramebuffer enumerationLioncash1-3/+0
This is entirely unused and can be removed.
2018-08-04renderer_base: Make Rasterizer() return the rasterizer by referenceLioncash1-2/+6
All calling code assumes that the rasterizer will be in a valid state, which is a totally fine assumption. The only way the rasterizer wouldn't be is if initialization is done incorrectly or fails, which is checked against in System::Init().
2018-08-04video_core: Eliminate the g_renderer global variableLioncash1-2/+6
We move the initialization of the renderer to the core class, while keeping the creation of it and any other specifics in video_core. This way we can ensure that the renderer is initialized and doesn't give unfettered access to the renderer. This also makes dependencies on types more explicit. For example, the GPU class doesn't need to depend on the existence of a renderer, it only needs to care about whether or not it has a rasterizer, but since it was accessing the global variable, it was also making the renderer a part of its dependency chain. By adjusting the interface, we can get rid of this dependency.
2018-08-02video_core: Make global EmuWindow instance part of the base renderer classLioncash1-9/+6
Makes the global a member of the RendererBase class. We also change this to be a reference. Passing any form of null pointer to these functions is incorrect entirely, especially given the code itself assumes that the pointer would always be in a valid state. This also makes it easier to follow the lifecycle of instances being used, as we explicitly interact the renderer with the rasterizer, rather than it just operating on a global pointer.
2018-03-23video_core: Move FramebufferInfo to FramebufferConfig in GPU.bunnei1-31/+2
2018-03-23renderer: Create rasterizer and cleanup.bunnei1-1/+6
2018-02-12renderer_opengl: Support framebuffer flip vertical.bunnei1-0/+1
2018-01-15renderer: Render previous frame when no new one is available.bunnei1-1/+2
2018-01-13Remove references to PICA and rasterizers in video_coreJames Rowe1-6/+1
2018-01-11renderer_opengl: Support rendering Switch framebuffer.bunnei1-2/+5
2018-01-11render_base: Add a struct describing framebuffer metadata.bunnei1-0/+26
2016-09-21Remove empty newlines in #include blocks.Emmanuel Gil Peyrot1-2/+0
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
2016-09-19Manually tweak source formatting and then re-run clang-formatYuri Kunde Schlesner1-2/+1
2016-09-18Sources: Run clang-format on everything.Emmanuel Gil Peyrot1-8/+3
2016-03-09renderer_base: In-class initialize variablesLioncash1-5/+2
2016-03-09render_base: Clarify/normalize getter functionsLioncash1-2/+2
2016-03-09renderer_base: Don't directly expose the rasterizer unique_ptrLioncash1-2/+5
There's no reason to allow direct access to the unique_ptr instance. Only its contained pointer.
2016-03-08Improve error report from Init() functionsLittleWhite1-1/+1
Add error popup when citra initialization failed
2015-12-08VideoCore: Unify interface to OpenGL and SW rasterizersYuri Kunde Schlesner1-2/+6
This removes explicit checks sprinkled all over the codebase to instead just have the SW rasterizer expose an implementation with no-ops for most operations.
2015-06-28Core: Cleanup hw includes.Emmanuel Gil Peyrot1-0/+2
2015-06-28CitraQt: Cleanup includes.Emmanuel Gil Peyrot1-0/+2
2015-05-23OpenGL renderertfarley1-0/+4
2015-05-07Common: Remove common.hYuri Kunde Schlesner1-1/+1
2014-12-21License changepurpasmart961-1/+1
2014-11-19Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generatedEmmanuel Gil Peyrot1-1/+1
2014-10-12Remove virtual inheritance from RendererOpenGLYuri Kunde Schlesner1-1/+1
Also make destructor virtual so that instances are properly destructed.
2014-04-28removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable classbunnei1-3/+1
2014-04-09fixed project includes to use new directory structurebunnei1-2/+1
2014-04-09got rid of 'src' folders in each sub-projectbunnei1-0/+0
2014-04-09fixed license header in video_corebunnei1-23/+3
2014-04-09- removed lots of unused code from gekkobunnei1-63/+9
- updated code style/naming conventions
2014-04-06added initial renderer codebunnei1-5/+21
2014-04-05added video_core project to solutionbunnei1-0/+116