mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01: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;
|
|
} |