bgfx/examples/38-bloom/fs_upsample.sc

36 lines
1.1 KiB
Python
Raw Normal View History

$input v_texcoord0
2018-09-21 01:49:56 +03:00
/*
* Copyright 2018 Eric Arnebäck. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
#include "../common/common.sh"
SAMPLER2D(s_tex, 0);
uniform vec4 u_pixelSize;
uniform vec4 u_intensity;
void main()
{
vec2 halfpixel = 1.0 * vec2(u_pixelSize.x, u_pixelSize.y);
vec2 uv = v_texcoord0.xy;
2018-09-21 01:49:56 +03:00
vec4 sum = vec4(0.0, 0.0, 0.0, 0.0);
2018-09-21 01:49:56 +03:00
sum += (2.0 / 16.0) * texture2D(s_tex, uv + vec2(-halfpixel.x , 0.0));
sum += (2.0 / 16.0) * texture2D(s_tex, uv + vec2(0.0, halfpixel.y));
sum += (2.0 / 16.0) * texture2D(s_tex, uv + vec2(halfpixel.x , 0.0));
sum += (2.0 / 16.0) * texture2D(s_tex, uv + vec2(0.0, -halfpixel.y));
2018-09-21 01:49:56 +03:00
sum += (1.0 / 16.0) * texture2D(s_tex, uv + vec2(-halfpixel.x, -halfpixel.y));
sum += (1.0 / 16.0) * texture2D(s_tex, uv + vec2(-halfpixel.x, halfpixel.y));
sum += (1.0 / 16.0) * texture2D(s_tex, uv + vec2(halfpixel.x, -halfpixel.y));
sum += (1.0 / 16.0) * texture2D(s_tex, uv + vec2(halfpixel.x, halfpixel.y));
sum += (4.0 / 16.0) * texture2D(s_tex, uv);
2018-09-21 01:49:56 +03:00
gl_FragColor.xyzw = u_intensity.x * sum;
}