bgfx/examples/08-update/fs_update.sc

16 lines
287 B
Python
Raw Normal View History

2013-02-22 00:07:31 -05:00
$input v_texcoord0
/*
2016-01-01 03:11:04 -05:00
* Copyright 2011-2016 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2013-02-22 00:07:31 -05:00
*/
#include "../common/common.sh"
2015-05-28 18:27:00 -04:00
SAMPLERCUBE(s_texCube, 0);
2013-02-22 00:07:31 -05:00
void main()
{
2015-05-28 18:27:00 -04:00
gl_FragColor = textureCube(s_texCube, v_texcoord0);
2013-02-22 00:07:31 -05:00
}