sechshelme
sechshelme
I found a bug in the library. The type must be set before calling ioctl. The sample code only works because v4l2_gfmt is called directly after v4l2_sfmt. If other functions...
x11copy.c hangs I wanted to try the demo but the program hangs. As it stands, case SelectionClear is never executed. So it doesn't get out of the "while" loop. When...
SetColorKey requires an integer as the second parameter. (SDL_surface.h; line: 446) ```c extern DECLSPEC int SDLCALL SDL_SetColorKey(SDL_Surface * surface, int flag, Uint32 key); ``` And SDL_FALSE & SDL_TRUE are also...
Ich wollte den aktuellen Commit von SDL_ttf installieren, aber leider kommt es zu einem Fehler bei „make“. SDL3 konnte problemlos installiert und verwendet werden. ``` $ cmake ../SDL_ttf/ -- The...
Would it make sense for `Mix_PausedMusic` to return a `SDL_bool` instead of an `int`? According to the wiki, the int can only have 1 or 0.
Shouldn't this be the case? ```c // old: #define XDP_WALLPAPER_TARGET_BOTH (XDP_WALLPAPER_TARGET_BACKGROUND|XDP_WALLPAPER_TARGET_LOCKSCREEN) //new: #define XDP_WALLPAPER_FLAG_BOTH (XDP_WALLPAPER_FLAG_BACKGROUND|XDP_WALLPAPER_FLAG_LOCKSCREEN) ``` libportal/libportal/wallpaper.h lines:42