tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

default.vert (326B)


      1 /*
      2 Copyright (c) 2019 The Khronos Group Inc.
      3 Use of this source code is governed by an MIT-style license that can be
      4 found in the LICENSE.txt file.
      5 */
      6 
      7 
      8 attribute vec4 gtf_Vertex;
      9 uniform mat4 gtf_ModelViewProjectionMatrix;
     10 void main (void)
     11 {
     12 gl_Position = gtf_ModelViewProjectionMatrix * gtf_Vertex;
     13 gl_PointSize = 1.0;
     14 }