mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
13 lines
231 B
Scala
13 lines
231 B
Scala
$input a_position
|
|
|
|
/*
|
|
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
*/
|
|
|
|
#include "bgfx_shader.sh"
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(a_position, 1.0);
|
|
}
|