16 lines
313 B
Python
16 lines
313 B
Python
|
$input a_position, a_texcoord0
|
||
|
$output v_texcoord0
|
||
|
|
||
|
/*
|
||
|
* Copyright 2015 Dario Manesku. All rights reserved.
|
||
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
||
|
*/
|
||
|
|
||
|
#include <bgfx_shader.sh>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
|
||
|
v_texcoord0 = a_texcoord0;
|
||
|
}
|