cl-sdl2-ttf icon indicating copy to clipboard operation
cl-sdl2-ttf copied to clipboard

A common lisp wrapper for SDL2_TTF used for loading fonts and creating text assets

Results 14 cl-sdl2-ttf issues
Sort by recently updated
recently updated
newest added

The following code is the minimum recreateable example I could come up with from my bigger project. It's supposed to display the name of the keys the user types in,...

Hi, there, Thank you for your great works! I'm interested in using cl-sdl2-ttf in my own code adventures. After trying out code, I have eliminated some bugs and made some...

Hello, I ran into a small problem when c2ffi is trying to execute because it is looking for SDL2_ttf.h referenced in sdl2-ttf.asd, but the file doesn't exist. This pull request...

Hi! The following code runs fine for a few seconds (shows the text just fine) ``` (ql:quickload 'sdl2) (ql:quickload 'sdl2-ttf) (ql:quickload 'font-discovery) (defmacro with-texture (texture-sym renderer surface &body body) `(let...

Hello, Thanks for your work on cl-sdl2-ttf. I made some small changes to set-font-outline and get-font-outline because I was running into trouble with creating an outline. The set-font-outline was originally...

This was detected by a warning on the upcoming SBCL 2.0.7. This causes cascading errors in other systems which depend on this one http://report.quicklisp.org/2020-07-24/failure-report/cl-sdl2-ttf.html#sdl2-ttf

https://github.com/Failproofshark/cl-sdl2-ttf/blob/ff2821a2787cb527ca643a0dbca6ab2171ce141d/src/helpers.lisp#L24 Specifically I get this warning: ``` ; caught WARNING: ; Destructive function NREVERSE called on a macro argument: PAIRS. ```

About the problem that "SDL2" cannot be found when creating an executable binary with ECL - ECL 16.1.3 - x86_64-linux-gnu (Debian 10.2) - libsdl2-ttf, libsdl2-ttf-dev After creating an executable binary...

Otherwise the spec file won't be properly generated I also had to reame SDL_ttf.h to SDL2_ttf.h for things to actually start working. This can probably be reverted if I made...

Hi, is it correct to extend for OpenBSD the _library.lisp_ file with **"libSDL2_ttf.so.0.1"** ? ` (:unix (:or "libSDL2_ttf-2.0.so.0" "libSDL2_ttf" "libSDL2_ttf.so.0.1"))` If I don't it doesn't find the lib: (ql:quickload :sdl2-ttf)...