Now basic-example won't run for me. It complains that window-hint is undefined. I had to change (window-hint :client-api 0) to (%glfw:window-hint :client-api) in with-window macro to get it working. But strangely if I remove :resizable 0 :client-api 0 in the above code, then it does not complain about undefined window-hint.
Btw, I also noticed that there is a c enum defined with window-hint name and also a function with the same name glfw-bindings.lisp. Not sure if that is related to this issue or not though.
I am producing a minimal example to repro the issue. I am on Linux and using sbcl.
Now basic-example won't run for me. It complains that window-hint is undefined. I had to change
(window-hint :client-api 0)
to(%glfw:window-hint :client-api)
inwith-window
macro to get it working. But strangely if I remove:resizable 0 :client-api 0
in the above code, then it does not complain about undefined window-hint.Btw, I also noticed that there is a c enum defined with window-hint name and also a function with the same name glfw-bindings.lisp. Not sure if that is related to this issue or not though.