- 28 Jul, 2021 2 commits
-
-
ReinUsesLisp authored
Fixes instances where fp16 types are not declared on SPIR-V but they are used. This shouldn't happen on master, as it's been uncovered by an additional optimization pass.
-
bunnei authored
render_target: Add missing initializer for size extent
-
- 27 Jul, 2021 16 commits
-
-
bunnei authored
common: fs: fs_util: Add BufferToUTF8String
-
Rodrigo Locatti authored
video_core/engine: Consistently initialize rasterizer pointers
-
Rodrigo Locatti authored
exception: Make constructors explicit
-
bunnei authored
video_core: Remove some unused variables
-
bunnei authored
vulkan_wrapper: Fix SetObjectName() always indicating objects as images
-
Lioncash authored
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.
-
Lioncash authored
Ensures all of the engines have consistent and deterministic initialization of the rasterizer pointers.
-
Lioncash authored
We should be using the passed in object type instead.
-
Lioncash authored
Given this is non-trivial, the constructor is required to execute, so this removes a bit of redundant codegen.
-
Lioncash authored
-
Lioncash authored
Resolves two compiler warnings.
-
Lioncash authored
Ensures that exception construction is always explicit.
-
Lioncash authored
-
Lioncash authored
We can use the <exception> header instead of pulling in all of the exception-style classes.
-
Morph authored
Allows for direct conversion to std::string without having to convert std::u8string to std::string
-
bunnei authored
general: Rename "Frame Limit" references to "Speed Limit"
-
- 26 Jul, 2021 20 commits
-
-
Rodrigo Locatti authored
vk_stream_buffer: Remove unused stream buffer
-
Rodrigo Locatti authored
Handle allocation failure in Staging buffer
-
Robin Kertels authored
-
Rodrigo Locatti authored
vk_buffer_cache: Add transform feedback usage to null buffer
-
Rodrigo Locatti authored
vk_compute_pass: Fix pipeline barrier for indexed quads
-
ReinUsesLisp authored
Remove unused file.
-
Rodrigo Locatti authored
shader_recompiler: Remove unnecessary [[nodiscard]] instances
-
Rodrigo Locatti authored
emit_spirv_instructions: Add missing header guard
-
Rodrigo Locatti authored
emit_glasm: Fix LINESS_ADJACENCY typo in InputPrimitive()
-
bunnei authored
Config-graphics: reword GLASM option
-
Vamsi Krishna authored
Change wording to explain that GLASM is actually short for Assembly Shaders
-
Rodrigo Locatti authored
object_pool: Add missing return in Chunk move assignment operator
-
Rodrigo Locatti authored
control_flow: Fix duplicate switch case in OpcodeToken
-
ReinUsesLisp authored
Use an index buffer barrier instead of a vertex input read barrier.
-
ReinUsesLisp authored
Fixes bad API usages on Vulkan.
-
Lioncash authored
This should be LINES_ADJACENCY
-
Lioncash authored
-
Lioncash authored
[[nodiscard]] doesn't do anything on functions with a void return type and causes superfluous warnings.
-
Lioncash authored
This previously duplicated the case of the PBK case above it.
-
Lioncash authored
Prevents undefined behavior from occurring.
-
- 25 Jul, 2021 2 commits