Commit Graph

216 Commits

Author SHA1 Message Date
Michele
4398ebcebe Add credits and normalize resolution presets
I searched through quite a bit of commits to properly credit some packs. Some of the credits are based off memory. Please let me know if I incorrectly credited or forgot to credit somebody.
2020-01-10 17:06:51 -08:00
Michele
a32b1cb42a re-add shadow pack that was accidently removed 2020-01-09 13:37:50 -08:00
Michele
736e6cf876 Reduce max size for Shadow packs
8x was overkill, and 4x is a tad unstable especially with 1.16.1 with texture allocation issues. Current pack settings will be reset back to 100% size due to preset naming changes.
2020-01-08 15:06:10 -08:00
Crementif
3d492aa656
[BotW] Fixes for updated Vulkan graphic packs
Should fix the native anti-aliasing preset most importantly, but since I ported all of the packs now the script "watermark" is at least a proper sentence, heh.

Also, I fixed the porting scripts. Basically, there were a bug in the verification script that wouldn't check if the uf_* variables matched and the conversion script also had a fun bug where it wasn't automatically fixing an incorrect order of the uf_* variables. So that basically made both of them slip through. Both are now fixed however.

Don't know if it's needed to check the previously ported graphic packs to see if the error affected those, but it might not hurt.
2020-01-05 04:16:42 +01:00
Michele
68534a6588 Update Super Mario 3D World packs to Vulkan
3 unverified shaders, although one of them already had the Vulkan stuff in them. Can't find where the other two are.

280351fcf8e5949f_0000000000000000_vs
6d9067fd20086bc0_0000000000000000_vs
2020-01-03 16:20:01 -08:00
Crementif
b5260c80f3
Hotfix for Mario Kart 8 Contrasty pack
Seems like something in the script isn't fixing the order of the glsl variables automatically, though the error ("This shader (with the current [preset name]) doesn't follow the uf_* variable order from Cemu itself, so it might've been messed with.") still got displayed.

Before I fix this problem with the script tomorrow (should be fine to continue to convert packs, just don't ignore the error thinking that it would be automatically fixed for now), I though that I would send this hotfix.
2020-01-02 06:17:27 +01:00
Michele
3518768ff6 Update Splatoon packs for Vulkan
No unverified shaders.
2020-01-01 12:19:19 -08:00
Crementif
65d4511fa9
Update Mario Kart 8 packs for Vulkan
No unverified shaders. Should all just work ™️
2020-01-01 20:40:08 +01:00
Crementif
24b9b1eb29
Update XCX packs for Vulkan (#413)
Xenoblade Chronicles X packs are now ported too! Which has, after BotW, the most shaders I think made by all of the efforts from getdls. All shaders were successfully verified and tested in-game (from what I could tell).
2020-01-01 20:10:18 +01:00
Crementif
549758507f Update BotW packs for Vulkan (#411)
But now done properly! Basically, a bunch of improvements were made to the script. The previous attempt at this conversion was quickly followed by a rollback since I realized that the script was overlooking certain things that made most of the packs hit or miss whether they would work. A few things missing were:
- It only tested the values from 1 preset. Now, each shader gets compiled per each preset, like what Cemu would do. It also merges the changes done for each preset into one. This should solve cases where one shader would define things separately or repeatedly from preset to preset. 
- All* of the shaders are tested to see if they use the converter used the right values for the locations for Vulkan.

Both of these *should* mean that they should both compile and be linkable in Vulkan, which means that I don't have to test each individual shader to see if they work. I will release the two scripts (one used for converting, one used for checking the right values for the locations) tomorrow so that other people might be able to help, if they want. It's fairly straightforward now at least.

* Organize workaround graphic packs

Pretty hard to organize these correctly, but according to our discord discussion, this was the best layout from a bunch I proposed, together with some suggestions.

* Add V4 converter script and instructions on how to use it

Now everyone BotW is done and all of the bugs have been kinked out using it (hopefully...), here's the release of the converter script in all of it's very badly coded glory. I hope I didn't leave too much debug glory in there...

Also, I hope that I didn't make too many grammatical mistakes in the instructions, but hopefully it's easy enough to follow.
2019-12-27 20:55:52 -08:00
Michael
bda2e98410 [Splatoon] Add no vignette pack 2019-12-21 13:04:04 -08:00
Michael
9347b138db [Splatoon] Upscale Squid Sisters Shadows 2019-12-20 22:29:41 -08:00
Crementif
c1b904314d
Revert "Update every graphic pack to V4"
This reverts commit 306da0b802.
2019-11-29 05:20:11 +01:00
Crementif
306da0b802
Update every graphic pack to V4
Since it's not possible to update 300+ shaders manually and automation was possible, I thought that I'd take the honor and create a script that's able to automatically convert all of the shaders to be cross-compatible with Vulkan. And change the graphic pack versions to version 4 of course.

Also, the script has some nifty testing code which compiled every shader as OpenGL and Vulkan, but for that see the details that I've written below.

**Here's the script that I've made to do all of this. No manual edits were needed:**
https://gist.github.com/Crementif/8d98a855b95f219d95298fb3db99deae
2019-11-29 04:36:05 +01:00
Crementif
0ab933a267
Port SMM's Border Fix and XCX's Anti-Aliasing pack to v4
Both had some weird stuff going on which the Vulkan converter couldn't successfully compile. Also, the presets in the anti-aliasing might be nice, but they are not even used in the shader 🤔.
2019-11-29 01:14:13 +01:00
Crementif
077f4f8f27
Fix shader errors and shader cleanup
Since I wanted to make sure that I didn't broke the shaders after converting the shaders to Vulkan, we need to check if all the shaders weren't broken. Since we're talking about like 400 shaders checking all of them is pretty much impossible and even then, 

So, the obvious solution was to automate the checking. Not as simple as you'd think, because in 300 of our shaders we use preset variables which without replacing the value like Cemu does, will make the shader error regardless. So I also implemented some functionality that would read the preset values and types out of the rules.txt file and replace them in the shaders using that information. And then we use Khronos' glslang to compile the shaders, using both OpenGL and Vulkan.

The result was that glslang found quite a few errors in some of the shaders, which I fixed in this commit. I'm considering adding this rules.txt parsing and automated shader compilation testing to the build process.

Also, I fixed Clarity's name and description since Monochromia isn't available anymore and Xenoblade's resolution pack had a lot of weird blank lines before their #version declaration, which my converter didn't like.
2019-11-29 00:51:00 +01:00
Crementif
f48cb6aa76
[BotW] Add Survival of the Wild clarity presets
Made by Silentverge, GameBanana link can be found here https://gamebanana.com/gamefiles/9921
2019-11-24 21:52:25 +01:00
Michael
48e248971e Update all non-shader graphic packs to version 4
They don't need shader fixes for Vulkan so it should be safe updating the number
2019-11-16 23:56:07 -08:00
Exzap
63a51ab720 Update some graphic packs to version 4
Clarity got updated, plus a bunch of graphic packs that don't use shaders.
2019-11-16 04:54:26 +01:00
Crementif
0e9ef0bf4a
[BotW] Add more (descriptive) presets for LOD bias pack
Resolves https://github.com/slashiee/cemu_graphic_packs/pull/400 since this is a self-made addition since I noticed several other things that I'd like to have been tweaked, plus it wasn't symmetrical and had weird names for the added presets.
2019-11-12 18:58:56 +01:00
Crementif
6da9a34a59
[TPHD] Fix error
Thanks for reporting this issue, Vulkan lead dev.
2019-10-23 21:14:48 +02:00
getdls
e1f57dd123 [TPHD] Fx fix menu bg
Remove 08 conversion
2019-09-03 23:07:26 +02:00
Crementif
68463c344d
[Hyrule Warriors] Add new preset to Contrasty
Preset was made by MelonSpeedruns
2019-09-02 21:54:48 +02:00
getdls
dd54d2e51f [TPHD] Further format conversion fixes
Reverts everything except main viewports. Seems most below 480
eventually gets used and breaks objects later in game. 1280x720 1 -> 5
stable so far.. But keeping an eye on that one.
2019-09-02 21:19:58 +02:00
Crementif
ab91e0c188
[Hyrule Warriors] Fix minor stuff 2019-08-31 19:22:26 +02:00
Crementif
634dc14d1d
[Hyrule Warriors] Fix spelling errors in variables 2019-08-31 19:19:23 +02:00
getdls
e4c4efc8dc [TPHD] 10k 21:9, remove some 0007 conversion
64x64 broke plant drool
2019-08-31 02:43:59 +02:00
getdls
107f58da1a [TPHD] 0x007 to 0x00f conversion 2019-08-31 01:52:33 +02:00
getdls
d630597c19 [TPHD] Remove expermintal stuff..
Mixed private and public... Should fix all of the cloud banding.
2019-08-27 20:39:31 +02:00
getdls
cba5441cd8 [TPHD] Fancy FX 8k option
Eyeballed nr of passes to aproximate same blur feel as native res. Old
approach, from res,  really started to break down around 5k.
2019-08-27 20:24:57 +02:00
NAVras-Z
f9066de98d [Filters] Use textureSize() instead
As of Cemu 1.15.12b, the textureSrcResolution (textureSrc_Resolution not texture_SrcResolution) uniform used by internal/external resize shaders still gives the native resolution of the game even when a resolution gfx pack is active.
We can just ask for texture resolution ourselves in the shaders as a workaround.
2019-08-20 08:07:57 +08:00
getdls
3b5bbc519d [TPHD] move filter to enhancements for local changes
As this is a per-game override, not global it makes more sense to stick
it in enhancements.
2019-08-17 02:35:04 +02:00
getdls
fd8096f862 [TPHD] actually commit the files 2019-08-17 02:25:53 +02:00
getdls
661ba94aca [TPHD] Add bicubic (sharpen) filter
Add  : bicubic (sharpen) filter.  @NAVras-Z Thnx
Fix : LOD description makes sense for regular users.
2019-08-17 02:23:26 +02:00
getdls
c58d2f707c [TPHD] Negative texture LOD
-1 looks good at 4k+
2019-08-16 21:21:03 +02:00
getdls
63851b6e4b [TPHD] Add additional (blur) pass option for 4k+ res 2019-08-14 00:29:06 +02:00
getdls
91f6779539 [TMS] Pan n scan video for 21:9, 16:10
Cuts top n bottom  so video will fill whole screen for 21:9, while
keeping aspect
2019-08-11 19:52:41 +02:00
Crementif
50a397c02f [BotW] Group GPU workarounds to tidy stuff up
(Partially) solves https://github.com/slashiee/cemu_graphic_packs/issues/375 (tidying them makes a lot of sense). We can't change the order of the graphic packs (without a lot of work on our end), if you want to see this happen you should file a feature request on Cemu's bug tracker: http://bugs.cemu.info
2019-06-13 17:58:41 +02:00
M&M
68cf5205d7
Make NES undarken more accurate
I can't check easily
2019-06-11 00:54:19 -07:00
Zalnor
8be9ab3a66 Added NES/N64 Undarken Packs, and added more SNES Title IDs to Resolution Pack (#379)
* Update rules.txt

* Add files via upload

* Update d2a97b2fb99411a5_0000000000000079_ps.txt

* Update d2a97b2fb99411a5_0000000000000079_ps.txt

* Add files via upload

* Update and rename 2802e519ac163806_0000000000000079_ps.txt to 1494f789ce9ac901_000000000000000f_ps.txt

* Delete d2a97b2fb99411a5_0000000000000079_ps.txt

* Delete rules.txt

* Delete rules.txt

* Add files via upload
2019-06-10 14:43:55 -07:00
Michael
e2e271b73e Move GBA undarken to a separate pack 2019-06-09 20:19:17 -07:00
Crementif
7d0e88d469
Fix file difference caused by a Github Website commit
Blame 42d24c4c0d
2019-06-06 15:20:02 +02:00
CellHunter
42d24c4c0d
Calrity EDIT
One more time
2019-06-06 02:18:42 -05:00
Michael
6db65fccc1 BotW no AO pack
For stuff like the RT shader so you're not adding AO onto AO. Can cause graphic bugs.
2019-06-01 20:23:01 -07:00
Crementif
504c0c1e04 [Skylanders Imaginators] Fix gamepad and shadows, add shadow res pack
This resolves some issues that the pack previously had
2019-05-30 18:52:03 +02:00
Crementif
b34c078e60 [WWHD] Add EU and JAP title id's to resolution pack
Fixes https://github.com/slashiee/cemu_graphic_packs/issues/368
2019-05-27 16:37:03 +02:00
Crementif
b95bd222d2
[Bayonetta 2] Add portal workaround pack
Also removed the version indicator in Windwaker's contrasty file since any updates to that number would remove all the configuration set by the user for that pack.
2019-05-26 17:12:48 +02:00
Crementif
c152f7a8bb
[BotW] Bugfix for Clarity 2019-04-27 07:54:26 +02:00
Crementif
24785ee0e7
[BotW] Fix Clarity pack bug found by charmics
Should fix a greenish tone that would appear if you turn up the curves contrast too high.
2019-04-26 21:12:09 +02:00
Michael
477f71cf86 Revert "Improve performance with (almost) every game"
This reverts commit 2f5488c22e.
2019-04-01 19:54:41 -07:00
Michael
2f5488c22e Improve performance with (almost) every game 2019-03-31 22:45:26 -07:00
Crementif
e0fa6b5a3b Fix whitespace difference caused by Github's online editor 2019-03-24 14:46:43 +01:00
Crementif
f05c8408f3 [MK8] Add more multiplayer resolutions
Fixes https://github.com/slashiee/cemu_graphic_packs/issues/344 and https://github.com/slashiee/cemu_graphic_packs/issues/343
2019-03-21 16:15:44 +01:00
Crementif
0c9d64c0f0
[BotW] Add workaround this Cemu localization issue
Wasn't done properly enough ™️ , just kidding :p
2019-03-15 22:35:27 +01:00
Skal Fate
41c38f5568
Changed Categories for CelShade Pack and Distant Fog (#341)
* Changed Category For Cel-Shade & Distant Fog
2019-03-13 12:34:57 -06:00
Skal Fate
1a160d351d
Botw Cel-Shading Removal Pack and Distant Fog Removal Pack Uploaded (#340)
* Botw Cel-Shading Removal Pack Uploaded

* Botw Distant Fog Removal Pack Uploaded
2019-03-12 23:03:48 -06:00
getdls
6aaf69d97d [WWHD] Add Positive LOD option for ocean mipmap fade. 2019-02-25 23:55:04 +01:00
getdls
2c4628b71f [WWHD] Negative relative LOD bias 2019-02-25 23:15:56 +01:00
getdls
85d267b88d [WWHD] - Fix flashing horizon and AO workaround 2019-02-24 03:15:03 +01:00
getdls
0ee511522f [TPHD] Scale all GUI elements, + format conversion 2019-02-05 01:06:27 +01:00
getdls
4c750e4898 [TPHD] Truncated contrast presets -avatar-icon.png 2019-01-31 20:43:35 +01:00
getdls
906206fe53 Revert "[TPHD] Truncated contrast presets"
This reverts commit d4116ba63d.
2019-01-31 20:41:31 +01:00
getdls
d4116ba63d [TPHD] Truncated contrast presets 2019-01-31 20:38:56 +01:00
getdls
87a61e7501 [NG3] Ultrawide patch, [TPHD] Res tweaks for better alpha 2019-01-25 00:44:39 +01:00
MelonSpeedruns
0cac92a507 [WWHD] Add No SSAO pack
Thanks to MelonSpeedruns!
2019-01-24 20:47:42 +01:00
getdls
079da6f21e [TPHD] Misc quality tweaks for high resolution , QL
TPHD  QL tweaks aka, sunday gaming delayed

Resolution
* Sharper, unscaled blur fixed. See contrasty note
* Resolutions 4k and above scale sub viewports 75-> 50% of the main res.
7680x4320 is now 30 fps stable on a 1070, SSAA looks sweet.
* Added some off-aspect custom res with horizontal res x2. Good for SSAA
fixing shimmering as it's mostly horizontal in TPHD

Contrasty
* Sharper, unscaled blur fixed. Note, contrasty must be pre-selected at
start to override same shader in resolution folder
* Minor tweaks to cold setting

Fancy FX
*Added option to disable blur, just keeping other tweaks active.
Realized that half scaling sub-view port mostly replaces fancy fX :/
*Tweaked to somewhat scale, tries to emulate original look by default.
Ie 4x res = 4x blur "qualitative look" (not the same as nr of passes)
*Added "defocus" looks blurrier by scaling incorrectly, masked by more
draw passes. This is similar to the old default

Not happy about the results of moving blur from res folder, too many
drawbacks as quality of scaling really needs to be per-setting.
Will probably deprecate if things start to break again. Maybe global
variables in the future?
2019-01-21 00:13:06 +01:00
getdls
1e7a39f52d [XCX] Fix skell view boken due to format conversion 2019-01-16 22:59:35 +01:00
RandomGuyJCI
e748f9bccb Fix preset name(s) (#325) 2019-01-16 13:47:43 -08:00
getdls
5c1bbeeeb9 [XCX] JPN v16 (1.0) 60 fps, no offline, fov. Contrasty tweaks 2019-01-15 00:36:06 +01:00
CellHunter
64261f9733
Update thy clarity preset 2019-01-12 15:15:25 -06:00
getdls
c3ed12dd95 [XCX] fix video 2019-01-10 23:46:26 +01:00
getdls
b39736ed39 [NSMBU] Remove tile-map from format conversion 2019-01-10 18:17:20 +01:00
getdls
3a86a8ce74 [NSMBU] Default to basic build / move custom shaders to Enhancements 2019-01-10 00:34:19 +01:00
getdls
c768252fed [TP] Default to basic build / move custom shaders to Enhancements 2019-01-09 22:05:34 +01:00
Crementif
b517bd04ab [BotW] Add clarity presets
Also, still trying to fix the website... soon™️
2019-01-08 22:43:06 +01:00
getdls
3d3b2725f6 [TPHD] Fix contrasty overwriting blur fix 2019-01-08 00:33:23 +01:00
Crementif
d554dc2ca7 Revert "Reworked website!"
This reverts commit 27f90c4326.
2019-01-08 00:06:16 +01:00
Crementif
27f90c4326 Reworked website!
Let me know if you've got any feedback or things you would want to see on the site.

Also, added some clarity updates.
2019-01-08 00:04:11 +01:00
Skal Fate
33c0a88ef7
BotW AA and XenobladeX AA, Removed the need for Shader4 Extension and More (#319)
* Update and rename Enhancements/BreathOfTheWild_!AntiAliasing/0f2b9ee517917425_00000000000003c9_ps.txt to Enhancements/BreathOfTheWild_AntiAliasing/0f2b9ee517917425_00000000000003c9_ps.txt

Removed the need for the extra shader4 extension and other fixups

* Update and rename Enhancements/BreathOfTheWild_!AntiAliasing/f14bb57cd5c9cb77_00000000000003c9_ps.txt to Enhancements/BreathOfTheWild_AntiAliasing/f14bb57cd5c9cb77_00000000000003c9_ps.txt

Removed the need for the extra shader4 extension and other fixups

* Update 59df1c7e1806366c_00000000000003c9_ps.txt

Improved Native AA and Removed the need for the extra shader4 extension and other fixups

* Update rules.txt

Setup Nvidia FXAA as Default as is the best looking.

* Update rules.txt

Setup Nvidia FXAA as the Default Preset as it's the best looking.

* Rename Enhancements/BreathOfTheWild_!AntiAliasing/rules.txt to Enhancements/BreathOfTheWild_AntiAliasing/rules.txt
2019-01-06 15:46:59 -07:00
getdls
047fa1e861 [XCX] Fix skell view, FX format conversion disabled
Breaks reflections... back to ugly sky
2019-01-06 15:52:04 +01:00
Michael
7b8cc287e6 Attempt to fix Fatal Frame EUR patches & fix some inconsistencies with packs 2019-01-05 17:35:10 -08:00
getdls
9bb45c0b83 [XCX] Re-re-adds custom shaders removed in red-sky fix as enhancements
Re-adds custom shaders  removed in red-sky fix as enhancements
Initial commit is likely broken on some resolutions and Intel GPUs
To-do Detecting res from shader instead of variables and new shader
dumps
Baseline is: Works on nvidia.  Intel/AMD/3dfx/Integrated GPUs, not my
problem.
2019-01-05 18:46:46 +01:00
getdls
0960a6fd09 Revert "[XCX] Re-adds custom shaders removed in red-sky fix as enhancements"
This reverts commit 76e072e4e2.
2019-01-05 11:01:09 +01:00
getdls
76e072e4e2 [XCX] Re-adds custom shaders removed in red-sky fix as enhancements
Re-adds custom shaders  removed in red-sky fix as enhancements
Initial commit is likely broken on some resolutions.
Will need further fixes detecting res from shader instead of variables
and new shader dumps
Baseline is: Works on nvidia.  Intel/AMD/3dfx someone else will need to
fix
2019-01-05 10:58:19 +01:00
getdls
70e4576ba3 [TPHD] Contrasty tweaks to neutral and cold
White balance better matched to actual histogram.
*Neutral closer to original look, jwhite balanced bloom
*Cold, tweaked to be neutral cold , not just blue shadows
2019-01-04 16:47:32 +01:00
Michael
9335b35cd7 remove splatoon splatfx
i really broke the colors when trying to port over the latest clarity version to it and thus it really does not look good. if it were to be brought back, it should have the clarity shader from botw properly ported
2019-01-03 20:54:10 -08:00
Skal Fate
f40f861843
Botw Hetsu Menu Scale Fixup, Botw AA Update, DonkeyKong Name Fixup, XenobladeX AA Big Update (#316)
* Update and rename Resolutions/TropicalFreeze_Resolution/patches.txt to Resolutions/DonkeyKong_TropicalFreeze_Resolution/patches.txt

Fixed up game name

* Rename Resolutions/TropicalFreeze_Resolution/rules.txt to Resolutions/DonkeyKong_TropicalFreeze_Resolution/rules.txt

fixed up game name

* Rename Resolutions/DonkeyKong_TropicalFreeze_Resolution/patches.txt to Resolutions/DonkeyKongTropicalFreeze_Resolution/patches.txt

name fix

* Rename Resolutions/DonkeyKong_TropicalFreeze_Resolution/rules.txt to Resolutions/DonkeyKongTropicalFreeze_Resolution/rules.txt

name fix

* Update rules.txt

Korok Forest Hetsu Menu Fix

* Update rules.txt

Korok Hetsu Menu Fix

* Update 0f2b9ee517917425_00000000000003c9_ps.txt

Inventory aa slight upgrade

* Update f14bb57cd5c9cb77_00000000000003c9_ps.txt

small fix up

* Rename Enhancements/TropicalFreeze_!AARemoval/10ccf0cc1234d069_00000000000003c9_ps.txt to Enhancements/DonkeyKongTropicalFreeze_-AARemoval/10ccf0cc1234d069_00000000000003c9_ps.txt

name fix

* Rename Enhancements/TropicalFreeze_!AARemoval/bafe6c9c37bfca4d_00000000000003c9_ps.txt to Enhancements/DonekyKongTropicalFreeze_-AARemoval/bafe6c9c37bfca4d_00000000000003c9_ps.txt

name fix

* Rename Enhancements/DonekyKongTropicalFreeze_-AARemoval/bafe6c9c37bfca4d_00000000000003c9_ps.txt to Enhancements/DonkeyKongTropicalFreeze_-AARemoval/bafe6c9c37bfca4d_00000000000003c9_ps.txt

name fix

* Rename Enhancements/TropicalFreeze_!AARemoval/rules.txt to Enhancements/DonkeyKongTropicalFreeze_-AARemoval/rules.txt

name fix

* Delete 497a209b49886520_0000000000000000_vs.txt

not needed hopefully

* Update and rename Enhancements/XenobladeX_!AARemoval/59df1c7e1806366c_00000000000003c9_ps.txt to Enhancements/XenobladeX_AntiAliasing/59df1c7e1806366c_00000000000003c9_ps.txt

Proper Native AA and FXAA

* Update and rename Enhancements/XenobladeX_!AARemoval/rules.txt to Enhancements/XenobladeX_AntiAliasing/rules.txt

presets yeah baby
2019-01-03 21:39:34 -07:00
Michael
70f719731a Fix naming of ZombiU packs 2019-01-03 01:22:25 -08:00
Michael
1e84898525 add dr luigi packs
anti-aliasing is still a work in progress, need to figure out how to properly fix it
2019-01-02 15:03:32 -08:00
Skal Fate
fec10e3071
New Blur Pack Added for Tokyo Mirage & Removed negative -0.5 cemu error for XenobladeX (#310)
* Update rules.txt

fixed preset parsing error

* Create rules.txt

created the rules file for adjust blur pack

* Add files via upload

uploaded the shader responsible
2018-12-24 12:46:53 -07:00
Michael
5c30bd152b Add WWHD GameCube Color Grading preset to Contrasty pack
This is just using the values from the old pack. from what i can tell, most of the pack does the job anyway; adding this preset ends up making the game a little darker

Also made some bug fixes with it.
2018-12-18 17:38:47 -08:00
Skal Fate
27a8ac8b46
Botw FXAA Big Update. Buttery Smooth (#297)
* Update 0f2b9ee517917425_00000000000003c9_ps.txt

Small improvement to fxaa inventory.

* Update f14bb57cd5c9cb77_00000000000003c9_ps.txt

Major Update to World FXAA. Super Smooth.

* Update rules.txt

Slight changes.
2018-12-11 18:07:26 -07:00
Crementif
cfbac2ce80 [Pikmin 3] Fix shadows pack 2018-12-08 00:25:31 +01:00
Crementif
c29d53bc43 [Pikmin 3] Add Shadows Pack and blur+bloom fixes
Also added Pikmin 3 to the list on the website.
2018-12-07 23:48:05 +01:00
Michael
3cbdbd3a6f Fix BotW Antialiasing pack always using FXAA 2018-12-04 16:18:00 -08:00
Skal Fate
66f1c88f56
BotwFxaa Improvement and Mario Kart 8 Contrasty Error Fix (#289)
* Update f14bb57cd5c9cb77_00000000000003c9_ps.txt

Fxaa Improved final

* Update rules.txt

had a negative number in High Contrasty which created a cemu log error
2018-12-04 01:27:49 -07:00
Skal Fate
5df59c72e3
Botw AA World/Inventory and FXAA Improved Further (#288)
* Update rules.txt

* Update 0f2b9ee517917425_00000000000003c9_ps.txt

botw Improved Inventory AA

* Update f14bb57cd5c9cb77_00000000000003c9_ps.txt

Improved World AA

* Update 0f2b9ee517917425_00000000000003c9_ps.txt

update resolution pack shader code inventory aa

* Update f14bb57cd5c9cb77_00000000000003c9_ps.txt

update botw world aa resolution pack
2018-12-03 21:42:04 -07:00
Skal Fate
82b942bf78
Update 0f2b9ee517917425_00000000000003c9_ps.txt
Fixed up a comment symbol mistake.
2018-12-03 00:10:30 -07:00
Skal Fate
3ff3c36a11
BOTW : Fixed up Inventory Native AA and FXAA World AA (#287)
* Update 0f2b9ee517917425_00000000000003c9_ps.txt
Resolution pack Inventory AA

* Update f14bb57cd5c9cb77_00000000000003c9_ps.txt
Resolution pack World AA

* Update 0f2b9ee517917425_00000000000003c9_ps.txt
AA Pack

* Update f14bb57cd5c9cb77_00000000000003c9_ps.txt
AA Pack

* Update rules.txt
AA Pack

Fixed up Inventory Native AA and FXAA World AA
2018-12-02 22:05:15 -07:00
Skal Fate
774b0a2fe7
Botw Inventory AA Fixup (#285)
* Delete disabled_58b8411478181d7f_0000000000000079_ps.txt

not needed

* Delete disabled_58b84124c01721ff_0000000000000079_ps.txt

not needed

* Update 0f2b9ee517917425_00000000000003c9_ps.txt

Inventory AA Fixup for 1080p by rounding up

. Anything between 720p-1080p (1.0-1.5) would get rounded down to 1.0 and therefore messy/fuzzy inventory especially in 1080p. The reason it got rounded down is because all the vector data types are initialized as integers instead of normal floats for accuracy.

* Update rules.txt

Added 1600x900 resolution per request, that resolution no longer glitches out due to cemu workaround. We may never know now lol.
2018-11-30 20:19:14 -07:00