2014-10-03 00:29:14 -04:00
|
|
|
$input v_normal
|
|
|
|
|
|
|
|
/*
|
2015-01-02 17:43:11 -05:00
|
|
|
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
|
2014-10-03 00:29:14 -04:00
|
|
|
* 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-10-03 00:29:14 -04:00
|
|
|
SAMPLERCUBE(s_texColor, 0);
|
|
|
|
|
2014-11-22 13:08:18 -05:00
|
|
|
#define u_imageLod u_imageLodEnabled.x
|
|
|
|
#define u_imageEnabled u_imageLodEnabled.y
|
|
|
|
|
2014-10-03 00:29:14 -04:00
|
|
|
void main()
|
|
|
|
{
|
2014-11-22 13:08:18 -05:00
|
|
|
vec3 color = textureCubeLod(s_texColor, v_normal, u_imageLod).xyz;
|
|
|
|
float alpha = 0.2 + 0.8*u_imageEnabled;
|
|
|
|
gl_FragColor = vec4(color, alpha);
|
2014-10-03 00:29:14 -04:00
|
|
|
}
|