mirror of
https://github.com/JulianGro/overte.git
synced 2025-08-13 00:36:26 +02:00
16 lines
353 B
GLSL
16 lines
353 B
GLSL
#version 120
|
|
|
|
//
|
|
// metavoxel_heighfield.vert
|
|
// vertex shader
|
|
//
|
|
// Created by Andrzej Kapolka on 7/28/14.
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
void main(void) {
|
|
gl_Position = ftransform();
|
|
}
|