You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: