2011-11-30 21:42:41 +00:00
|
|
|
//#version 420 // Keep it for editor detection
|
2011-11-21 22:36:03 +00:00
|
|
|
|
2013-07-11 17:08:42 +00:00
|
|
|
in SHADER
|
|
|
|
{
|
|
|
|
vec4 p;
|
|
|
|
vec2 t;
|
2016-09-18 20:32:44 +00:00
|
|
|
vec4 c;
|
2013-07-11 17:08:42 +00:00
|
|
|
} PSin;
|
|
|
|
|
2013-05-27 16:53:38 +00:00
|
|
|
#ifdef FRAGMENT_SHADER
|
2011-11-21 22:36:03 +00:00
|
|
|
|
2016-06-05 14:42:52 +00:00
|
|
|
layout(std140, binding = 11) uniform cb11
|
|
|
|
{
|
|
|
|
vec2 ZrH;
|
|
|
|
float hH;
|
|
|
|
};
|
|
|
|
|
2011-12-07 22:05:46 +00:00
|
|
|
layout(location = 0) out vec4 SV_Target0;
|
2011-11-21 22:36:03 +00:00
|
|
|
|
2011-11-30 21:42:41 +00:00
|
|
|
// TODO ensure that clip (discard) is < 0 and not <= 0 ???
|
|
|
|
void ps_main0()
|
2011-11-21 22:36:03 +00:00
|
|
|
{
|
2016-04-24 08:54:39 +00:00
|
|
|
if (fract(PSin.t.y * hH) - 0.5 < 0.0)
|
2013-07-11 17:08:42 +00:00
|
|
|
discard;
|
2011-11-30 21:42:41 +00:00
|
|
|
// I'm not sure it impact us but be safe to lookup texture before conditional if
|
|
|
|
// see: http://www.opengl.org/wiki/GLSL_Sampler#Non-uniform_flow_control
|
2016-04-24 08:54:39 +00:00
|
|
|
vec4 c = texture(TextureSampler, PSin.t);
|
2011-11-21 22:36:03 +00:00
|
|
|
|
2011-11-30 21:42:41 +00:00
|
|
|
SV_Target0 = c;
|
2011-11-21 22:36:03 +00:00
|
|
|
}
|
|
|
|
|
2011-11-30 21:42:41 +00:00
|
|
|
void ps_main1()
|
2011-11-21 22:36:03 +00:00
|
|
|
{
|
2016-04-24 08:54:39 +00:00
|
|
|
if (0.5 - fract(PSin.t.y * hH) < 0.0)
|
2013-07-11 17:08:42 +00:00
|
|
|
discard;
|
2011-11-30 21:42:41 +00:00
|
|
|
// I'm not sure it impact us but be safe to lookup texture before conditional if
|
|
|
|
// see: http://www.opengl.org/wiki/GLSL_Sampler#Non-uniform_flow_control
|
2016-04-24 08:54:39 +00:00
|
|
|
vec4 c = texture(TextureSampler, PSin.t);
|
2011-11-21 22:36:03 +00:00
|
|
|
|
2011-11-30 21:42:41 +00:00
|
|
|
SV_Target0 = c;
|
2011-11-21 22:36:03 +00:00
|
|
|
}
|
|
|
|
|
2011-11-30 21:42:41 +00:00
|
|
|
void ps_main2()
|
2011-11-21 22:36:03 +00:00
|
|
|
{
|
2016-04-24 08:54:39 +00:00
|
|
|
vec4 c0 = texture(TextureSampler, PSin.t - ZrH);
|
|
|
|
vec4 c1 = texture(TextureSampler, PSin.t);
|
|
|
|
vec4 c2 = texture(TextureSampler, PSin.t + ZrH);
|
2011-11-21 22:36:03 +00:00
|
|
|
|
2013-07-12 21:12:34 +00:00
|
|
|
SV_Target0 = (c0 + c1 * 2.0f + c2) / 4.0f;
|
2011-11-21 22:36:03 +00:00
|
|
|
}
|
|
|
|
|
2011-11-30 21:42:41 +00:00
|
|
|
void ps_main3()
|
2011-11-21 22:36:03 +00:00
|
|
|
{
|
2016-04-24 08:54:39 +00:00
|
|
|
SV_Target0 = texture(TextureSampler, PSin.t);
|
2011-11-21 22:36:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|