mirror of
https://github.com/overte-org/overte.git
synced 2025-05-17 15:03:18 +02:00
14 lines
267 B
GLSL
14 lines
267 B
GLSL
#version 120
|
|
|
|
//
|
|
// model_shadow.vert
|
|
// vertex shader
|
|
//
|
|
// Created by Andrzej Kapolka on 3/24/14.
|
|
// Copyright (c) 2014 High Fidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
void main(void) {
|
|
// just use standard pipeline transform
|
|
gl_Position = ftransform();
|
|
}
|