mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-17 17:28:45 +02:00
19 lines
474 B
Text
19 lines
474 B
Text
<@include gpu/Config.slh@>
|
|
<$VERSION_HEADER$>
|
|
// Generated on <$_SCRIBE_DATE$>
|
|
// lightClusters_drawGrid.frag
|
|
//
|
|
// Created by Sam Gateau on 9/8/2016.
|
|
// Copyright 2015 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
|
|
//
|
|
|
|
layout(location=0) in vec4 varColor;
|
|
layout(location=0) out vec4 outFragColor;
|
|
|
|
|
|
void main(void) {
|
|
outFragColor = varColor;
|
|
}
|