This repository has been archived on 2026-05-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files

12 lines
143 B
GLSL

#version 440 core
layout(location=0) in ivec4 vInds;
out ivec4 inds;
void main() {
inds = vInds;
gl_Position = vec4(0, 0, 0, 1);
}