cl-sdl2-ttf
cl-sdl2-ttf copied to clipboard
Remove dependency on libffi
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.