2013-09-10 10:17:17 +04:00
|
|
|
$input v_texcoord0
|
|
|
|
|
|
|
|
/*
|
2014-02-11 10:07:04 +04:00
|
|
|
* Copyright 2011-2014 Branimir Karadzic. All rights reserved.
|
2013-09-10 10:17:17 +04:00
|
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../common/common.sh"
|
|
|
|
|
|
|
|
SAMPLER2D(u_texColor, 0);
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
gl_FragColor = texture2D(u_texColor, v_texcoord0.xy*0.5+0.5);
|
|
|
|
}
|