Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
bdf4bc5
DolphinQt / VideoBackends / VideoCommon - remove old post processing …
iwubcode Jul 26, 2021
b46bb76
VideoBackend: fix d3d12 crash caused by setting debug name on null co…
iwubcode Sep 2, 2021
4c9c1e9
VideoBackends: fix d3d11 backend for compute usage. Flush texture us…
iwubcode Sep 26, 2021
7aae63b
VideoBackends: fix d3d12 crash when there are no unresolved queries a…
iwubcode Sep 26, 2021
0f5977c
VideoBackends: update d3d11 to mark support for compute shaders
iwubcode Sep 26, 2021
0596811
VideoCommon: graphics trigger
iwubcode Aug 21, 2021
7fd9e3e
VideoCommon: add new post processing logic
iwubcode Jul 8, 2021
79d6a3e
DolphinQt: add ui for new post processing system
iwubcode Jul 28, 2021
941a9bd
DolphinQt: add new tooltip control for line edit
iwubcode Aug 1, 2021
d79c756
DolphinQt: add new tooltip control for push button
iwubcode Aug 5, 2021
d320b15
DolphinQt: add controls for managing graphics triggers
iwubcode Aug 5, 2021
940de8e
DolphinQt: add ability to launch the graphic trigger window from the …
iwubcode Aug 5, 2021
4747fec
VideoConfig
iwubcode Aug 7, 2021
055ed17
Data: add default trigggers to system profiles
iwubcode Aug 7, 2021
b325fa7
DolphinQt: launch shader trigger window from enhancements widget
iwubcode Aug 8, 2021
05355be
VideoCommon: renderbase using new pp system
iwubcode Aug 8, 2021
af6c5c5
Data: add default internal shader
iwubcode Aug 8, 2021
6908b7d
VideoCommon: trigger point (texture base)
iwubcode Aug 9, 2021
bf71bca
VideoCommon: add support for setting and getting the stage from the t…
iwubcode Aug 21, 2021
9127088
VideoCommon: pass texture info created in VertexManagerBase to Textur…
iwubcode Aug 21, 2021
fad5f44
VideoCommon: trigger shaders on projection in VertexShaderManager
iwubcode Aug 22, 2021
dad5b8a
DolphinQt: add load/save of default shader profile on start/exit
iwubcode Sep 6, 2021
1cd1fb2
cmake post processing
iwubcode Sep 26, 2021
d7e6170
graphics trigger cmake
iwubcode Sep 26, 2021
08f0019
DolphinQt: post processing ui cmake
iwubcode Sep 26, 2021
6064835
DolphinQt: trigger ui cmake
iwubcode Sep 26, 2021
583e187
DolphinQt: line edit ui cmake
iwubcode Sep 26, 2021
46cf68b
DolphinQt: add cmake for push button
iwubcode Sep 26, 2021
e032893
Some potential shaders
iwubcode Sep 27, 2021
fb8feff
Fix building on linux
phire Sep 27, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions Data/Sys/Profiles/GraphicsTrigger/Any2D.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[Trigger]
Type = DrawCall2D
WidthOperation = 1
Width = 0
HeightOperation = 1
Height = 0
FormatOperation = 1
Format = 0
HashOperation = 1
Hash =
TlutOperation = 1
Tlut =
Title = When a 2d object is drawn
9 changes: 9 additions & 0 deletions Data/Sys/Profiles/GraphicsTrigger/EFBFullscreen.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[Trigger]
Type = EFB
WidthOperation = 2
Width = 427
HeightOperation = 1
Height = 0
FormatOperation = 2
Format = 4,5,6
Title = When an EFB is processed that takes up most of the screen
3 changes: 3 additions & 0 deletions Data/Sys/Profiles/GraphicsTrigger/Post.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[Trigger]
Type = Post
Title = After the game is drawn
54 changes: 0 additions & 54 deletions Data/Sys/Shaders/16bit.glsl

This file was deleted.

79 changes: 0 additions & 79 deletions Data/Sys/Shaders/32bit.glsl

This file was deleted.

20 changes: 0 additions & 20 deletions Data/Sys/Shaders/Anaglyph/dubois-LCD-Amber-Blue.glsl

This file was deleted.

20 changes: 0 additions & 20 deletions Data/Sys/Shaders/Anaglyph/dubois-LCD-Green-Magenta.glsl

This file was deleted.

21 changes: 0 additions & 21 deletions Data/Sys/Shaders/Anaglyph/dubois.glsl

This file was deleted.

8 changes: 0 additions & 8 deletions Data/Sys/Shaders/Anaglyph/fullcolor.glsl

This file was deleted.

10 changes: 0 additions & 10 deletions Data/Sys/Shaders/Anaglyph/grayscale.glsl

This file was deleted.

12 changes: 0 additions & 12 deletions Data/Sys/Shaders/Anaglyph/grayscale2.glsl

This file was deleted.

67 changes: 0 additions & 67 deletions Data/Sys/Shaders/FXAA.glsl

This file was deleted.

4 changes: 4 additions & 0 deletions Data/Sys/Shaders/Internal/DefaultVertexPixelShader.glsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
void main()
{
SetOutput(Sample());
}
7 changes: 0 additions & 7 deletions Data/Sys/Shaders/Passive/horizontal.glsl

This file was deleted.

Loading