Skip to content

Commit

Permalink
Added a way to get the native Android window and EGL context
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jun 2, 2014
1 parent 3905b91 commit 3266513
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 2 deletions.
16 changes: 15 additions & 1 deletion include/SDL_syswm.h
Expand Up @@ -98,6 +98,11 @@ typedef struct _UIViewController UIViewController;
#endif
#endif

#if defined(SDL_VIDEO_DRIVER_ANDROID)
typedef struct ANativeWindow ANativeWindow;
typedef void *EGLSurface;
#endif

/**
* These are the various supported windowing subsystems
*/
Expand All @@ -111,7 +116,8 @@ typedef enum
SDL_SYSWM_UIKIT,
SDL_SYSWM_WAYLAND,
SDL_SYSWM_MIR,
SDL_SYSWM_WINRT
SDL_SYSWM_WINRT,
SDL_SYSWM_ANDROID
} SDL_SYSWM_TYPE;

/**
Expand Down Expand Up @@ -225,6 +231,14 @@ struct SDL_SysWMinfo
} mir;
#endif

#if defined(SDL_VIDEO_DRIVER_ANDROID)
struct
{
ANativeWindow *window;
EGLSurface surface;
} android;
#endif

/* Can't have an empty union */
int dummy;
} info;
Expand Down
1 change: 1 addition & 0 deletions src/video/android/SDL_androidvideo.c
Expand Up @@ -111,6 +111,7 @@ Android_CreateDevice(int devindex)
device->CreateWindow = Android_CreateWindow;
device->SetWindowTitle = Android_SetWindowTitle;
device->DestroyWindow = Android_DestroyWindow;
device->GetWindowWMInfo = Android_GetWindowWMInfo;

device->free = Android_DeleteDevice;

Expand Down
20 changes: 19 additions & 1 deletion src/video/android/SDL_androidwindow.c
Expand Up @@ -106,7 +106,7 @@ Android_DestroyWindow(_THIS, SDL_Window * window)
if (data->egl_surface != EGL_NO_SURFACE) {
SDL_EGL_DestroySurface(_this, data->egl_surface);
}
if(data->native_window) {
if (data->native_window) {
ANativeWindow_release(data->native_window);
}
SDL_free(window->driverdata);
Expand All @@ -115,6 +115,24 @@ Android_DestroyWindow(_THIS, SDL_Window * window)
}
}

SDL_bool
Android_GetWindowWMInfo(_THIS, SDL_Window * window, SDL_SysWMinfo * info)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;

if (info->version.major == SDL_MAJOR_VERSION &&
info->version.minor == SDL_MINOR_VERSION) {
info->subsystem = SDL_SYSWM_ANDROID;
info->info.android.window = data->native_window;
info->info.android.surface = data->egl_surface;
return SDL_TRUE;
} else {
SDL_SetError("Application not compiled with SDL %d.%d\n",
SDL_MAJOR_VERSION, SDL_MINOR_VERSION);
return SDL_FALSE;
}
}

#endif /* SDL_VIDEO_DRIVER_ANDROID */

/* vi: set ts=4 sw=4 expandtab: */
1 change: 1 addition & 0 deletions src/video/android/SDL_androidwindow.h
Expand Up @@ -29,6 +29,7 @@
extern int Android_CreateWindow(_THIS, SDL_Window * window);
extern void Android_SetWindowTitle(_THIS, SDL_Window * window);
extern void Android_DestroyWindow(_THIS, SDL_Window * window);
extern SDL_bool Android_GetWindowWMInfo(_THIS, SDL_Window * window, SDL_SysWMinfo * info);

typedef struct
{
Expand Down

0 comments on commit 3266513

Please sign in to comment.