2013-10-18 09:55:43 +04:00
|
|
|
$input v_texcoord0
|
|
|
|
|
|
|
|
/*
|
2014-01-14 02:45:18 +04:00
|
|
|
* Copyright 2013-2014 Dario Manesku. All rights reserved.
|
2022-01-15 22:59:06 +03:00
|
|
|
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
|
2013-10-18 09:55:43 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../common/common.sh"
|
2015-06-20 07:47:20 +03:00
|
|
|
SAMPLER2D(s_texColor, 0);
|
2013-10-18 09:55:43 +04:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2015-06-20 07:47:20 +03:00
|
|
|
gl_FragColor = texture2D(s_texColor, v_texcoord0);
|
2013-10-18 09:55:43 +04:00
|
|
|
}
|