mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
bc9ef95643
In the cases where we support the binding layout keyword, use it for more than binding UBO location. This changes it so it is supported for samplers as well. Instances when this is enabled is if a device supports GL_ARB_shading_language_420pack, or if it supports GLES 3.10.
14 lines
239 B
GLSL
14 lines
239 B
GLSL
SAMPLER_BINDING(9) uniform sampler2D samp9;
|
|
|
|
out vec4 ocol0;
|
|
in vec2 uv0;
|
|
|
|
uniform vec4 resolution;
|
|
|
|
void main()
|
|
{
|
|
vec4 a = texture(samp9, uv0+resolution.zw);
|
|
vec4 b = texture(samp9, uv0-resolution.zw);
|
|
ocol0 = ( a*a*1.3 - b ) * 8.0;
|
|
}
|