Anonymous Maarten
Anonymous Maarten
When closing testcamera on Windows, the following debug message is printed: ``` . In Accept Drag and Drop, window 2, disabled Full OLE IDropTarget ``` This is the origin: https://github.com/libsdl-org/SDL/blob/f95027e3d7a692b9324cfa53f371f8cfdb2575e3/src/video/windows/SDL_windowswindow.c#L2152-L2154...
This pr adds a cmake option (`-DSDL_DEFINE_OVERRIDES=...`) that allows to override any define present in `SDL_build_config.h`. By e.g. configuring with `-DSDL_DEFINE_OVERRIDES="SDL_JOYSTICK_MFI=0;SDL_VIDEO_DRIVER_X11_DYNAMIC=\"libX11.so.9\""`, you can override these macros. Important to know is...
- Fix running `testautomation` with `--iterations` >= 256 - Make sure events subsystem is initialized for events tests (there was a bug in `testautomation_audio.c` that closed the audio subsystem too...
For example, the `SDL_EVENT_QUIT` event is never triggered (checked with a debugger). This is the complete stdout after clicking on the `x`: ``` INFO: Creating native window for x11 driver...
Whilst looking at imgui's SDL support code, I noticed it scales the wheel delta x of a mouse wheel event by around 100. [link to code](https://github.com/ocornut/imgui/blob/6864a7f839ce78419d5db57a46c25c4216e9c712/backends/imgui_impl_sdl3.cpp#L315-L326) Is the need for...
Command: ``` test/testautomation --filter render_testBlendModes --renderer vulkan ``` Grepping `Failed`, these assertions fail: ``` ERROR: 07/28/24 03:58:34: Assert 'Checking render XRGB color modulation operation results, expected 0,64,226,255, got 115,122,138,255': Failed...
I've just seen [testlocale time out on ci](https://github.com/libsdl-org/sdl2-compat/actions/runs/10962823704/job/30442949392#step:14:126) (nothing to be seen on stdout). Perhaps related, a successful run of testlocale [emits errors on ci](https://github.com/libsdl-org/sdl2-compat/actions/runs/10951995571/job/30409947651#step:14:126): ``` 6: ERROR: Could not...
Running `testautomation --filter video_setWindowCenteredOnDisplay` fails on Windows. It looks like all y is offset by 20. Full test output ``` INFO: 08/06/24 21:04:51: ----- Test Case 22.24: 'video_setWindowCenteredOnDisplay' started INFO:...
Is there a way to encode debug information? MSVC toolchains can embed debug information, or generate external PDB files. GNU toolchains can also embed debug information, or [split the dwarf...
### What happened? We (=[the libsdl-org/SDL project](https://github.com/libsdl-org/SDL)) are using Selenium to run the emscripten tests in ci. When bumping the os from `ubuntu-22.04` to `ubuntu-24.04`, all tests fail. [Link to...