bgfx/examples/08-update/fs_update.sc

16 lines
280 B
Python
Raw Normal View History

2013-02-21 21:07:31 -08:00
$input v_texcoord0
/*
2015-01-02 14:43:11 -08:00
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
2013-02-21 21:07:31 -08:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#include "../common/common.sh"
2015-05-28 15:27:00 -07:00
SAMPLERCUBE(s_texCube, 0);
2013-02-21 21:07:31 -08:00
void main()
{
2015-05-28 15:27:00 -07:00
gl_FragColor = textureCube(s_texCube, v_texcoord0);
2013-02-21 21:07:31 -08:00
}