mame/3rdparty/bgfx/examples/common/debugdraw/vs_debugdraw_fill.sc
2016-03-08 12:58:10 +01:00

14 lines
261 B
Scala

$input a_position
/*
* Copyright 2011-2016 Branimir Karadzic. 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) );
}