Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge pull request #11542 from linckandrea/master
Update GraphicMods
- Loading branch information
Showing
7 changed files
with
177 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| { | ||
| "meta": | ||
| { | ||
| "title": "DOF Removal", | ||
| "author": "Dolphin Team", | ||
| "description": "Skips drawing DOF effects. May be preferable when using a DOF solution from Dolphin's post processing shaders or a third party tool." | ||
| }, | ||
| "features": | ||
| [ | ||
| { | ||
| "group": "DOF", | ||
| "action": "skip" | ||
| } | ||
| ] | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| { | ||
| "meta": | ||
| { | ||
| "title": "Native Resolution DOF", | ||
| "author": "Dolphin Team", | ||
| "description": "Scales DOF effects to draw at their native resolution, regardless of internal resolution. Results in DOF looking much more natural at higher resolutions but may cause shimmering." | ||
| }, | ||
| "features": | ||
| [ | ||
| { | ||
| "group": "DOF", | ||
| "action": "scale", | ||
| "action_data": { | ||
| "X": 1.0, | ||
| "Y": 1.0, | ||
| "Z": 1.0 | ||
| } | ||
| } | ||
| ] | ||
| } |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| { | ||
| "meta": | ||
| { | ||
| "title": "Bloom and DOF Texture Definitions", | ||
| "author": "linckandrea" | ||
| }, | ||
| "groups": | ||
| [ | ||
| { | ||
| "name": "Bloom", | ||
| "targets": [ | ||
| { | ||
| "type": "efb", | ||
| "texture_filename": "efb1_n09_20x15_1" | ||
| }, | ||
| { | ||
| "type": "efb", | ||
| "texture_filename": "efb1_n21_20x15_1" | ||
| } | ||
| ] | ||
| }, | ||
| { | ||
| "name": "DOF", | ||
| "targets": [ | ||
| { | ||
| "type": "efb", | ||
| "texture_filename": "efb1_n10_320x240_4" | ||
| }, | ||
| { | ||
| "type": "efb", | ||
| "texture_filename": "efb1_n11_320x240_1" | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters