mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-14 14:36:55 +02:00
18 lines
446 B
Text
18 lines
446 B
Text
<@include Config.slh@>
|
|
<$VERSION_HEADER$>
|
|
// Generated on <$_SCRIBE_DATE$>
|
|
//
|
|
// deferred_light.vert
|
|
// vertex shader
|
|
//
|
|
// Created by Andrzej Kapolka on 9/18/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_TexCoord[0] = gl_MultiTexCoord0;
|
|
gl_Position = gl_Vertex;
|
|
}
|