bgfx/examples/21-deferred/fs_deferred_debug.sc

16 lines
278 B
Python
Raw Normal View History

2014-05-21 23:33:12 -04:00
$input v_texcoord0
/*
2015-01-02 17:43:11 -05:00
* Copyright 2011-2015 Branimir Karadzic. All rights reserved.
2014-05-21 23:33:12 -04:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#include "../common/common.sh"
SAMPLER2D(s_texColor, 0);
void main()
{
gl_FragColor = texture2D(s_texColor, v_texcoord0);
}