This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/draw/engines/eevee/shaders/lightprobe_vert.glsl
Campbell Barton 02f28da187 Cleanup: trailing spaces
Applied to newly added files in 2.8
2018-04-22 08:45:52 +02:00

11 lines
113 B
GLSL

in vec3 pos;
out vec4 vPos;
flat out int face;
void main() {
vPos = vec4(pos, 1.0);
face = gl_InstanceID;
}