2014-07-04 20:09:31 -04:00
|
|
|
$input v_texcoord0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2014 Dario Manesku. All rights reserved.
|
|
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <bgfx_shader.sh>
|
|
|
|
|
2014-11-22 13:08:18 -05:00
|
|
|
uniform vec4 u_imageLodEnabled;
|
2014-11-22 14:26:34 -05:00
|
|
|
SAMPLER2D(s_texColor, 0);
|
2014-07-04 20:09:31 -04:00
|
|
|
|
2014-11-22 13:08:18 -05:00
|
|
|
#define u_imageLod u_imageLodEnabled.x
|
|
|
|
#define u_imageEnabled u_imageLodEnabled.y
|
|
|
|
|
2014-07-04 20:09:31 -04:00
|
|
|
void main()
|
|
|
|
{
|
2014-11-22 14:26:34 -05:00
|
|
|
vec3 color = texture2DLod(s_texColor, v_texcoord0, u_imageLod).xyz;
|
2014-11-22 13:08:18 -05:00
|
|
|
float alpha = 0.2 + 0.8*u_imageEnabled;
|
|
|
|
gl_FragColor = vec4(color, alpha);
|
2014-07-04 20:09:31 -04:00
|
|
|
}
|