input.vert raw

   1  #version 310 es
   2  
   3  // SPDX-License-Identifier: Unlicense OR MIT
   4  
   5  precision highp float;
   6  
   7  layout(location=0) in vec4 position;
   8  
   9  void main() {
  10  	gl_Position = position;
  11  }
  12