| Age | Commit message (Collapse) | Author |
|
This resolves the artifacting when decoding VP9 streams.
|
|
renderer_vulkan: Add setting to log pipeline statistics
|
|
Use VK_KHR_pipeline_executable_properties when enabled and available to
log statistics about the pipeline cache in a game.
For example, this is on Turing GPUs when generating a pipeline cache
from Super Smash Bros. Ultimate:
Average pipeline statistics
==========================================
Code size: 6433.167
Register count: 32.939
More advanced results could be presented, at the moment it's just an
average of all 3D and compute pipelines.
|
|
render_target: Add missing initializer for size extent
|
|
video_core/engine: Consistently initialize rasterizer pointers
|
|
video_core: Remove some unused variables
|
|
Everything else has a default constructor that does the straightforward
thing of initializing most members to a default value, except for the
size.
We explicitly initialize the size (and others, for consistency), to
prevent potential uninitialized reads from occurring. Particularly given
the largeish surface area that this struct is used in.
|
|
Ensures all of the engines have consistent and deterministic
initialization of the rasterizer pointers.
|
|
We should be using the passed in object type instead.
|
|
Given this is non-trivial, the constructor is required to execute, so
this removes a bit of redundant codegen.
|
|
|
|
Resolves two compiler warnings.
|
|
general: Rename "Frame Limit" references to "Speed Limit"
|
|
vk_stream_buffer: Remove unused stream buffer
|
|
Handle allocation failure in Staging buffer
|
|
|
|
vk_buffer_cache: Add transform feedback usage to null buffer
|
|
Remove unused file.
|
|
Use an index buffer barrier instead of a vertex input read barrier.
|
|
Fixes bad API usages on Vulkan.
|
|
Shader Decompiler Rewrite
|
|
buffer_cache: Misc fixups related to buffer clears
|
|
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.
|
|
This setting is best referred to as a speed limit, as it involves the limits of all timing based aspects of the emulator, not only framerate.
This allows us to differentiate it from the fps unlocker setting.
|
|
Fixes race condition caused. The descriptor pool is not thread safe, so
we have to commit descriptor sets within the same thread.
|
|
Causes crashes on Link's Awakening intro. It's hard to debug if it's our
fault due to bugs in validation layers.
|
|
This reverts commit 4a152767286717fa69bfc94846a124a366f70065.
|
|
Wait for shader to build before configuring it, and wait for the shader
to build before sharing it with other contexts.
|
|
This allows us invalidating OpenGL and Vulkan separately in the future.
|
|
|
|
|
|
Ensures that states set for a particular stage are not attached to other
stages which may not need them.
|
|
|
|
|
|
Silences the following warnings-turned-errors:
-Wsign-conversion
-Wunused-private-field
-Wbraced-scalar-init
-Wunused-variable
And some other errors
|
|
|
|
The current implementation is prone to causing graphical issues. Disable until a better solution is implemented.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Fix regression on Fire Emblem: Three Houses when using native fp16.
|
|
Workaround potential bug on Nvidia's driver where only updating high
attributes leaves low attributes out dated.
|
|
|
|
|
|
|
|
|
|
GLASM is getting good enough that we can move it out of advanced
graphics settings. This removes the setting `use_assembly_shaders`,
opting for a enum class `shader_backend`. This comes with the benefits
that it is extensible for additional shader backends besides GLSL and
GLASM, and this will work better with a QComboBox.
Qt removes the related assembly shader setting from the Advanced
Graphics section and places it as a new QComboBox in the API Settings
group. This will replace the Vulkan device selector when OpenGL is
selected.
Additionally, mark all of the custom anisotropic filtering settings as
"WILL BREAK THINGS", as that is the case with a select few games.
|