mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-08-08 04:06:53 +02:00
10 lines
No EOL
254 B
GLSL
10 lines
No EOL
254 B
GLSL
#version 120
|
|
|
|
attribute float voxelSizeIn;
|
|
varying float voxelSize;
|
|
|
|
void main(void) {
|
|
gl_FrontColor = gl_Color; //vec4(1.0, 0.0, 0.0, 1.0);
|
|
gl_Position = gl_ModelViewMatrix * gl_Vertex;// ftransform();
|
|
voxelSize = voxelSizeIn;
|
|
} |