bgfx/examples/02-metaballs/fs_metaballs.sc

17 lines
440 B
Python
Raw Normal View History

2013-02-22 09:07:31 +04:00
$input v_normal, v_color0
/*
2022-01-15 22:59:06 +03:00
* Copyright 2011-2022 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
2013-02-22 09:07:31 +04:00
*/
#include "../common/common.sh"
void main()
{
vec3 lightDir = vec3(0.0, 0.0, -1.0);
2013-05-21 07:45:22 +04:00
float ndotl = dot(normalize(v_normal), lightDir);
2013-02-22 09:07:31 +04:00
float spec = pow(ndotl, 30.0);
2013-05-21 07:45:22 +04:00
gl_FragColor = vec4(pow(pow(v_color0.xyz, vec3_splat(2.2) ) * ndotl + spec, vec3_splat(1.0/2.2) ), 1.0);
2013-02-22 09:07:31 +04:00
}