mirror of
https://github.com/libsdl-org/SDL.git
synced 2024-12-12 05:03:30 +08:00
0a48abc860
I ran this script in the include directory: ```sh sed -i '' -e 's,#include "\(SDL.*\)",#include <SDL3/\1>,' *.h ``` I ran this script in the src directory: ```sh for i in ../include/SDL3/SDL*.h do hdr=$(basename $i) if [ x"$(echo $hdr | egrep 'SDL_main|SDL_name|SDL_test|SDL_syswm|SDL_opengl|SDL_egl|SDL_vulkan')" != x ]; then find . -type f -exec sed -i '' -e 's,#include "\('$hdr'\)",#include <SDL3/\1>,' {} \; else find . -type f -exec sed -i '' -e '/#include "'$hdr'"/d' {} \; fi done ``` Fixes https://github.com/libsdl-org/SDL/issues/6575
58 lines
1.4 KiB
C
58 lines
1.4 KiB
C
/**
|
|
* SysWM test suite
|
|
*/
|
|
#include <SDL3/SDL.h>
|
|
#include <SDL3/SDL_syswm.h>
|
|
#include <SDL3/SDL_test.h>
|
|
|
|
/* Test case functions */
|
|
|
|
/**
|
|
* @brief Call to SDL_GetWindowWMInfo
|
|
*/
|
|
int
|
|
syswm_getWindowWMInfo(void *arg)
|
|
{
|
|
int result;
|
|
SDL_Window *window;
|
|
SDL_SysWMinfo info;
|
|
|
|
window = SDL_CreateWindow("", 0, 0, 0, 0, SDL_WINDOW_HIDDEN);
|
|
SDLTest_AssertPass("Call to SDL_CreateWindow()");
|
|
SDLTest_AssertCheck(window != NULL, "Check that value returned from SDL_CreateWindow is not NULL");
|
|
if (window == NULL) {
|
|
return TEST_ABORTED;
|
|
}
|
|
|
|
/* Make call */
|
|
result = SDL_GetWindowWMInfo(window, &info, SDL_SYSWM_CURRENT_VERSION);
|
|
SDLTest_AssertPass("Call to SDL_GetWindowWMInfo()");
|
|
SDLTest_Log((result == 0) ? "Got window information" : "Couldn't get window information");
|
|
|
|
SDL_DestroyWindow(window);
|
|
SDLTest_AssertPass("Call to SDL_DestroyWindow()");
|
|
|
|
return TEST_COMPLETED;
|
|
}
|
|
|
|
/* ================= Test References ================== */
|
|
|
|
/* SysWM test cases */
|
|
static const SDLTest_TestCaseReference syswmTest1 =
|
|
{ (SDLTest_TestCaseFp)syswm_getWindowWMInfo, "syswm_getWindowWMInfo", "Call to SDL_GetWindowWMInfo", TEST_ENABLED };
|
|
|
|
/* Sequence of SysWM test cases */
|
|
static const SDLTest_TestCaseReference *syswmTests[] = {
|
|
&syswmTest1, NULL
|
|
};
|
|
|
|
/* SysWM test suite (global) */
|
|
SDLTest_TestSuiteReference syswmTestSuite = {
|
|
"SysWM",
|
|
NULL,
|
|
syswmTests,
|
|
NULL
|
|
};
|
|
|
|
/* vi: set ts=4 sw=4 expandtab: */
|