mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
17 lines
354 B
Python
17 lines
354 B
Python
$input a_position, a_texcoord0
|
|
$output v_position, v_texcoord0
|
|
|
|
/*
|
|
* Copyright 2015 Andrew Mac. All rights reserved.
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
*/
|
|
|
|
#include "../common/common.sh"
|
|
|
|
void main()
|
|
{
|
|
v_position = a_position.xyz;
|
|
v_texcoord0 = a_texcoord0;
|
|
|
|
gl_Position = mul(u_modelViewProj, vec4(v_position.xyz, 1.0));
|
|
}
|