mirror of
https://github.com/bkaradzic/bgfx.git
synced 2026-02-17 20:52:36 +01:00
Added 07-callback example.
This commit is contained in:
17
examples/07-callback/fs_callback.sc
Normal file
17
examples/07-callback/fs_callback.sc
Normal file
@@ -0,0 +1,17 @@
|
||||
$input v_world, v_color0
|
||||
|
||||
/*
|
||||
* Copyright 2011-2012 Branimir Karadzic. All rights reserved.
|
||||
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include "../common/common.sh"
|
||||
|
||||
void main()
|
||||
{
|
||||
vec3 normal = normalize(cross(dFdx(v_world), dFdy(v_world) ) );
|
||||
vec3 lightDir = vec3(0.0, 0.0, 1.0);
|
||||
float ndotl = max(dot(normal, lightDir), 0.0);
|
||||
float spec = pow(ndotl, 30.0);
|
||||
gl_FragColor = pow(pow(v_color0, vec4_splat(2.2) ) * ndotl + spec, vec4_splat(1.0/2.2) );
|
||||
}
|
||||
Reference in New Issue
Block a user