mirror of
https://github.com/holub/mame
synced 2025-07-18 15:57:14 +03:00

* Update to bgfx a93a714632b79b5ddbf5c86ac323fa9b76ed3433 Co-authored-by: Бранимир Караџић <branimirkaradzic@gmail.com>
17 lines
366 B
Python
17 lines
366 B
Python
$input a_position, a_color0, a_texcoord0
|
|
$output v_color0, v_texcoord0
|
|
|
|
/*
|
|
* Copyright 2011-2022 Branimir Karadzic. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
|
*/
|
|
|
|
#include <bgfx_shader.sh>
|
|
|
|
void main()
|
|
{
|
|
gl_Position = mul(u_modelViewProj, vec4(a_position, 1.0) );
|
|
v_color0 = a_color0;
|
|
v_texcoord0 = a_texcoord0;
|
|
}
|