You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
152 B
11 lines
152 B
11 years ago
|
#version 330
|
||
|
|
||
|
in vec4 position;
|
||
11 years ago
|
out float mx;
|
||
11 years ago
|
|
||
|
void main(){
|
||
11 years ago
|
gl_Position = vec4(1);
|
||
|
gl_Position.xy = 0.04*position.xy;
|
||
11 years ago
|
mx = cos(0.1337*position.z);
|
||
11 years ago
|
}
|