2013-02-22 09:07:31 +04:00
|
|
|
$input v_texcoord0
|
|
|
|
|
|
|
|
/*
|
2022-01-15 22:59:06 +03:00
|
|
|
* Copyright 2011-2022 Branimir Karadzic. All rights reserved.
|
|
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
2013-02-22 09:07:31 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../common/common.sh"
|
|
|
|
|
2015-05-29 01:27:00 +03:00
|
|
|
SAMPLERCUBE(s_texCube, 0);
|
2013-02-22 09:07:31 +04:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2015-05-29 01:27:00 +03:00
|
|
|
gl_FragColor = textureCube(s_texCube, v_texcoord0);
|
2013-02-22 09:07:31 +04:00
|
|
|
}
|