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 #10802 from iwubcode/graphics_mods_builtin_bloom
Add builtin graphics mods
- Loading branch information
Showing
21 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
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": "Bloom Removal", | ||
| "author": "Dolphin Team", | ||
| "description": "Skips drawing bloom effects. May be preferable when using a bloom solution from Dolphin's post processing shaders or a third party tool." | ||
| }, | ||
| "features": | ||
| [ | ||
| { | ||
| "group": "Bloom", | ||
| "action": "skip" | ||
| } | ||
| ] | ||
| } |
File renamed without changes.
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,14 @@ | ||
| { | ||
| "meta": | ||
| { | ||
| "title": "Remove HUD", | ||
| "author": "Dolphin Team", | ||
| "description": "Skips drawing elements designated as the HUD. Can be used for taking screenshots or increasing immersion." | ||
| }, | ||
| "features": [ | ||
| { | ||
| "group": "HUD", | ||
| "action": "skip" | ||
| } | ||
| ] | ||
| } |
File renamed without changes.
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 Bloom", | ||
| "author": "Dolphin Team", | ||
| "description": "Scales bloom effects to draw at their native resolution, regardless of internal resolution. Results in bloom looking much more natural at higher resolutions but may cause shimmering." | ||
| }, | ||
| "features": | ||
| [ | ||
| { | ||
| "group": "Bloom", | ||
| "action": "scale", | ||
| "action_data": { | ||
| "X": 1.0, | ||
| "Y": 1.0, | ||
| "Z": 1.0 | ||
| } | ||
| } | ||
| ] | ||
| } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,27 @@ | ||
| { | ||
| "meta": | ||
| { | ||
| "title": "Bloom Texture Definitions", | ||
| "author": "iwubcode" | ||
| }, | ||
| "groups": | ||
| [ | ||
| { | ||
| "name": "Bloom", | ||
| "targets": [ | ||
| { | ||
| "type": "efb", | ||
| "texture_filename": "efb1_n000046_57x76_6" | ||
| }, | ||
| { | ||
| "type": "efb", | ||
| "texture_filename": "efb1_n000045_114x152_6" | ||
| }, | ||
| { | ||
| "type": "efb", | ||
| "texture_filename": "efb1_n000107_228x304_6" | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| } |
File renamed without changes.
Empty file.
File renamed without changes.
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,27 @@ | ||
| { | ||
| "meta": | ||
| { | ||
| "title": "Bloom Texture Definitions", | ||
| "author": "iwubcode" | ||
| }, | ||
| "groups": | ||
| [ | ||
| { | ||
| "name": "Bloom", | ||
| "targets": [ | ||
| { | ||
| "type": "efb", | ||
| "texture_filename": "efb1_n9_80x58_6" | ||
| }, | ||
| { | ||
| "type": "efb", | ||
| "texture_filename": "efb1_n21_80x57_6" | ||
| }, | ||
| { | ||
| "type": "efb", | ||
| "texture_filename": "efb1_n2_320x228_6" | ||
| } | ||
| ] | ||
| } | ||
| ] | ||
| } |