MoGe / utils3d /numpy /shaders /vertex_attribute.fsh
Ruicheng's picture
first commit
ec0c8fa
raw
history blame
86 Bytes
#version 330
in vecN v_attr;
out vecN f_attr;
void main() {
f_attr = v_attr;
}