mirror of
https://github.com/cemu-project/cemu_graphic_packs.git
synced 2024-11-23 18:19:16 +01:00
df950f92d5
the old way used in menu blur is kinda hacky (cuz i found the games's original blur is linear sampled 5x5, not jump lines), and seems to have some negative effect when used on bloom (pixelation) so back to increasing taps, however as the image size goes up, it becomes quite harder/impossible to get the same blurry result for some reason. 5x5 menu blur ends up in 100 taps in 10k to get the similar blur, and 9x9 used in bloom is even blurrier... so i give up trying to get the same blur by increasing a lot taps, but just scale linearly to fix pixelation first and wait for a better solution. also the texturesize() returns weird value when mipmap is present, so changed to calculate the image size from the data passed from vertex shader (as we already figured out what blur is used so offset is known).
37 lines
1.5 KiB
Plaintext
37 lines
1.5 KiB
Plaintext
#version 420
|
|
#extension GL_ARB_texture_gather : enable
|
|
// shader 12d8627fe9906695 // vertical bloom 1440
|
|
layout(binding = 0) uniform sampler2D textureUnitPS0;// Tex0 addr 0xf4240800 res 96x96x1 dim 1 tm: 4 format 0005 compSel: 0 4 4 5 mipView: 0x0 (num 0x1) sliceView: 0x0 (num 0x1) Sampler0 ClampX/Y/Z: 2 2 2 border: 1
|
|
layout(location = 0) in vec4 passParameterSem0;
|
|
layout(location = 1) in vec4 passParameterSem1;
|
|
layout(location = 0) out vec4 passPixelColor0;
|
|
uniform vec2 uf_fragCoordScale;
|
|
|
|
float data = passParameterSem0.z - passParameterSem0.w;
|
|
float h = data / 1.38461538 * uf_fragCoordScale.y;
|
|
|
|
uniform float o_weight[] = float[]( 0.29411765, 0.35294118 );
|
|
uniform float o_offset[] = float[]( 0.00000000, 1.33333333 );
|
|
|
|
uniform float weight[] = float[]( 0.16122494, 0.26575540, 0.12180456, 0.02865990, 0.00316767 );
|
|
uniform float offset[] = float[]( 0.00000000, 1.44000000, 3.36000000, 5.28000000, 7.20000000 );
|
|
|
|
void main()
|
|
{
|
|
vec2 R0f = vec2(passParameterSem0.x, passParameterSem0.w);
|
|
|
|
vec4 R1f = texture( textureUnitPS0, R0f ) * weight[0];
|
|
for (int i=1; i<5; i++) {
|
|
R1f += texture( textureUnitPS0, R0f + vec2(0.0, offset[i]*h) ) * weight[i];
|
|
R1f += texture( textureUnitPS0, R0f - vec2(0.0, offset[i]*h) ) * weight[i];
|
|
}
|
|
|
|
vec4 R2f = texture( textureUnitPS0, R0f ) * o_weight[0];
|
|
for (int i=1; i<2; i++) {
|
|
R2f += texture( textureUnitPS0, R0f + vec2(0.0, o_offset[i]*h) ) * o_weight[i];
|
|
R2f += texture( textureUnitPS0, R0f - vec2(0.0, o_offset[i]*h) ) * o_weight[i];
|
|
}
|
|
|
|
passPixelColor0 = ( (uf_fragCoordScale.y == 1.0) ? R2f : R1f );
|
|
}
|