mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2024-11-22 17:49:17 +01:00
[MK8] fix 1080 bloom
This commit is contained in:
parent
3c8958ca35
commit
b68512267b
@ -4,7 +4,7 @@
|
||||
#extension GL_ARB_shading_language_packing : enable
|
||||
// shader 2e78a0d0a0aa66bb
|
||||
// Used for: Horizontal (Menu) Bloom Blur
|
||||
const float resScale = ($width/$gameWidth);
|
||||
const float resScale = intBitsToFloat($width)/intBitsToFloat($gameWidth);
|
||||
|
||||
uniform ivec4 uf_remappedVS[1];
|
||||
uniform vec2 uf_windowSpaceToClipSpaceTransform;
|
||||
|
@ -4,7 +4,7 @@
|
||||
#extension GL_ARB_shading_language_packing : enable
|
||||
// shader 74126253134563de
|
||||
// Used for: Vertical Menu Background Blur
|
||||
const float resScale = ($height/$gameHeight);
|
||||
const float resScale = intBitsToFloat($width)/intBitsToFloat($gameWidth);
|
||||
|
||||
uniform ivec4 uf_remappedVS[5];
|
||||
uniform vec2 uf_windowSpaceToClipSpaceTransform;
|
||||
|
@ -4,7 +4,7 @@
|
||||
#extension GL_ARB_shading_language_packing : enable
|
||||
// shader ad3014302e0e49bf
|
||||
// Used for: Stage Select & Menu Background Horizontal Blur
|
||||
const float resScale = ($height/$gameHeight);
|
||||
const float resScale = intBitsToFloat($width)/intBitsToFloat($gameWidth);
|
||||
|
||||
uniform ivec4 uf_remappedVS[5];
|
||||
uniform vec2 uf_windowSpaceToClipSpaceTransform;
|
||||
|
@ -4,7 +4,7 @@
|
||||
#extension GL_ARB_shading_language_packing : enable
|
||||
// shader dd7a19be01b7b1aa
|
||||
// Used for: Vertical (Menu) Bloom Blur
|
||||
const float resScale = ($height/$gameHeight);
|
||||
const float resScale = intBitsToFloat($width)/intBitsToFloat($gameWidth);
|
||||
|
||||
uniform ivec4 uf_remappedVS[1];
|
||||
uniform vec2 uf_windowSpaceToClipSpaceTransform;
|
||||
|
Loading…
Reference in New Issue
Block a user