2014-05-22 07:33:12 +04:00
|
|
|
$input v_texcoord0
|
|
|
|
|
|
|
|
/*
|
2021-01-15 02:53:49 +03:00
|
|
|
* Copyright 2011-2021 Branimir Karadzic. All rights reserved.
|
2016-01-01 11:11:04 +03:00
|
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
2014-05-22 07:33:12 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../common/common.sh"
|
|
|
|
|
|
|
|
SAMPLER2D(s_texColor, 0);
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
gl_FragColor = texture2D(s_texColor, v_texcoord0);
|
|
|
|
}
|