xbrzscale
xbrzscale copied to clipboard
Image upscaling commandline tool using xBRZ algorithm
For packaging in Linux distributions it would be useful to have a formal release tarball for the source code. Maybe name it xbrzscale-1.8.1.tar.gz, being the first 'scale version of library...
xbrzscale.cpp:21:28: fatal error: SDL2/SDL_image.h: No such file or directory
`Uint8 *p = (Uint8 *)surface->pixels + y * surface->pitch + x * bpp;` **-to-** `Uint8 *p = (Uint8 *)surface->pixels + static_cast(y) * surface->pitch + static_cast(x) * bpp;` ``` ETC...
I will work on this
this way, instead of delete (free) the image data memory, if it matches the requirements (WxH) that cached data will be re-used (just to overwrite not read). By not trying...
This would allow anyone on NixOS or with the Nix CLI installed to easily run the utility with one command without cloning the repo. I also cleaned up the readme...