| 123456789101112131415161718192021222324252627 |
- /*
- * Copyright (C) 2020, Inria
- * GRAPHDECO research group, https://team.inria.fr/graphdeco
- * All rights reserved.
- *
- * This software is free for non-commercial, research and evaluation use
- * under the terms of the LICENSE.md file.
- *
- * For inquiries contact sibr@inria.fr and/or George.Drettakis@inria.fr
- */
- #version 450
- layout(location = 0) out vec4 outColor;
- layout(location = 0) in vec4 position;
- layout(location = 1) in vec3 colors_gs;
- layout(location = 2) in vec2 texCoords_gs;
- layout(location = 3) in vec3 normals_gs;
- void main()
- {
- if(100.f*position.z<0.001)
- discard;
- outColor = vec4(1.f-10.f*position.z, 1.f-10.f*position.z, 1.f-10.f*position.z , 1.0f);
- //outColor = vec4(colors_gs.x, colors_gs.y, colors_gs.z , 1.0f);
- }
|