mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-27 06:19:51 -05:00
30bda3fc97
- Added new volumeraycaster classes - Fixed many small warnings in OpenSpace - Linked to updated Ghoul and Openspace-data - TODO cleanup in volumeraycaster classes - TODO Add an advanced volumeraycaster class to use during development
10 lines
130 B
GLSL
10 lines
130 B
GLSL
#version 330
|
|
|
|
in vec4 position;
|
|
out vec2 texCoord;
|
|
|
|
void main() {
|
|
gl_Position = position;
|
|
texCoord = position.xy/2.0 + 0.5;
|
|
}
|