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 f52dc2f371 Rename probe to light-probe
Probe is a real general term, the new name is used often in docs online.
2017-06-12 21:34:55 +10:00

10 lines
112 B
GLSL

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