summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_state_tracker.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ir/texture_pass: Use host_info instead of querying Settings::values (#9176)Morph2022-11-111-2/+2
|
* Fix stencil func registers, make clip control equivalent to how it was before, but surely wrong.Kelebek12022-10-101-8/+6
|
* Update 3D regsKelebek12022-10-071-27/+30
|
* state_tracker: workaround channel setup for homebrewLiam2022-10-061-1/+1
|
* OpenGl: Implement Channels.Fernando Sahmkow2022-10-061-4/+13
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* shader: Accelerate pipeline transitions and use dirty flags for shadersReinUsesLisp2021-07-231-6/+0
|
* video_core: Reimplement the buffer cacheReinUsesLisp2021-02-131-22/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Reimplement the buffer cache using cached bindings and page level granularity for modification tracking. This also drops the usage of shared pointers and virtual functions from the cache. - Bindings are cached, allowing to skip work when the game changes few bits between draws. - OpenGL Assembly shaders no longer copy when a region has been modified from the GPU to emulate constant buffers, instead GL_EXT_memory_object is used to alias sub-buffers within the same allocation. - OpenGL Assembly shaders stream constant buffer data using glProgramBufferParametersIuivNV, from NV_parameter_buffer_object. In theory this should save one hash table resolve inside the driver compared to glBufferSubData. - A new OpenGL stream buffer is implemented based on fences for drivers that are not Nvidia's proprietary, due to their low performance on partial glBufferSubData calls synchronized with 3D rendering (that some games use a lot). - Most optimizations are shared between APIs now, allowing Vulkan to cache more bindings than before, skipping unnecesarry work. This commit adds the necessary infrastructure to use Vulkan object from OpenGL. Overall, it improves performance and fixes some bugs present on the old cache. There are still some edge cases hit by some games that harm performance on some vendors, this are planned to be fixed in later commits.
* video_core: Rewrite the texture cacheReinUsesLisp2020-12-301-0/+7
| | | | | | | | | | | | | | The current texture cache has several points that hurt maintainability and performance. It's easy to break unrelated parts of the cache when doing minor changes. The cache can easily forget valuable information about the cached textures by CPU writes or simply by its normal usage.The current texture cache has several points that hurt maintainability and performance. It's easy to break unrelated parts of the cache when doing minor changes. The cache can easily forget valuable information about the cached textures by CPU writes or simply by its normal usage. This commit aims to address those issues.
* video_core: Adjust `NUM` macro to avoid Clang warningcomex2020-12-071-1/+1
| | | | | | | | | | | | | | | | The previous definition was: #define NUM(field_name) (sizeof(Maxwell3D::Regs::field_name) / sizeof(u32)) In cases where `field_name` happens to refer to an array, Clang thinks `sizeof(an array value) / sizeof(a type)` is an instance of the idiom where `sizeof` is used to compute an array length. So it thinks the type in the denominator ought to be the array element type, and warns if it isn't, assuming this is a mistake. In reality, `NUM` is not used to get array lengths at all, so there is no mistake. Silence the warning by applying Clang's suggested workaround of parenthesizing the denominator.
* video_core: Remove all Core::System references in rendererReinUsesLisp2020-09-061-4/+2
| | | | | | | | | Now that the GPU is initialized when video backends are initialized, it's no longer needed to query components once the game is running: it can be done when yuzu is booting. This allows us to pass components between constructors and in the process remove all Core::System references in the video backend.
* gl_rasterizer: Implement line widths and smooth linesReinUsesLisp2020-04-131-0/+7
| | | | | Implements "legacy" features from OpenGL present on hardware such as smooth lines and line width.
* DirtyFlags: relax need to set render_targets as dirty Fernando Sahmkow2020-03-141-1/+0
| | | | | The texture cache already takes care of setting a render target to dirty when invalidated.
* gl_rasterizer: Implement polygon modes and fill rectanglesReinUsesLisp2020-03-101-0/+10
|
* dirty_flags: Deduplicate code between OpenGL and VulkanReinUsesLisp2020-02-281-38/+1
|
* state_tracker: Remove type traits with named structuresReinUsesLisp2020-02-281-4/+2
|
* gl_state_tracker: Implement dirty flags for depth clamp enablingReinUsesLisp2020-02-281-0/+5
|
* gl_state_tracker: Implement dirty flags for clip controlReinUsesLisp2020-02-281-0/+7
|
* gl_state_tracker: Implement dirty flags for point sizesReinUsesLisp2020-02-281-0/+7
|
* gl_state_tracker: Implement dirty flags for fragment color clampReinUsesLisp2020-02-281-0/+5
|
* gl_state_tracker: Implement dirty flags for logic opReinUsesLisp2020-02-281-0/+5
|
* gl_state_tracker: Implement dirty flags for sRGBReinUsesLisp2020-02-281-0/+5
|
* gl_state_tracker: Implement dirty flags for rasterize enableReinUsesLisp2020-02-281-0/+5
|
* gl_state_tracker: Implement dirty flags for multisampleReinUsesLisp2020-02-281-0/+5
|
* gl_state_tracker: Implement dirty flags for alpha testingReinUsesLisp2020-02-281-0/+8
|
* gl_state_tracker: Implement dirty flags for polygon offsetsReinUsesLisp2020-02-281-0/+11
|
* gl_state_tracker: Implement dirty flags for primitive restartReinUsesLisp2020-02-281-0/+5
|
* gl_state_tracker: Implement dirty flags for stencil testingReinUsesLisp2020-02-281-0/+14
|
* gl_state_tracker: Implement depth dirty flagsReinUsesLisp2020-02-281-0/+8
|
* gl_state_tracker: Implement dirty flags for front face and cullingReinUsesLisp2020-02-281-1/+8
|
* gl_state_tracker: Implement dirty flags for blendingReinUsesLisp2020-02-281-0/+16
|
* gl_state_tracker: Implement dirty flags for clip distances and shadersReinUsesLisp2020-02-281-0/+11
|
* gl_state_tracker: Add dirty flags for buffers and divisorsReinUsesLisp2020-02-281-0/+21
|
* maxwell_3d: Change write dirty flags to a bitsetReinUsesLisp2020-02-281-11/+11
|
* gl_state_tracker: Implement dirty flags for vertex formatsReinUsesLisp2020-02-281-0/+10
|
* gl_state_tracker: Implement dirty flags for color masksReinUsesLisp2020-02-281-0/+11
|
* gl_state_tracker: Implement dirty flags for scissorsReinUsesLisp2020-02-281-0/+9
|
* gl_state_tracker: Implement dirty flags for viewportsReinUsesLisp2020-02-281-0/+17
|
* renderer_opengl: Reintroduce dirty flags for render targetsReinUsesLisp2020-02-281-0/+85
|
* gl_rasterizer: Remove dirty flagsReinUsesLisp2020-02-281-0/+0