mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
28 lines
No EOL
610 B
Text
28 lines
No EOL
610 B
Text
<@include gpu/Config.slh@>
|
|
<$VERSION_HEADER$>
|
|
// Generated on <$_SCRIBE_DATE$>
|
|
//
|
|
// debug_deferred_buffer.slf
|
|
// fragment shader
|
|
//
|
|
// Created by Clement on 12/3
|
|
// 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
|
|
//
|
|
|
|
<@include DeferredBuffer.slh@>
|
|
|
|
uniform sampler2D pyramidMap;
|
|
uniform sampler2D occlusionRawMap;
|
|
uniform sampler2D occlusionBlurredMap;
|
|
|
|
in vec2 uv;
|
|
out vec4 outFragColor;
|
|
|
|
//SOURCE_PLACEHOLDER
|
|
|
|
void main(void) {
|
|
outFragColor = getFragmentColor();
|
|
} |