We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to let bind an array of vec4's, and I can't for the life of me figure this out :)
let
I'm trying to generate something like this:
vec4 verts[4] = vec4[4](vec4(...), vec4(...), vec4(...), vec4(...));
I've tried:
(let (((verts (:vec4 4))) (setf (aref verts 0) ...) ...)
as well as various incantations of make-array. Nothing I try is working and I'm seeking any help I can get here. Thanks!
make-array
The text was updated successfully, but these errors were encountered:
I use (vector) as in
varjo/tests/array-tests.lisp
Line 74 in 9e77f30
Sorry, something went wrong.
No branches or pull requests
I'm trying to
let
bind an array of vec4's, and I can't for the life of me figure this out :)I'm trying to generate something like this:
I've tried:
as well as various incantations of
make-array
. Nothing I try is working and I'm seeking any help I can get here. Thanks!The text was updated successfully, but these errors were encountered: