/usr/share/glmark2/shaders/bump-normals.vert is in glmark2-data 2012.08-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | attribute vec3 position;
attribute vec2 texcoord;
uniform mat4 ModelViewProjectionMatrix;
varying vec2 TextureCoord;
void main(void)
{
TextureCoord = texcoord;
// Transform the position to clip coordinates
gl_Position = ModelViewProjectionMatrix * vec4(position, 1.0);
}
|