Gleefre
Gleefre
This is most probably due to double buffering. As it was mentioned in https://github.com/vydd/sketch/issues/7, the proper fix would be implementing `copy-pixels` via rendering to FBOs.
Hi again! So I have been reading through source code and I have discovered `*build*` variable. It seems that the following should work (`make-this-thread-main` as in `kit.sdl2` `README`): ```lisp (let...
Hello! Thanks for your script, I'll give it a look. I don't think that such a feature should be `sketch:make-executable`, since it will be working on sbcl only and will...
I have been thinking on the possibilities of the `define-start-function`. I think it must be able to define both toplevel function (to pass to the `save-lisp-or-die` or be used in...
FWIW there is no corresponding page in the CLHS: https://www.lispworks.com/documentation/HyperSpec/Body/19_bb.htm only lists sections up to `19.2.2.5`. This probably due to this (cited from the home page of cl-community-spec): > There...
I think you could use `macrolet` inside the `(block clause ...)` to achieve the desired modification of the toplevel vs nested behavior; please see it implemented in draft PR #146...
Actually, same behavior can be observed on ECL as well.
It seems like you have an outdated version of `nodgui`; and maybe of the quicklisp distribution. What is your quicklisp dists version? ```lisp (ql:dist-version "quicklisp") ; => should be "2023-10-21"...
P.S. You can also check the version of `nodgui` easily with ```lisp (asdf:component-version (asdf:find-system :nodgui)) ; => "0.4.8.2" ``` I'm not sure about the exact version requirement, but it should...
From a [discussion](https://irclog.tymoon.eu/libera/%23commonlisp?around=1720166135#1720166135) on `#commonlisp` IRC channel: - Defining a new global nickname for the `#:KEYWORD` package, as Allegro CL does, is not standard-compliant. See [CLHS 11.1.2](http://www.lispworks.com/reference/HyperSpec/Body/11_ab.htm) Figure 11-2 "Standardized...