| Age | Commit message (Collapse) | Author |
|
video_core/gpu_thread: Silence truncation warning in ThreadManager's constructor
|
|
gl_shader_decompiler: Return early when an operation is invalid
|
|
gl_shader_decompiler: Rename GenerateTemporal() to GenerateTemporary()
|
|
We can just use .at(), which essentially does the same thing, but with
less code.
|
|
Given we already ensure nothing can set the zeroth register in
SetRegister(), we don't need to check if the index is zero and special
case it. We can just access the register normally, since it's already
going to be zero.
We can also replace the assertion with .at() to perform the equivalent
behavior inline as part of the API.
|
|
Since c5d41fd812d7eb1a04f36b76c08fe971cee0868c callback parameters were
changed to use an s64 to represent late cycles instead of an int, so
this was causing a truncation warning to occur here. Changing it to s64
is sufficient to silence the warning.
|
|
gpu_thread: Improve synchronization by using CoreTiming.
|
|
gl_shader_decompiler: Fix TXQ types
|
|
Temporal generally indicates a relation to time, but this is just
creating a temporary, so this isn't really an accurate name for what the
function is actually doing.
|
|
TXQ returns integer types. Shaders usually do:
R0 = TXQ(); // => int
R0 = static_cast<float>(R0);
If we don't treat it as an integer, it will cast a binary float value as
float - resulting in a corrupted number.
|
|
Quite a few unused includes have built up over time, particularly on
core/memory.h. Removing these includes means the source files including
those files will no longer need to be rebuilt if they're changed, making
compilation slightly faster in this scenario.
|
|
Better LZ4 compression utilization for the disk based shader cache and the yuzu build system
|
|
gl_shader_manager: Remove reliance on a global accessor within MaxwellUniformData::SetFromRegs()
|
|
|
|
vk_swapchain: Implement a swapchain manager
|
|
|
|
Since C++17, the introduction of deduction guides for locking facilities
means that we no longer need to hardcode the mutex type into the locks
themselves, making it easier to switch mutex types, should it ever be
necessary in the future.
|
|
video_core: Amend constructor initializer list order where applicable
|
|
video_core/{gl_rasterizer, gpu_thread}: Remove unused class variables where applicable
|
|
compression level 12 for less compression time
|
|
|
|
precompiled shader disk chache files
|
|
to common/data_compression
|
|
|
|
video_core: Add missing override specifiers
|
|
This isn't used at all in the OpenGL shader cache, so we can remove it's
include here, meaning one less file needs to be recompiled if any
changes ever occur within that header.
core/memory.h is also not used within this file at all, so we can remove
it as well.
|
|
Avoids introducing Maxwell3D into the namespace for everything that
includes the header.
|
|
MaxwellUniformData::SetFromRegs()
We can just pass in the Maxwell3D instance instead of going through the
system class to get at it.
This also lets us simplify the interface a little bit. Since we pass in
the Maxwell3D context now, we only really need to pass the shader stage
index value in.
|
|
Previously only one line of the whole comment was in proper Doxygen
formatting.
|
|
The pusher instance is only ever used in the constructor of the
ThreadManager for creating the thread that the ThreadManager instance
contains. Aside from that, the member is unused, so it can be removed.
|
|
This member variable is no longer being used, so it can be removed,
removing a dependency on EmuWindow from the rasterizer's interface"
|
|
Specifies the members in the same order that initialization would take
place in.
This also silences -Wreorder warnings.
|
|
Ensures that the signatures will always match with the base class.
Also silences a few compilation warnings.
|
|
smaphore -> semaphore
|
|
gpu: Rewrite MemoryManager based on the VMManager implementation.
|
|
- Fixes graphical issues from transitions in Super Mario Odyssey.
|
|
|
|
|
|
|
|
- Avoid a crash in Octopath Traveler.
|
|
- Avoid a crash in Xenoblade Chronicles 2.
|
|
surface.
- Fixes a crash in Puyo Puyo Tetris.
|
|
|
|
|
|
|
|
video_core: Refactor to use MemoryManager interface for all memory access.
|
|
|
|
# Conflicts:
# src/video_core/engines/kepler_memory.cpp
# src/video_core/engines/maxwell_3d.cpp
# src/video_core/morton.cpp
# src/video_core/morton.h
# src/video_core/renderer_opengl/gl_global_cache.cpp
# src/video_core/renderer_opengl/gl_global_cache.h
# src/video_core/renderer_opengl/gl_rasterizer_cache.cpp
|
|
|
|
video_core/morton: Miscellaneous changes
|