Commit Graph

42 Commits (414a87a4f4570344140d77a7985b4d118b754341)

Author SHA1 Message Date
Lioncash 414a87a4f4 video_core: Resolve more variable shadowing scenarios pt.2
Migrates the video core code closer to enabling variable shadowing
warnings as errors.

This primarily sorts out shadowing occurrences within the Vulkan code.
4 years ago
Rodrigo Locatti fbda5e9ec9
Merge pull request #3681 from lioncash/component
decoder/image: Fix incorrect G24R8 component sizes in GetComponentSize()
4 years ago
Lioncash 4944d48ee8 decode/image: Eliminate switch fallthrough in DecodeImage()
Fortunately this didn't result in any issues, given the block that code
was falling through to would immediately break.
5 years ago
ReinUsesLisp eb914b6c50 video_core: Enforce -Werror=switch
This forces us to fix all -Wswitch warnings in video_core.
5 years ago
ReinUsesLisp fbc232426d video_core: Rearrange pixel format names
Normalizes pixel format names to match Vulkan names. Previous to this
commit pixel formats had no convention, leading to confusion and
potential bugs.
5 years ago
Morph 480e1fa987 decode/image: Implement B10G11R11F
- Used by Kirby Star Allies
5 years ago
ReinUsesLisp 72deb773fd shader_ir: Turn classes into data structures 5 years ago
Lioncash 24620bc4ea decode/image: Fix typo in assert in GetComponentSize() 5 years ago
Lioncash b178c9a349 decoder/image: Fix incorrect G24R8 component sizes in GetComponentSize()
The components' sizes were mismatched. This corrects that.
5 years ago
Lioncash 1c340c6efa CMakeLists: Specify -Wextra on linux builds
Allows reporting more cases where logic errors may exist, such as
implicit fallthrough cases, etc.

We currently ignore unused parameters, since we currently have many
cases where this is intentional (virtual interfaces).

While we're at it, we can also tidy up any existing code that causes
warnings. This also uncovered a few bugs as well.
5 years ago
Nguyen Dac Nam 935648ffa9
address nit. 5 years ago
Nguyen Dac Nam bf1174c114
Apply suggestions from code review
Co-Authored-By: Rodrigo Locatti <reinuseslisp@airmail.cc>
5 years ago
namkazy 2c98e14d13 shader_decode: SULD.D using std::pair instead of out parameter 5 years ago
namkazy 9efa51311f shader_decode: SULD.D avoid duplicate code block. 5 years ago
namkazy 7f5696513f shader_decode: SULD.D fix conversion error. 5 years ago
namkazy 2906372ba1 shader_decode: SULD.D implement bits64 and reverse shader ir init method to removed shader stage. 5 years ago
namkazy 730f9b55b3 silent warning (conversion error) 5 years ago
namkazy 9f6ebccf06 shader_decode: SULD.D -> SINT actually same as UNORM. 5 years ago
namkazy 6f2b7087c2 shader_decode: SULD.D fix decode SNORM component 5 years ago
namkazy 69657ff19c clang-format 5 years ago
namkazy 24cc64c5b3 shader_decode: get sampler descriptor from registry. 5 years ago
namkazy acd3f0ab37 tweaking. 5 years ago
namkazy 3e3afa9be6 cleanup unuse params 5 years ago
namkazy 5cd5857000 cleanup debug code. 5 years ago
namkazy 658112783d reimplement get component type, uncomment mistaken code 5 years ago
namkazy 3ad06e9b2b remove disable optimize 5 years ago
namkazy f24c2e1103 [wip] reimplement SULD.D 5 years ago
Nguyen Dac Nam 2cefdd92bd clang-fix 5 years ago
Nguyen Dac Nam 1f3d142875 shader: image - import PredCondition 5 years ago
Nguyen Dac Nam 08db60392d shader: SULD.D bits32 implement more complexer method. 5 years ago
Nguyen Dac Nam ed1d8beb13 shader: SULD.D import StoreType 5 years ago
Nguyen Dac Nam 6d235b8631 shader: implement SULD.D bits32 5 years ago
ReinUsesLisp a993df1ee2
shader/node: Unpack bindless texture encoding
Bindless textures were using u64 to pack the buffer and offset from
where they come from. Drop this in favor of separated entries in the
struct.

Remove the usage of std::set in favor of std::list (it's not std::vector
to avoid reference invalidations) for samplers and images.
6 years ago
Lioncash 1f5401c89c video_core/shader: Resolve instances of variable shadowing
Silences a few -Wshadow warnings.
6 years ago
ReinUsesLisp 44000971e2
gl_shader_decompiler: Use uint for images and fix SUATOM
In the process remove implementation of SUATOM.MIN and SUATOM.MAX as
these require a distinction between U32 and S32. These have to be
implemented with imageCompSwap loop.
6 years ago
ReinUsesLisp 675f23aedc
shader/image: Implement SULD and remove irrelevant code
* Implement SULD as float.
* Remove conditional declaration of GL_ARB_shader_viewport_layer_array.
6 years ago
ReinUsesLisp 36abf67e79 shader/image: Implement SUATOM and fix SUST 6 years ago
ReinUsesLisp 1f43e5296f gl_shader_decompiler: Keep track of written images and mark them as modified 6 years ago
ReinUsesLisp afa8096df5 shader: Allow tracking of indirect buffers without variable offset
While changing this code, simplify tracking code to allow returning
the base address node, this way callers don't have to manually rebuild
it on each invocation.
6 years ago
Fernando Sahmkow b7de31ac97 shader_ir: Fix image copy rebase issues 6 years ago
ReinUsesLisp 9097301d92 shader: Implement bindless images 6 years ago
ReinUsesLisp 06c4ce8645 shader: Decode SUST and implement backing image functionality 6 years ago