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

Remove dependency on libffi

Open SuperDisk opened this issue 1 year ago • 0 comments

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.

SuperDisk avatar Jul 12 '24 12:07 SuperDisk