mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-05-05 22:58:39 +02:00
13 lines
253 B
GLSL
13 lines
253 B
GLSL
#version 120
|
|
|
|
//
|
|
// grid.frag
|
|
// fragment shader
|
|
//
|
|
// Created by Andrzej Kapolka on 1/21/14.
|
|
// Copyright (c) 2014 High Fidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
void main(void) {
|
|
gl_FragColor = vec4(gl_Color.rgb, exp(-0.25 / gl_FragCoord.w));
|
|
}
|