mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
15 lines
307 B
Scala
15 lines
307 B
Scala
$input a_position, a_normal
|
|
$output v_normal
|
|
|
|
/*
|
|
* Copyright 2011-2013 Branimir Karadzic. All rights reserved.
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
*/
|
|
|
|
#include <bgfx_shader.sh>
|
|
|
|
void main()
|
|
{
|
|
gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
|
|
v_normal = a_normal.xyz;
|
|
}
|