2013-02-21 21:07:31 -08:00
|
|
|
$input v_texcoord0
|
|
|
|
|
|
|
|
/*
|
2018-01-01 11:16:06 -08:00
|
|
|
* Copyright 2011-2018 Branimir Karadzic. All rights reserved.
|
2016-01-01 00:11:04 -08:00
|
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
2013-02-21 21:07:31 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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
|
|
|
}
|