2015-06-21 09:33:46 -06:00
|
|
|
/*
|
2022-01-03 10:40:00 -07:00
|
|
|
Copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 09:33:46 -06: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-26 21:43:38 -07:00
|
|
|
#include <SDL3/SDL.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
const char *tag;
|
2022-11-30 13:51:59 -07:00
|
|
|
void *(*CreateNativeWindow)(int w, int h);
|
|
|
|
void (*DestroyNativeWindow)(void *window);
|
2015-06-21 09:33:46 -06:00
|
|
|
} NativeWindowFactory;
|
|
|
|
|
|
|
|
#ifdef SDL_VIDEO_DRIVER_WINDOWS
|
|
|
|
#define TEST_NATIVE_WINDOWS
|
|
|
|
extern NativeWindowFactory WindowsWindowFactory;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#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
|