bgfx/examples/13-stencil/fs_stencil_texture.sc

15 lines
280 B
Python
Raw Normal View History

$input v_texcoord0
/*
2014-01-13 17:45:18 -05:00
* Copyright 2013-2014 Dario Manesku. All rights reserved.
2016-01-01 03:11:04 -05:00
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
*/
#include "../common/common.sh"
2015-06-20 00:47:20 -04:00
SAMPLER2D(s_texColor, 0);
void main()
{
2015-06-20 00:47:20 -04:00
gl_FragColor = texture2D(s_texColor, v_texcoord0);
}