/usr/share/oce-0.17/src/Shaders/RaytraceBase.vs is in liboce-visualization10 0.17.1-1.
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 | in vec4 occVertex;
//! Normalized pixel coordinates.
out vec2 vPixel;
void main (void)
{
vPixel = vec2 ((occVertex.x + 1.f) * 0.5f,
(occVertex.y + 1.f) * 0.5f);
gl_Position = occVertex;
}
|