bgfx/examples/27-terrain/fs_terrain.sc

14 lines
284 B
Python
Raw Normal View History

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