Merged default into iOS-improvements
commit
26c28114ee
|
@ -243,7 +243,7 @@ set_option(DUMMYAUDIO "Support the dummy audio driver" ON)
|
||||||
set_option(VIDEO_DIRECTFB "Use DirectFB video driver" OFF)
|
set_option(VIDEO_DIRECTFB "Use DirectFB video driver" OFF)
|
||||||
dep_option(DIRECTFB_SHARED "Dynamically load directfb support" ON "VIDEO_DIRECTFB" OFF)
|
dep_option(DIRECTFB_SHARED "Dynamically load directfb support" ON "VIDEO_DIRECTFB" OFF)
|
||||||
set_option(FUSIONSOUND "Use FusionSound audio driver" OFF)
|
set_option(FUSIONSOUND "Use FusionSound audio driver" OFF)
|
||||||
dep_option(FUSIONSOUND_SHARED "Dynamically load fusionsound audio support" ON "FUSIONSOUND_SHARED" OFF)
|
dep_option(FUSIONSOUND_SHARED "Dynamically load fusionsound audio support" ON "FUSIONSOUND" OFF)
|
||||||
set_option(VIDEO_DUMMY "Use dummy video driver" ON)
|
set_option(VIDEO_DUMMY "Use dummy video driver" ON)
|
||||||
set_option(VIDEO_OPENGL "Include OpenGL support" ON)
|
set_option(VIDEO_OPENGL "Include OpenGL support" ON)
|
||||||
set_option(VIDEO_OPENGLES "Include OpenGL ES support" ON)
|
set_option(VIDEO_OPENGLES "Include OpenGL ES support" ON)
|
||||||
|
|
|
@ -114,6 +114,8 @@ public class SDLActivity extends Activity {
|
||||||
// Setup
|
// Setup
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
Log.v("SDL", "Device: " + android.os.Build.DEVICE);
|
||||||
|
Log.v("SDL", "Model: " + android.os.Build.MODEL);
|
||||||
Log.v("SDL", "onCreate():" + mSingleton);
|
Log.v("SDL", "onCreate():" + mSingleton);
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
|
|
||||||
|
|
|
@ -66,7 +66,7 @@ endmacro()
|
||||||
|
|
||||||
macro(CHECK_OBJC_SOURCE_COMPILES SOURCE VAR)
|
macro(CHECK_OBJC_SOURCE_COMPILES SOURCE VAR)
|
||||||
set(PREV_REQUIRED_DEFS "${CMAKE_REQUIRED_DEFINITIONS}")
|
set(PREV_REQUIRED_DEFS "${CMAKE_REQUIRED_DEFINITIONS}")
|
||||||
set(CMAKE_REQUIRED_DEFINITIONS "-ObjC ${PREV_REQUIRED_DEFS}")
|
set(CMAKE_REQUIRED_DEFINITIONS "-x objective-c ${PREV_REQUIRED_DEFS}")
|
||||||
CHECK_C_SOURCE_COMPILES(${SOURCE} ${VAR})
|
CHECK_C_SOURCE_COMPILES(${SOURCE} ${VAR})
|
||||||
set(CMAKE_REQUIRED_DEFINITIONS "${PREV_REQUIRED_DEFS}")
|
set(CMAKE_REQUIRED_DEFINITIONS "${PREV_REQUIRED_DEFS}")
|
||||||
endmacro()
|
endmacro()
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Dollar Gestures
|
Dollar Gestures
|
||||||
===========================================================================
|
===========================================================================
|
||||||
SDL Provides an implementation of the $1 gesture recognition system. This allows for recording, saving, loading, and performing single stroke gestures.
|
SDL provides an implementation of the $1 gesture recognition system. This allows for recording, saving, loading, and performing single stroke gestures.
|
||||||
|
|
||||||
Gestures can be performed with any number of fingers (the centroid of the fingers must follow the path of the gesture), but the number of fingers must be constant (a finger cannot go down in the middle of a gesture). The path of a gesture is considered the path from the time when the final finger went down, to the first time any finger comes up.
|
Gestures can be performed with any number of fingers (the centroid of the fingers must follow the path of the gesture), but the number of fingers must be constant (a finger cannot go down in the middle of a gesture). The path of a gesture is considered the path from the time when the final finger went down, to the first time any finger comes up.
|
||||||
|
|
||||||
|
|
|
@ -86,8 +86,10 @@ This also solves the problem of...
|
||||||
disable assertions.
|
disable assertions.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* "while (0,0)" fools Microsoft's compiler's /W4 warning level into thinking
|
||||||
|
this condition isn't constant. And looks like an owl's face! */
|
||||||
#ifdef _MSC_VER /* stupid /W4 warnings. */
|
#ifdef _MSC_VER /* stupid /W4 warnings. */
|
||||||
#define SDL_NULL_WHILE_LOOP_CONDITION (-1 == __LINE__)
|
#define SDL_NULL_WHILE_LOOP_CONDITION (0,0)
|
||||||
#else
|
#else
|
||||||
#define SDL_NULL_WHILE_LOOP_CONDITION (0)
|
#define SDL_NULL_WHILE_LOOP_CONDITION (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -226,7 +226,7 @@ typedef uint64_t Uint64;
|
||||||
#define SDL_PRINTF_VARARG_FUNC( fmtargnumber )
|
#define SDL_PRINTF_VARARG_FUNC( fmtargnumber )
|
||||||
#define SDL_SCANF_VARARG_FUNC( fmtargnumber )
|
#define SDL_SCANF_VARARG_FUNC( fmtargnumber )
|
||||||
#else
|
#else
|
||||||
#if _MSC_VER >= 1600 /* VS 2010 and above */
|
#if defined(_MSC_VER) && (_MSC_VER >= 1600) /* VS 2010 and above */
|
||||||
#include <sal.h>
|
#include <sal.h>
|
||||||
|
|
||||||
#define SDL_IN_BYTECAP(x) _In_bytecount_(x)
|
#define SDL_IN_BYTECAP(x) _In_bytecount_(x)
|
||||||
|
|
|
@ -479,9 +479,11 @@ SDL_IBus_Init(void)
|
||||||
inotify_wd = inotify_add_watch(inotify_fd, addr_file, IN_CREATE | IN_MODIFY);
|
inotify_wd = inotify_add_watch(inotify_fd, addr_file, IN_CREATE | IN_MODIFY);
|
||||||
SDL_free(addr_file);
|
SDL_free(addr_file);
|
||||||
|
|
||||||
|
if (addr) {
|
||||||
result = IBus_SetupConnection(dbus, addr);
|
result = IBus_SetupConnection(dbus, addr);
|
||||||
SDL_free(addr);
|
SDL_free(addr);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
|
@ -340,6 +340,11 @@ EnumJoysticksCallback(const DIDEVICEINSTANCE * pdidInstance, VOID * pContext)
|
||||||
{
|
{
|
||||||
JoyStick_DeviceData *pNewJoystick;
|
JoyStick_DeviceData *pNewJoystick;
|
||||||
JoyStick_DeviceData *pPrevJoystick = NULL;
|
JoyStick_DeviceData *pPrevJoystick = NULL;
|
||||||
|
const DWORD devtype = (pdidInstance->dwDevType & 0xFF);
|
||||||
|
|
||||||
|
if ((devtype != DI8DEVTYPE_JOYSTICK) && (devtype != DI8DEVTYPE_GAMEPAD)) {
|
||||||
|
return DIENUM_CONTINUE; /* Ignore touchpads, etc. */
|
||||||
|
}
|
||||||
|
|
||||||
if (SDL_IsXInputDevice(&pdidInstance->guidProduct)) {
|
if (SDL_IsXInputDevice(&pdidInstance->guidProduct)) {
|
||||||
return DIENUM_CONTINUE; /* ignore XInput devices here, keep going. */
|
return DIENUM_CONTINUE; /* ignore XInput devices here, keep going. */
|
||||||
|
|
|
@ -1265,6 +1265,12 @@ SDL_CreateWindow(const char *title, int x, int y, int w, int h, Uint32 flags)
|
||||||
h = 1;
|
h = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Some platforms blow up if the windows are too large. Raise it later? */
|
||||||
|
if ((w > 16384) || (h > 16384)) {
|
||||||
|
SDL_SetError("Window is too large.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
/* Some platforms have OpenGL enabled by default */
|
/* Some platforms have OpenGL enabled by default */
|
||||||
#if (SDL_VIDEO_OPENGL && __MACOSX__) || __IPHONEOS__ || __ANDROID__ || __NACL__
|
#if (SDL_VIDEO_OPENGL && __MACOSX__) || __IPHONEOS__ || __ANDROID__ || __NACL__
|
||||||
flags |= SDL_WINDOW_OPENGL;
|
flags |= SDL_WINDOW_OPENGL;
|
||||||
|
@ -1501,11 +1507,8 @@ SDL_SetWindowTitle(SDL_Window * window, const char *title)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
SDL_free(window->title);
|
SDL_free(window->title);
|
||||||
if (title && *title) {
|
|
||||||
window->title = SDL_strdup(title);
|
window->title = SDL_strdup(title ? title : "");
|
||||||
} else {
|
|
||||||
window->title = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_this->SetWindowTitle) {
|
if (_this->SetWindowTitle) {
|
||||||
_this->SetWindowTitle(_this, window);
|
_this->SetWindowTitle(_this, window);
|
||||||
|
|
|
@ -1189,16 +1189,9 @@ Cocoa_SetWindowTitle(_THIS, SDL_Window * window)
|
||||||
{
|
{
|
||||||
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
|
||||||
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
|
NSWindow *nswindow = ((SDL_WindowData *) window->driverdata)->nswindow;
|
||||||
NSString *string;
|
NSString *string = [[NSString alloc] initWithUTF8String:window->title];
|
||||||
|
|
||||||
if(window->title) {
|
|
||||||
string = [[NSString alloc] initWithUTF8String:window->title];
|
|
||||||
} else {
|
|
||||||
string = [[NSString alloc] init];
|
|
||||||
}
|
|
||||||
[nswindow setTitle:string];
|
[nswindow setTitle:string];
|
||||||
[string release];
|
[string release];
|
||||||
|
|
||||||
[pool release];
|
[pool release];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -161,7 +161,7 @@ DirectFB_WM_RedrawLayout(_THIS, SDL_Window * window)
|
||||||
y, w - 2 * d);
|
y, w - 2 * d);
|
||||||
|
|
||||||
/* Caption */
|
/* Caption */
|
||||||
if (window->title) {
|
if (*window->title) {
|
||||||
s->SetColor(s, COLOR_EXPAND(t->font_color));
|
s->SetColor(s, COLOR_EXPAND(t->font_color));
|
||||||
DrawCraption(_this, s, (x - w) / 2, t->top_size + d, window->title);
|
DrawCraption(_this, s, (x - w) / 2, t->top_size + d, window->title);
|
||||||
}
|
}
|
||||||
|
|
|
@ -222,11 +222,7 @@ UIKit_SetWindowTitle(_THIS, SDL_Window * window)
|
||||||
{
|
{
|
||||||
@autoreleasepool {
|
@autoreleasepool {
|
||||||
SDL_WindowData *data = (__bridge SDL_WindowData *) window->driverdata;
|
SDL_WindowData *data = (__bridge SDL_WindowData *) window->driverdata;
|
||||||
if (window->title) {
|
|
||||||
data.viewcontroller.title = @(window->title);
|
data.viewcontroller.title = @(window->title);
|
||||||
} else {
|
|
||||||
data.viewcontroller.title = nil;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -356,8 +356,7 @@ Wayland_WarpMouseGlobal(int x, int y)
|
||||||
static int
|
static int
|
||||||
Wayland_SetRelativeMouseMode(SDL_bool enabled)
|
Wayland_SetRelativeMouseMode(SDL_bool enabled)
|
||||||
{
|
{
|
||||||
SDL_Unsupported();
|
return SDL_Unsupported();
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
@ -43,11 +43,6 @@
|
||||||
|
|
||||||
#define WAYLANDVID_DRIVER_NAME "wayland"
|
#define WAYLANDVID_DRIVER_NAME "wayland"
|
||||||
|
|
||||||
struct wayland_mode {
|
|
||||||
SDL_DisplayMode mode;
|
|
||||||
struct wl_list link;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Initialization/Query functions */
|
/* Initialization/Query functions */
|
||||||
static int
|
static int
|
||||||
Wayland_VideoInit(_THIS);
|
Wayland_VideoInit(_THIS);
|
||||||
|
@ -135,27 +130,6 @@ VideoBootStrap Wayland_bootstrap = {
|
||||||
Wayland_Available, Wayland_CreateDevice
|
Wayland_Available, Wayland_CreateDevice
|
||||||
};
|
};
|
||||||
|
|
||||||
static void
|
|
||||||
wayland_add_mode(SDL_VideoData *d, SDL_DisplayMode m)
|
|
||||||
{
|
|
||||||
struct wayland_mode *mode;
|
|
||||||
|
|
||||||
/* Check for duplicate mode */
|
|
||||||
wl_list_for_each(mode, &d->modes_list, link)
|
|
||||||
if (mode->mode.w == m.w && mode->mode.h == m.h &&
|
|
||||||
mode->mode.refresh_rate == m.refresh_rate)
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* Add new mode to the list */
|
|
||||||
mode = (struct wayland_mode *) SDL_calloc(1, sizeof *mode);
|
|
||||||
|
|
||||||
if (!mode)
|
|
||||||
return;
|
|
||||||
|
|
||||||
mode->mode = m;
|
|
||||||
WAYLAND_wl_list_insert(&d->modes_list, &mode->link);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
display_handle_geometry(void *data,
|
display_handle_geometry(void *data,
|
||||||
struct wl_output *output,
|
struct wl_output *output,
|
||||||
|
@ -168,54 +142,79 @@ display_handle_geometry(void *data,
|
||||||
int transform)
|
int transform)
|
||||||
|
|
||||||
{
|
{
|
||||||
SDL_VideoData *d = data;
|
SDL_VideoDisplay *display = data;
|
||||||
|
|
||||||
d->screen_allocation.x = x;
|
display->name = strdup(model);
|
||||||
d->screen_allocation.y = y;
|
display->driverdata = output;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
display_handle_mode(void *data,
|
display_handle_mode(void *data,
|
||||||
struct wl_output *wl_output,
|
struct wl_output *output,
|
||||||
uint32_t flags,
|
uint32_t flags,
|
||||||
int width,
|
int width,
|
||||||
int height,
|
int height,
|
||||||
int refresh)
|
int refresh)
|
||||||
{
|
{
|
||||||
SDL_VideoData *d = data;
|
SDL_VideoDisplay *display = data;
|
||||||
SDL_DisplayMode mode;
|
SDL_DisplayMode mode;
|
||||||
|
|
||||||
SDL_zero(mode);
|
SDL_zero(mode);
|
||||||
mode.w = width;
|
mode.w = width;
|
||||||
mode.h = height;
|
mode.h = height;
|
||||||
mode.refresh_rate = refresh / 1000;
|
mode.refresh_rate = refresh / 1000; // mHz to Hz
|
||||||
|
SDL_AddDisplayMode(display, &mode);
|
||||||
wayland_add_mode(d, mode);
|
|
||||||
|
|
||||||
if (flags & WL_OUTPUT_MODE_CURRENT) {
|
if (flags & WL_OUTPUT_MODE_CURRENT) {
|
||||||
d->screen_allocation.width = width;
|
display->current_mode = mode;
|
||||||
d->screen_allocation.height = height;
|
display->desktop_mode = mode;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
display_handle_done(void *data,
|
||||||
|
struct wl_output *output)
|
||||||
|
{
|
||||||
|
SDL_VideoDisplay *display = data;
|
||||||
|
SDL_AddVideoDisplay(display);
|
||||||
|
SDL_free(display->name);
|
||||||
|
SDL_free(display);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
display_handle_scale(void *data,
|
||||||
|
struct wl_output *output,
|
||||||
|
int32_t factor)
|
||||||
|
{
|
||||||
|
// TODO: do HiDPI stuff.
|
||||||
|
}
|
||||||
|
|
||||||
static const struct wl_output_listener output_listener = {
|
static const struct wl_output_listener output_listener = {
|
||||||
display_handle_geometry,
|
display_handle_geometry,
|
||||||
display_handle_mode
|
display_handle_mode,
|
||||||
|
display_handle_done,
|
||||||
|
display_handle_scale
|
||||||
};
|
};
|
||||||
|
|
||||||
static void
|
static void
|
||||||
shm_handle_format(void *data,
|
Wayland_add_display(SDL_VideoData *d, uint32_t id)
|
||||||
struct wl_shm *shm,
|
|
||||||
uint32_t format)
|
|
||||||
{
|
{
|
||||||
SDL_VideoData *d = data;
|
struct wl_output *output;
|
||||||
|
SDL_VideoDisplay *display = SDL_malloc(sizeof *display);
|
||||||
|
if (!display) {
|
||||||
|
SDL_OutOfMemory();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
SDL_zero(*display);
|
||||||
|
|
||||||
d->shm_formats |= (1 << format);
|
output = wl_registry_bind(d->registry, id, &wl_output_interface, 2);
|
||||||
|
if (!output) {
|
||||||
|
SDL_SetError("Failed to retrieve output.");
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct wl_shm_listener shm_listener = {
|
wl_output_add_listener(output, &output_listener, display);
|
||||||
shm_handle_format
|
}
|
||||||
};
|
|
||||||
|
|
||||||
#ifdef SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH
|
#ifdef SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH
|
||||||
static void
|
static void
|
||||||
|
@ -245,8 +244,7 @@ display_handle_global(void *data, struct wl_registry *registry, uint32_t id,
|
||||||
if (strcmp(interface, "wl_compositor") == 0) {
|
if (strcmp(interface, "wl_compositor") == 0) {
|
||||||
d->compositor = wl_registry_bind(d->registry, id, &wl_compositor_interface, 1);
|
d->compositor = wl_registry_bind(d->registry, id, &wl_compositor_interface, 1);
|
||||||
} else if (strcmp(interface, "wl_output") == 0) {
|
} else if (strcmp(interface, "wl_output") == 0) {
|
||||||
d->output = wl_registry_bind(d->registry, id, &wl_output_interface, 1);
|
Wayland_add_display(d, id);
|
||||||
wl_output_add_listener(d->output, &output_listener, d);
|
|
||||||
} else if (strcmp(interface, "wl_seat") == 0) {
|
} else if (strcmp(interface, "wl_seat") == 0) {
|
||||||
Wayland_display_add_input(d, id);
|
Wayland_display_add_input(d, id);
|
||||||
} else if (strcmp(interface, "wl_shell") == 0) {
|
} else if (strcmp(interface, "wl_shell") == 0) {
|
||||||
|
@ -255,7 +253,6 @@ display_handle_global(void *data, struct wl_registry *registry, uint32_t id,
|
||||||
d->shm = wl_registry_bind(registry, id, &wl_shm_interface, 1);
|
d->shm = wl_registry_bind(registry, id, &wl_shm_interface, 1);
|
||||||
d->cursor_theme = WAYLAND_wl_cursor_theme_load(NULL, 32, d->shm);
|
d->cursor_theme = WAYLAND_wl_cursor_theme_load(NULL, 32, d->shm);
|
||||||
d->default_cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "left_ptr");
|
d->default_cursor = WAYLAND_wl_cursor_theme_get_cursor(d->cursor_theme, "left_ptr");
|
||||||
wl_shm_add_listener(d->shm, &shm_listener, d);
|
|
||||||
|
|
||||||
#ifdef SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH
|
#ifdef SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH
|
||||||
} else if (strcmp(interface, "qt_touch_extension") == 0) {
|
} else if (strcmp(interface, "qt_touch_extension") == 0) {
|
||||||
|
@ -278,20 +275,13 @@ static const struct wl_registry_listener registry_listener = {
|
||||||
int
|
int
|
||||||
Wayland_VideoInit(_THIS)
|
Wayland_VideoInit(_THIS)
|
||||||
{
|
{
|
||||||
SDL_VideoData *data;
|
SDL_VideoData *data = SDL_malloc(sizeof *data);
|
||||||
SDL_VideoDisplay display;
|
|
||||||
SDL_DisplayMode mode;
|
|
||||||
int i;
|
|
||||||
|
|
||||||
data = malloc(sizeof *data);
|
|
||||||
if (data == NULL)
|
if (data == NULL)
|
||||||
return 0;
|
return 0;
|
||||||
memset(data, 0, sizeof *data);
|
memset(data, 0, sizeof *data);
|
||||||
|
|
||||||
_this->driverdata = data;
|
_this->driverdata = data;
|
||||||
|
|
||||||
WAYLAND_wl_list_init(&data->modes_list);
|
|
||||||
|
|
||||||
data->display = WAYLAND_wl_display_connect(NULL);
|
data->display = WAYLAND_wl_display_connect(NULL);
|
||||||
if (data->display == NULL) {
|
if (data->display == NULL) {
|
||||||
SDL_SetError("Failed to connect to a Wayland display");
|
SDL_SetError("Failed to connect to a Wayland display");
|
||||||
|
@ -299,7 +289,6 @@ Wayland_VideoInit(_THIS)
|
||||||
}
|
}
|
||||||
|
|
||||||
data->registry = wl_display_get_registry(data->display);
|
data->registry = wl_display_get_registry(data->display);
|
||||||
|
|
||||||
if (data->registry == NULL) {
|
if (data->registry == NULL) {
|
||||||
SDL_SetError("Failed to get the Wayland registry");
|
SDL_SetError("Failed to get the Wayland registry");
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -307,17 +296,11 @@ Wayland_VideoInit(_THIS)
|
||||||
|
|
||||||
wl_registry_add_listener(data->registry, ®istry_listener, data);
|
wl_registry_add_listener(data->registry, ®istry_listener, data);
|
||||||
|
|
||||||
for (i=0; i < 100; i++) {
|
// First roundtrip to receive all registry objects.
|
||||||
if (data->screen_allocation.width != 0 || WAYLAND_wl_display_get_error(data->display) != 0) {
|
WAYLAND_wl_display_roundtrip(data->display);
|
||||||
break;
|
|
||||||
}
|
|
||||||
WAYLAND_wl_display_dispatch(data->display);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (data->screen_allocation.width == 0) {
|
// Second roundtrip to receive all output events.
|
||||||
SDL_SetError("Failed while waiting for screen allocation: %d ", WAYLAND_wl_display_get_error(data->display));
|
WAYLAND_wl_display_roundtrip(data->display);
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
data->xkb_context = WAYLAND_xkb_context_new(0);
|
data->xkb_context = WAYLAND_xkb_context_new(0);
|
||||||
if (!data->xkb_context) {
|
if (!data->xkb_context) {
|
||||||
|
@ -325,19 +308,6 @@ Wayland_VideoInit(_THIS)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Use a fake 32-bpp desktop mode */
|
|
||||||
mode.format = SDL_PIXELFORMAT_RGB888;
|
|
||||||
mode.w = data->screen_allocation.width;
|
|
||||||
mode.h = data->screen_allocation.height;
|
|
||||||
mode.refresh_rate = 0;
|
|
||||||
mode.driverdata = NULL;
|
|
||||||
wayland_add_mode(data, mode);
|
|
||||||
SDL_zero(display);
|
|
||||||
display.desktop_mode = mode;
|
|
||||||
display.current_mode = mode;
|
|
||||||
display.driverdata = NULL;
|
|
||||||
SDL_AddVideoDisplay(&display);
|
|
||||||
|
|
||||||
Wayland_InitMouse();
|
Wayland_InitMouse();
|
||||||
|
|
||||||
WAYLAND_wl_display_flush(data->display);
|
WAYLAND_wl_display_flush(data->display);
|
||||||
|
@ -348,46 +318,29 @@ Wayland_VideoInit(_THIS)
|
||||||
static void
|
static void
|
||||||
Wayland_GetDisplayModes(_THIS, SDL_VideoDisplay *sdl_display)
|
Wayland_GetDisplayModes(_THIS, SDL_VideoDisplay *sdl_display)
|
||||||
{
|
{
|
||||||
SDL_VideoData *data = _this->driverdata;
|
// Nothing to do here, everything was already done in the wl_output
|
||||||
SDL_DisplayMode mode;
|
// callbacks.
|
||||||
struct wayland_mode *m;
|
|
||||||
|
|
||||||
Wayland_PumpEvents(_this);
|
|
||||||
|
|
||||||
wl_list_for_each(m, &data->modes_list, link) {
|
|
||||||
m->mode.format = SDL_PIXELFORMAT_RGB888;
|
|
||||||
SDL_AddDisplayMode(sdl_display, &m->mode);
|
|
||||||
m->mode.format = SDL_PIXELFORMAT_RGBA8888;
|
|
||||||
SDL_AddDisplayMode(sdl_display, &m->mode);
|
|
||||||
}
|
|
||||||
|
|
||||||
mode.w = data->screen_allocation.width;
|
|
||||||
mode.h = data->screen_allocation.height;
|
|
||||||
mode.refresh_rate = 0;
|
|
||||||
mode.driverdata = NULL;
|
|
||||||
|
|
||||||
mode.format = SDL_PIXELFORMAT_RGB888;
|
|
||||||
SDL_AddDisplayMode(sdl_display, &mode);
|
|
||||||
mode.format = SDL_PIXELFORMAT_RGBA8888;
|
|
||||||
SDL_AddDisplayMode(sdl_display, &mode);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
Wayland_SetDisplayMode(_THIS, SDL_VideoDisplay *display, SDL_DisplayMode *mode)
|
Wayland_SetDisplayMode(_THIS, SDL_VideoDisplay *display, SDL_DisplayMode *mode)
|
||||||
{
|
{
|
||||||
return 0;
|
return SDL_Unsupported();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
Wayland_VideoQuit(_THIS)
|
Wayland_VideoQuit(_THIS)
|
||||||
{
|
{
|
||||||
SDL_VideoData *data = _this->driverdata;
|
SDL_VideoData *data = _this->driverdata;
|
||||||
struct wayland_mode *t, *m;
|
int i;
|
||||||
|
|
||||||
Wayland_FiniMouse ();
|
Wayland_FiniMouse ();
|
||||||
|
|
||||||
if (data->output)
|
for (i = 0; i < _this->num_displays; ++i) {
|
||||||
wl_output_destroy(data->output);
|
SDL_VideoDisplay *display = &_this->displays[i];
|
||||||
|
wl_output_destroy(display->driverdata);
|
||||||
|
display->driverdata = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
Wayland_display_destroy_input(data);
|
Wayland_display_destroy_input(data);
|
||||||
|
|
||||||
|
@ -417,17 +370,14 @@ Wayland_VideoQuit(_THIS)
|
||||||
if (data->compositor)
|
if (data->compositor)
|
||||||
wl_compositor_destroy(data->compositor);
|
wl_compositor_destroy(data->compositor);
|
||||||
|
|
||||||
|
if (data->registry)
|
||||||
|
wl_registry_destroy(data->registry);
|
||||||
|
|
||||||
if (data->display) {
|
if (data->display) {
|
||||||
WAYLAND_wl_display_flush(data->display);
|
WAYLAND_wl_display_flush(data->display);
|
||||||
WAYLAND_wl_display_disconnect(data->display);
|
WAYLAND_wl_display_disconnect(data->display);
|
||||||
}
|
}
|
||||||
|
|
||||||
wl_list_for_each_safe(m, t, &data->modes_list, link) {
|
|
||||||
WAYLAND_wl_list_remove(&m->link);
|
|
||||||
free(m);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
free(data);
|
free(data);
|
||||||
_this->driverdata = NULL;
|
_this->driverdata = NULL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,19 +40,12 @@ typedef struct {
|
||||||
struct wl_display *display;
|
struct wl_display *display;
|
||||||
struct wl_registry *registry;
|
struct wl_registry *registry;
|
||||||
struct wl_compositor *compositor;
|
struct wl_compositor *compositor;
|
||||||
struct wl_output *output;
|
|
||||||
struct wl_shm *shm;
|
struct wl_shm *shm;
|
||||||
struct wl_cursor_theme *cursor_theme;
|
struct wl_cursor_theme *cursor_theme;
|
||||||
struct wl_cursor *default_cursor;
|
struct wl_cursor *default_cursor;
|
||||||
struct wl_pointer *pointer;
|
struct wl_pointer *pointer;
|
||||||
struct wl_shell *shell;
|
struct wl_shell *shell;
|
||||||
|
|
||||||
struct {
|
|
||||||
int32_t x, y, width, height;
|
|
||||||
} screen_allocation;
|
|
||||||
|
|
||||||
struct wl_list modes_list;
|
|
||||||
|
|
||||||
EGLDisplay edpy;
|
EGLDisplay edpy;
|
||||||
EGLContext context;
|
EGLContext context;
|
||||||
EGLConfig econf;
|
EGLConfig econf;
|
||||||
|
@ -65,8 +58,6 @@ typedef struct {
|
||||||
struct qt_surface_extension *surface_extension;
|
struct qt_surface_extension *surface_extension;
|
||||||
struct qt_windowmanager *windowmanager;
|
struct qt_windowmanager *windowmanager;
|
||||||
#endif /* SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH */
|
#endif /* SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH */
|
||||||
|
|
||||||
uint32_t shm_formats;
|
|
||||||
} SDL_VideoData;
|
} SDL_VideoData;
|
||||||
|
|
||||||
#endif /* _SDL_waylandvideo_h */
|
#endif /* _SDL_waylandvideo_h */
|
||||||
|
|
|
@ -116,7 +116,7 @@ void Wayland_ShowWindow(_THIS, SDL_Window *window)
|
||||||
if (window->flags & SDL_WINDOW_FULLSCREEN)
|
if (window->flags & SDL_WINDOW_FULLSCREEN)
|
||||||
wl_shell_surface_set_fullscreen(wind->shell_surface,
|
wl_shell_surface_set_fullscreen(wind->shell_surface,
|
||||||
WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT,
|
WL_SHELL_SURFACE_FULLSCREEN_METHOD_DEFAULT,
|
||||||
0, NULL);
|
0, (struct wl_output *)window->fullscreen_mode.driverdata);
|
||||||
else
|
else
|
||||||
wl_shell_surface_set_toplevel(wind->shell_surface);
|
wl_shell_surface_set_toplevel(wind->shell_surface);
|
||||||
|
|
||||||
|
@ -132,7 +132,7 @@ Wayland_SetWindowFullscreen(_THIS, SDL_Window * window,
|
||||||
if (fullscreen)
|
if (fullscreen)
|
||||||
wl_shell_surface_set_fullscreen(wind->shell_surface,
|
wl_shell_surface_set_fullscreen(wind->shell_surface,
|
||||||
WL_SHELL_SURFACE_FULLSCREEN_METHOD_SCALE,
|
WL_SHELL_SURFACE_FULLSCREEN_METHOD_SCALE,
|
||||||
0, NULL);
|
0, (struct wl_output *)_display->driverdata);
|
||||||
else
|
else
|
||||||
wl_shell_surface_set_toplevel(wind->shell_surface);
|
wl_shell_surface_set_toplevel(wind->shell_surface);
|
||||||
|
|
||||||
|
@ -179,17 +179,6 @@ int Wayland_CreateWindow(_THIS, SDL_Window *window)
|
||||||
}
|
}
|
||||||
#endif /* SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH */
|
#endif /* SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH */
|
||||||
|
|
||||||
/**
|
|
||||||
* If the user specified 0x0 as the size (turned to 1x1 by SDL_CreateWindow
|
|
||||||
* in SDL_video.c), we want to make the window fill the whole screen
|
|
||||||
**/
|
|
||||||
if (window->w == 1) {
|
|
||||||
window->w = c->screen_allocation.width;
|
|
||||||
}
|
|
||||||
if (window->h == 1) {
|
|
||||||
window->h = c->screen_allocation.height;
|
|
||||||
}
|
|
||||||
|
|
||||||
data->egl_window = WAYLAND_wl_egl_window_create(data->surface,
|
data->egl_window = WAYLAND_wl_egl_window_create(data->surface,
|
||||||
window->w, window->h);
|
window->w, window->h);
|
||||||
|
|
||||||
|
@ -197,8 +186,7 @@ int Wayland_CreateWindow(_THIS, SDL_Window *window)
|
||||||
data->egl_surface = SDL_EGL_CreateSurface(_this, (NativeWindowType) data->egl_window);
|
data->egl_surface = SDL_EGL_CreateSurface(_this, (NativeWindowType) data->egl_window);
|
||||||
|
|
||||||
if (data->egl_surface == EGL_NO_SURFACE) {
|
if (data->egl_surface == EGL_NO_SURFACE) {
|
||||||
SDL_SetError("failed to create a window surface");
|
return SDL_SetError("failed to create a window surface");;
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data->shell_surface) {
|
if (data->shell_surface) {
|
||||||
|
|
|
@ -371,14 +371,8 @@ void
|
||||||
WIN_SetWindowTitle(_THIS, SDL_Window * window)
|
WIN_SetWindowTitle(_THIS, SDL_Window * window)
|
||||||
{
|
{
|
||||||
HWND hwnd = ((SDL_WindowData *) window->driverdata)->hwnd;
|
HWND hwnd = ((SDL_WindowData *) window->driverdata)->hwnd;
|
||||||
LPTSTR title;
|
LPTSTR title = WIN_UTF8ToString(window->title);
|
||||||
|
SetWindowText(hwnd, title);
|
||||||
if (window->title) {
|
|
||||||
title = WIN_UTF8ToString(window->title);
|
|
||||||
} else {
|
|
||||||
title = NULL;
|
|
||||||
}
|
|
||||||
SetWindowText(hwnd, title ? title : TEXT(""));
|
|
||||||
SDL_free(title);
|
SDL_free(title);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -333,7 +333,7 @@ SetWindowBordered(Display *display, int screen, Window window, SDL_bool border)
|
||||||
|
|
||||||
X11_XChangeProperty(display, window, WM_HINTS, WM_HINTS, 32,
|
X11_XChangeProperty(display, window, WM_HINTS, WM_HINTS, 32,
|
||||||
PropModeReplace, (unsigned char *) &MWMHints,
|
PropModeReplace, (unsigned char *) &MWMHints,
|
||||||
sizeof(MWMHints) / 4);
|
sizeof(MWMHints) / sizeof(long));
|
||||||
} else { /* set the transient hints instead, if necessary */
|
} else { /* set the transient hints instead, if necessary */
|
||||||
X11_XSetTransientForHint(display, window, RootWindow(display, screen));
|
X11_XSetTransientForHint(display, window, RootWindow(display, screen));
|
||||||
}
|
}
|
||||||
|
@ -656,22 +656,21 @@ X11_SetWindowTitle(_THIS, SDL_Window * window)
|
||||||
{
|
{
|
||||||
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
|
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
|
||||||
Display *display = data->videodata->display;
|
Display *display = data->videodata->display;
|
||||||
XTextProperty titleprop, iconprop;
|
XTextProperty titleprop;
|
||||||
Status status;
|
Status status;
|
||||||
const char *title = window->title;
|
const char *title = window->title ? window->title : "";
|
||||||
const char *icon = NULL;
|
char *title_locale = NULL;
|
||||||
|
|
||||||
#ifdef X_HAVE_UTF8_STRING
|
#ifdef X_HAVE_UTF8_STRING
|
||||||
Atom _NET_WM_NAME = data->videodata->_NET_WM_NAME;
|
Atom _NET_WM_NAME = data->videodata->_NET_WM_NAME;
|
||||||
Atom _NET_WM_ICON_NAME = data->videodata->_NET_WM_ICON_NAME;
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (title != NULL) {
|
title_locale = SDL_iconv_utf8_locale(title);
|
||||||
char *title_locale = SDL_iconv_utf8_locale(title);
|
|
||||||
if (!title_locale) {
|
if (!title_locale) {
|
||||||
SDL_OutOfMemory();
|
SDL_OutOfMemory();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
status = X11_XStringListToTextProperty(&title_locale, 1, &titleprop);
|
status = X11_XStringListToTextProperty(&title_locale, 1, &titleprop);
|
||||||
SDL_free(title_locale);
|
SDL_free(title_locale);
|
||||||
if (status) {
|
if (status) {
|
||||||
|
@ -680,8 +679,7 @@ X11_SetWindowTitle(_THIS, SDL_Window * window)
|
||||||
}
|
}
|
||||||
#ifdef X_HAVE_UTF8_STRING
|
#ifdef X_HAVE_UTF8_STRING
|
||||||
if (SDL_X11_HAVE_UTF8) {
|
if (SDL_X11_HAVE_UTF8) {
|
||||||
status =
|
status = X11_Xutf8TextListToTextProperty(display, (char **) &title, 1,
|
||||||
X11_Xutf8TextListToTextProperty(display, (char **) &title, 1,
|
|
||||||
XUTF8StringStyle, &titleprop);
|
XUTF8StringStyle, &titleprop);
|
||||||
if (status == Success) {
|
if (status == Success) {
|
||||||
X11_XSetTextProperty(display, data->xwindow, &titleprop,
|
X11_XSetTextProperty(display, data->xwindow, &titleprop,
|
||||||
|
@ -690,33 +688,7 @@ X11_SetWindowTitle(_THIS, SDL_Window * window)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
|
||||||
if (icon != NULL) {
|
|
||||||
char *icon_locale = SDL_iconv_utf8_locale(icon);
|
|
||||||
if (!icon_locale) {
|
|
||||||
SDL_OutOfMemory();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
status = X11_XStringListToTextProperty(&icon_locale, 1, &iconprop);
|
|
||||||
SDL_free(icon_locale);
|
|
||||||
if (status) {
|
|
||||||
X11_XSetTextProperty(display, data->xwindow, &iconprop,
|
|
||||||
XA_WM_ICON_NAME);
|
|
||||||
X11_XFree(iconprop.value);
|
|
||||||
}
|
|
||||||
#ifdef X_HAVE_UTF8_STRING
|
|
||||||
if (SDL_X11_HAVE_UTF8) {
|
|
||||||
status =
|
|
||||||
X11_Xutf8TextListToTextProperty(display, (char **) &icon, 1,
|
|
||||||
XUTF8StringStyle, &iconprop);
|
|
||||||
if (status == Success) {
|
|
||||||
X11_XSetTextProperty(display, data->xwindow, &iconprop,
|
|
||||||
_NET_WM_ICON_NAME);
|
|
||||||
X11_XFree(iconprop.value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
X11_XFlush(display);
|
X11_XFlush(display);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue