bgfx/examples/08-update/fs_update.sc

16 lines
295 B
Python
Raw Normal View History

2013-01-06 20:53:45 -05:00
$input v_texcoord0
/*
2013-01-13 13:57:24 -05:00
* Copyright 2011-2013 Branimir Karadzic. All rights reserved.
2013-01-06 20:53:45 -05:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#include "../common/common.sh"
SAMPLERCUBE(u_texCube, 0);
void main()
{
gl_FragColor = textureCube(u_texCube, v_texcoord0);
}