fs_shadowmaps_texture.sc 280 B

1234567891011121314
  1. $input v_texcoord0
  2. /*
  3. * Copyright 2013-2014 Dario Manesku. All rights reserved.
  4. * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  5. */
  6. #include "../common/common.sh"
  7. SAMPLER2D(s_texColor, 0);
  8. void main()
  9. {
  10. gl_FragColor = texture2D(s_texColor, v_texcoord0);
  11. }