Open SuperDisk opened 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
cffi-libffi
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.
This library pulls in
cffi-libffi
but only uses it to pass an SDL_Color to the rendering functions. The SDL docs state thatwhich means that we can avoid the dependency on libffi by just passing it as a packed int.