UiLines.frag.glsl 347 B

123456789101112131415
  1. // Copyright (C) 2009-2017, Panagiotis Christopoulos Charitos and contributors.
  2. // All rights reserved.
  3. // Code licensed under the BSD License.
  4. // http://www.anki3d.org/LICENSE
  5. #include "shaders/Common.glsl"
  6. layout(location = 0) in mediump vec4 in_color;
  7. layout(location = 0) out mediump vec4 out_color;
  8. void main()
  9. {
  10. out_color = in_color;
  11. }