2015-12-13 21:21:07 -04:00
|
|
|
$input v_position, v_texcoord0
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2015 Andrew Mac. All rights reserved.
|
2016-01-01 00:11:04 -08:00
|
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
2015-12-13 21:21:07 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../common/common.sh"
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2015-12-13 09:48:21 -08:00
|
|
|
gl_FragColor = vec4(v_texcoord0.x, v_texcoord0.y, v_position.y / 50.0, 1.0);
|
2015-12-13 21:21:07 -04:00
|
|
|
}
|