mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-15 06:37:00 +02:00
29 lines
763 B
Text
29 lines
763 B
Text
<@include gpu/Config.slh@>
|
|
<$VERSION_HEADER$>
|
|
// <$_SCRIBE_FILENAME$>
|
|
// Generated on <$_SCRIBE_DATE$>
|
|
//
|
|
// Created by Olivier Prat on 06/05/17.
|
|
// Copyright 2017 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 render-utils/ShaderConstants.h@>
|
|
|
|
<@include Fade.slh@>
|
|
<$declareFadeFragment()$>
|
|
|
|
layout(location=RENDER_UTILS_ATTR_POSITION_WS) in vec4 _positionWS;
|
|
|
|
layout(location=0) out vec4 _fragColor;
|
|
|
|
void main(void) {
|
|
FadeObjectParams fadeParams;
|
|
<$fetchFadeObjectParams(fadeParams)$>
|
|
applyFadeClip(fadeParams, _positionWS.xyz);
|
|
|
|
// pass-through to set z-buffer
|
|
_fragColor = vec4(1.0, 1.0, 1.0, 0.0);
|
|
}
|