2015-06-21 15:33:46 +00:00
|
|
|
/*
|
2024-01-01 21:15:26 +00:00
|
|
|
Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 15:33:46 +00:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Definitions for platform dependent windowing functions to test SDL
|
|
|
|
integration with native windows
|
|
|
|
*/
|
2022-11-27 04:43:38 +00:00
|
|
|
#include <SDL3/SDL.h>
|
2015-06-21 15:33:46 +00:00
|
|
|
|
2023-03-16 23:25:39 +00:00
|
|
|
/* Hack to avoid dynapi renaming */
|
|
|
|
#include "../src/dynapi/SDL_dynapi.h"
|
|
|
|
#ifdef SDL_DYNAMIC_API
|
|
|
|
#undef SDL_DYNAMIC_API
|
|
|
|
#endif
|
2023-03-29 21:49:01 +00:00
|
|
|
#define SDL_DYNAMIC_API 0
|
2023-03-16 23:25:39 +00:00
|
|
|
|
|
|
|
#include "../src/SDL_internal.h"
|
|
|
|
|
2015-06-21 15:33:46 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
const char *tag;
|
2022-11-30 20:51:59 +00:00
|
|
|
void *(*CreateNativeWindow)(int w, int h);
|
|
|
|
void (*DestroyNativeWindow)(void *window);
|
2015-06-21 15:33:46 +00:00
|
|
|
} NativeWindowFactory;
|
|
|
|
|
|
|
|
#ifdef SDL_VIDEO_DRIVER_WINDOWS
|
|
|
|
#define TEST_NATIVE_WINDOWS
|
|
|
|
extern NativeWindowFactory WindowsWindowFactory;
|
|
|
|
#endif
|
|
|
|
|
2024-01-09 16:38:38 +00:00
|
|
|
#ifdef SDL_VIDEO_DRIVER_WAYLAND
|
|
|
|
#define TEST_NATIVE_WAYLAND
|
|
|
|
extern NativeWindowFactory WaylandWindowFactory;
|
|
|
|
#endif
|
|
|
|
|
2015-06-21 15:33:46 +00:00
|
|
|
#ifdef SDL_VIDEO_DRIVER_X11
|
|
|
|
#define TEST_NATIVE_X11
|
|
|
|
extern NativeWindowFactory X11WindowFactory;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SDL_VIDEO_DRIVER_COCOA
|
|
|
|
#define TEST_NATIVE_COCOA
|
|
|
|
extern NativeWindowFactory CocoaWindowFactory;
|
|
|
|
#endif
|