2013-09-10 10:17:17 +04:00
|
|
|
$input v_texcoord0
|
|
|
|
|
|
|
|
/*
|
2016-01-01 11:11:04 +03:00
|
|
|
* Copyright 2011-2016 Branimir Karadzic. All rights reserved.
|
|
|
|
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
|
2013-09-10 10:17:17 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../common/common.sh"
|
|
|
|
|
2015-05-29 01:27:00 +03:00
|
|
|
SAMPLER2D(s_texColor, 0);
|
2013-09-10 10:17:17 +04:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2015-05-29 01:27:00 +03:00
|
|
|
gl_FragColor = texture2D(s_texColor, v_texcoord0.xy*0.5+0.5);
|
2013-09-10 10:17:17 +04:00
|
|
|
}
|