mirror of
https://github.com/holub/mame
synced 2025-06-23 12:58:37 +03:00

* Update to bgfx a93a714632b79b5ddbf5c86ac323fa9b76ed3433 Co-authored-by: Бранимир Караџић <branimirkaradzic@gmail.com>
14 lines
283 B
Scala
14 lines
283 B
Scala
$input v_position, v_texcoord0
|
|
|
|
/*
|
|
* Copyright 2015 Andrew Mac. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
|
*/
|
|
|
|
#include "../common/common.sh"
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = vec4(v_texcoord0.x, v_texcoord0.y, v_position.y / 50.0, 1.0);
|
|
}
|