(Particles) Some targets do not anything, inluding comments before the version line
[platform/core/uifw/dali-demo.git] / examples / particles / shaders / particle-view-simple.frag
1 #version 300 es
2 // Shader for an unlit, unfogged, textured mesh.
3
4 precision mediump float;
5 uniform vec4 uColor;
6 out vec4 oFragColor;
7
8 void main()
9 {
10   oFragColor = uColor;
11 }