fs_shadowmaps_texture.sc 273 B

1234567891011121314
  1. $input v_texcoord0
  2. /*
  3. * Copyright 2013-2014 Dario Manesku. All rights reserved.
  4. * License: http://www.opensource.org/licenses/BSD-2-Clause
  5. */
  6. #include "../common/common.sh"
  7. SAMPLER2D(u_texColor, 0);
  8. void main()
  9. {
  10. gl_FragColor = texture2D(u_texColor, v_texcoord0);
  11. }