(Particles) Some targets do not anything, inluding comments before the version line
[platform/core/uifw/dali-demo.git] / examples / particles / shaders / particle-view-simple.vert
1 #version 300 es
2 // Shader for simple textured geometry.
3
4 precision mediump float;
5 uniform mat4 uMvpMatrix;//by DALi
6 uniform vec3 uSize;  // by DALi
7 in vec3 aPosition;
8
9 void main()
10 {
11   gl_Position = uMvpMatrix * vec4(aPosition * uSize, 1.f);
12 }