index
:
anonymous/yuzu
master
yuzu is the world's most popular, open-source, Nintendo Switch emulator — started by the creators of Citra. It is written in C++ with portability in mind,
mirror
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
shader_recompiler
/
backend
/
glsl
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2021-07-23
shader: Remove IAbs64
ReinUsesLisp
2
-5
/
+0
2021-07-23
glsl: Fix IADD CC
ameerj
2
-5
/
+7
2021-07-23
shader: Move loop safety tests to code emission
ReinUsesLisp
4
-11
/
+12
2021-07-23
glsl: Remove frag color initialization
ameerj
1
-9
/
+0
2021-07-23
emit_glsl_special: Skip initialization of frag_color0
ameerj
1
-1
/
+1
2021-07-23
glsl: Add missing ; in EmitSetSampleMask
Morph
1
-1
/
+1
2021-07-23
glsl: Fix output varying initialization when transform feedback is used
ameerj
1
-3
/
+37
2021-07-23
glsl: Fix cbuf component indexing bug falback
ameerj
1
-7
/
+6
2021-07-23
shader: Properly manage attributes not written from previous stages
ReinUsesLisp
4
-29
/
+22
2021-07-23
glsl: Only declare fragment outputs on fragment shaders
ReinUsesLisp
1
-4
/
+6
2021-07-23
shader: Split profile and runtime info headers
ReinUsesLisp
3
-3
/
+2
2021-07-23
glsl: Obey need_declared_frag_colors to declare and initialize all frag_color
ameerj
2
-1
/
+10
2021-07-23
glsl: Address rest of feedback
ameerj
4
-19
/
+51
2021-07-23
glsl: Move gl_Position/generic attribute initialization to EmitProlgue
ameerj
2
-14
/
+12
2021-07-23
glsl: Conditionally use fine/coarse derivatives based on device support
ameerj
2
-4
/
+27
2021-07-23
glsl: Cleanup/Address feedback
ameerj
8
-28
/
+20
2021-07-23
glsl: Add Shader_GLSL logging
ameerj
3
-28
/
+32
2021-07-23
glsl: Add LoopSafety instructions
ameerj
2
-0
/
+10
2021-07-23
glsl: Conditionally add EXT_texture_shadow_lod
ameerj
1
-3
/
+5
2021-07-23
glsl: Add stubs for sparse queries and variable aoffi when not supported
ameerj
3
-13
/
+37
2021-07-23
glsl: Implement legacy varyings
ameerj
4
-7
/
+71
2021-07-23
glsl: Minor cleanup
ameerj
2
-19
/
+15
2021-07-23
glsl: Fix Cbuf getters for F32 type
ameerj
1
-12
/
+15
2021-07-23
glsl: Add immediate index oob checking for Cbuf getters
ameerj
1
-0
/
+16
2021-07-23
glsl: Refactor GetCbuf functions to reduce code duplication
ameerj
1
-104
/
+66
2021-07-23
glsl: Address more feedback. Implement indexed texture reads
ameerj
5
-111
/
+109
2021-07-23
glsl: Remove Signed Integer variables
ameerj
8
-43
/
+13
2021-07-23
glsl: Address Rodrigo's feedback
ameerj
13
-75
/
+87
2021-07-23
glsl: Reorganize backend code, remove unneeded [[maybe_unused]]
ameerj
11
-314
/
+251
2021-07-23
glsl: Implement SampleId and SetSampleMask
ameerj
3
-30
/
+35
2021-07-23
glsl: Add gl_PerVertex in for GS
ameerj
1
-1
/
+2
2021-07-23
glsl: Use existing tracking for enabling EXT_shader_image_load_formatted
ameerj
1
-15
/
+1
2021-07-23
glsl: Enable early fragment tests
ameerj
2
-4
/
+7
2021-07-23
glsl: Implement more attribute getters and setters
ameerj
2
-12
/
+60
2021-07-23
glsl: Implement fswzadd
ameerj
3
-5
/
+43
2021-07-23
glsl: Implement indexed attribute loads
ameerj
5
-29
/
+64
2021-07-23
glsl: Conditionally add GL_ARB_sparse_texture2
ameerj
1
-2
/
+3
2021-07-23
glsl: Conditionally use GL_EXT_shader_image_load_formatted
ameerj
1
-2
/
+18
2021-07-23
glsl: Remove output generic indexing for geometry stage
ameerj
1
-5
/
+3
2021-07-23
glsl: Allow dynamic tracking of variable allocation
ameerj
3
-21
/
+35
2021-07-23
glsl: Implement barriers
ameerj
3
-13
/
+21
2021-07-23
glsl: Implement image atomics and set layer
ameerj
4
-152
/
+202
2021-07-23
glsl: Fix image gather logic
ameerj
1
-0
/
+4
2021-07-23
glsl: Add cbuf access workaround for devices with component indexing bug
ameerj
1
-51
/
+110
2021-07-23
glsl: Use textureGrad fallback when EXT_texture_shadow_lod is unsupported
ameerj
2
-8
/
+40
2021-07-23
emit_glsl_image: Use immediate offsets when possible
ameerj
1
-12
/
+33
2021-07-23
glsl: Fix <32-bit SSBO writes
ameerj
4
-50
/
+43
2021-07-23
glsl: Cleanup and address feedback
ameerj
10
-86
/
+69
2021-07-23
glsl: Refactor Global memory functions
ameerj
2
-71
/
+73
2021-07-23
glsl: Increase NUM_VARS that can be allocated
ameerj
1
-1
/
+1
2021-07-23
glsl: Implement Load/WriteGlobal
ameerj
9
-98
/
+185
2021-07-23
glsl: Implement Images
ameerj
2
-9
/
+74
2021-07-23
glsl: skip gl_ViewportIndex write if device does not support it
ameerj
3
-8
/
+16
2021-07-23
glsl: Implement transform feedback
ameerj
3
-13
/
+63
2021-07-23
glsl: Yet another gl_ViewportIndex fix attempt
ameerj
1
-3
/
+19
2021-07-23
glsl: Add gl_ViewportIndex out attribute
ameerj
1
-1
/
+3
2021-07-23
emit_glsl_context_get_set: Remove unused function
lat9nq
1
-4
/
+0
2021-07-23
glsl: Fix precise variable declaration
ameerj
3
-24
/
+25
2021-07-23
glsl: Implement tessellation shaders
ameerj
5
-27
/
+146
2021-07-23
glsl: Implement ImageGradient and other texture function variants
ameerj
2
-32
/
+73
2021-07-23
glsl: Fix atomic SSBO offsets
ameerj
4
-67
/
+74
2021-07-23
glsl: Implement geometry shaders
ameerj
4
-9
/
+62
2021-07-23
glsl: Use NotImplemented macro with function name output
ameerj
10
-104
/
+103
2021-07-23
glsl: Implement gl_ViewportIndex
ameerj
3
-5
/
+14
2021-07-23
glsl: SHFL fix and prefer shift operations over divide in glsl shader
ameerj
5
-63
/
+64
2021-07-23
glsl: Implement precise fp variable allocation
ameerj
4
-8
/
+67
2021-07-23
HACK glsl: Write defaults to unused generic attributes
ameerj
2
-2
/
+11
2021-07-23
glsl: Fix ssbo indexing and name shadowing between shader stages
ameerj
3
-77
/
+101
2021-07-23
glsl: implement set clip distance
ameerj
2
-0
/
+15
2021-07-23
glsl: Rework var alloc to not assign unused results
ameerj
9
-49
/
+91
2021-07-23
glsl: Rework variable allocator to allow for variable reuse
ameerj
13
-351
/
+480
2021-07-23
glsl: Fix ATOM and implement ATOMS
ameerj
4
-114
/
+130
2021-07-23
glsl: Use gl_SubGroupInvocationARB
ameerj
2
-8
/
+7
2021-07-23
glsl: Implement VOTE for subgroup size potentially larger
ameerj
2
-19
/
+36
2021-07-23
glsl: Implement VOTE
ameerj
4
-50
/
+64
2021-07-23
glsl: Implement ST{LS}
ameerj
6
-69
/
+106
2021-07-23
glsl: Implement more instructions used by SMO
ameerj
1
-3
/
+3
2021-07-23
glsl: Implement more instructions used by SMO
ameerj
5
-10
/
+16
2021-07-23
glsl: Fix GetAttribute return values
ameerj
2
-7
/
+9
2021-07-23
glsl: minor cleanup
ameerj
4
-20
/
+19
2021-07-23
glsl: Fix and implement rest of cbuf access
ameerj
1
-7
/
+43
2021-07-23
glsl: Implement TXQ and other misc changes
ameerj
5
-6
/
+36
2021-07-23
glsl: TLD4 implementation
ameerj
1
-2
/
+89
2021-07-23
glsl: Implement TLD instruction
ameerj
1
-1
/
+55
2021-07-23
glsl: Implement TEXS
ameerj
1
-1
/
+29
2021-07-23
glsl: Cleanup texture functions
ameerj
1
-13
/
+11
2021-07-23
shader_recompiler: GCC fixes
lat9nq
14
-3
/
+13
2021-07-23
glsl: Implement TEX depth functions
ameerj
2
-4
/
+46
2021-07-23
glsl: Implement TEX ImageSample functions
ameerj
3
-11
/
+71
2021-07-23
glsl: Rework Shuffle emit instructions to align with SPIR-V
ameerj
1
-19
/
+40
2021-07-23
glsl: Better Storage access and wip warps
ameerj
8
-62
/
+133
2021-07-23
glsl: Fix integer conversions, implement clamp CC
ameerj
2
-27
/
+36
2021-07-23
glsl: Implement IADD CC
ameerj
2
-2
/
+17
2021-07-23
glsl: SSBO access fixes and wip SampleExplicitLod implementation.
ameerj
2
-4
/
+19
2021-07-23
glsl: WIP var forward declaration
ameerj
6
-49
/
+60
2021-07-23
glsl: Fix bindings, add some CC ops
ameerj
8
-57
/
+91
2021-07-23
glsl: remove unused headers
ameerj
14
-34
/
+10
2021-07-23
glsl: Implement derivatives and YDirection
ameerj
8
-81
/
+87
2021-07-23
glsl: Fix non-immediate buffer access
ameerj
12
-72
/
+133
2021-07-23
glsl: textures wip
ameerj
9
-75
/
+139
2021-07-23
glsl: Implement some attribute getters and setters
ameerj
9
-191
/
+337
2021-07-23
glsl: Track S32 atomics
ameerj
1
-3
/
+6
2021-07-23
glsl: Update phi node management
ameerj
4
-21
/
+53
2021-07-23
glsl: Fix floating point compare ops
ameerj
1
-28
/
+28
2021-07-23
glsl: Query GL Device for FP16 extension support
ameerj
1
-2
/
+7
2021-07-23
glsl: Simply FP storage atomics
ameerj
2
-48
/
+28
2021-07-23
glsl: F16x2 storage atomics
ameerj
7
-58
/
+64
2021-07-23
glsl: Revert ssbo aliasing. Storage Atomics impl
ameerj
4
-68
/
+132
2021-07-23
glsl: implement phi nodes
ameerj
4
-20
/
+54
2021-07-23
glsl: Wip storage atomic ops
ameerj
8
-325
/
+406
2021-07-23
glsl: Implement FCMP
ameerj
3
-242
/
+185
2021-07-23
glsl: Add a more robust fp formatter
ameerj
4
-9
/
+14
2021-07-23
glsl: More FP fixes
ameerj
2
-9
/
+16
2021-07-23
glsl: FP function fixes
ameerj
7
-17
/
+25
2021-07-23
glsl: More FP instructions/fixes
ameerj
5
-28
/
+41
2021-07-23
glsl: Add many FP32/64 instructions
ameerj
12
-765
/
+1011
2021-07-23
glsl: Implement more Integer ops
ameerj
3
-119
/
+72
2021-07-23
glsl: Implement BF*
ameerj
3
-9
/
+10
2021-07-23
glsl: Implement a few Integer instructions
ameerj
10
-260
/
+398
2021-07-23
glsl: Use std::string_view for Emit function args.
ameerj
6
-760
/
+838
2021-07-23
glsl: Pass IR::Inst& to Emit functions
ameerj
6
-171
/
+169
2021-07-23
glsl: INeg and IAdd negate tests
ameerj
3
-94
/
+106
2021-07-23
glsl: Reusable typed variables. IADD32
ameerj
6
-203
/
+311
2021-07-23
glsl: Fix program linking and cbuf
ameerj
2
-3
/
+5
2021-07-23
glsl: Fix "reg" allocing
ameerj
10
-898
/
+938
2021-07-23
glsl: Initial backend
ameerj
26
-0
/
+3266