mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 02:25:37 -05:00
13 lines
238 B
Scala
13 lines
238 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 = vec4(a_position, 1.0);
|
|
}
|