bgfx/examples/09-hdr/vs_hdr_skybox.sc

16 lines
327 B
Python
Raw Normal View History

2013-02-27 00:24:16 -05:00
$input a_position, a_texcoord0
$output v_texcoord0
/*
2016-01-01 03:11:04 -05:00
* Copyright 2011-2016 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2013-02-27 00:24:16 -05:00
*/
#include "../common/common.sh"
void main()
{
gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
v_texcoord0 = a_texcoord0;
}