bgfx/tools/texturev/vs_texture_cube.sc

17 lines
367 B
Python
Raw Normal View History

2016-04-22 08:12:35 +03:00
$input a_position, a_texcoord0, a_color0
$output v_texcoord0, v_color0
/*
2021-01-15 02:53:49 +03:00
* Copyright 2011-2021 Branimir Karadzic. All rights reserved.
2017-01-01 11:18:41 +03:00
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2016-04-22 08:12:35 +03:00
*/
#include <bgfx_shader.sh>
void main()
{
gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
v_texcoord0 = a_texcoord0;
v_color0 = a_color0;
}