Back to home page

EIC code displayed by LXR

 
 

    


Warning, /eic-opticks/sysrap/gl/gen_line_strip/vert.glsl is written in an unsupported language. File is not indexed.

0001 #version 410 core
0002 
0003 layout(location = 0) in vec4 rpos ;
0004 layout(location = 1) in vec4 rdel ;
0005 
0006 out vec4 deltapos ;
0007 
0008 void main ()
0009 {
0010     deltapos = rdel ;
0011     gl_Position = rpos ;
0012     gl_PointSize = 10.0;
0013 }
0014 
0015