xref: /aosp_15_r20/external/angle/samples/multiple_draw_buffers/multiple_draw_buffers_vs.glsl (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1attribute vec4 a_position;
2attribute vec2 a_texCoord;
3varying vec2 v_texCoord;
4void main()
5{
6    gl_Position = a_position;
7    v_texCoord = a_texCoord;
8}
9