Scott Helvick
Scott Helvick
When I try to load and draw a simple model, such as in [this example](https://www.raylib.com/examples/web/models/loader.html?name=models_loading), I get pointer errors in `(draw-model)`: ```` The value (1065353216 0 #.(SB-SYS:INT-SAP #X00000000) #.(SB-SYS:INT-SAP #X3F80000000000000)...
I think CEPL is doing something wrong with :ivec4's created as gpu/c-arrays, causing wonky values in my shaders. Observe: ```lisp > (type-of (car (cepl:pull-g (cepl:make-gpu-array `(,(make-array '(4) :element-type '(signed-byte 32)...
Use case: I have two nested structs, and I want to ensure that one of their respective fields contains/points to the same object (i.e. `EQ`, not just `EQL`). Example C...
I'm attempting to encode an alist value, which is a nested list, as a nested array. cl-json does what I'm looking for: > (json:encode-json-to-string '((foo . bar) (baz . ((1...
For now I think the best way of testing is through the examples, but it would be nice to have a couple of functions to run sets of examples at...