Failproofshark / cl-sdl2-ttf

A common lisp wrapper for SDL2_TTF used for loading fonts and creating text assets
25 stars 19 forks source link

Remove dependency on libffi #31

Open SuperDisk opened 4 months ago

SuperDisk commented 4 months ago

This library pulls in cffi-libffi but only uses it to pass an SDL_Color to the rendering functions. The SDL docs state that

The bits of this structure can be directly reinterpreted as an integer-packed color

which means that we can avoid the dependency on libffi by just passing it as a packed int.