~ubuntu-branches/ubuntu/vivid/libsdl2/vivid

« back to all changes in this revision

Viewing changes to src/video/android/SDL_androidwindow.h

  • Committer: Package Import Robot
  • Author(s): Manuel A. Fernandez Montecelo, Felix Geyer
  • Date: 2013-12-28 12:31:19 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20131228123119-e0k27gckmnzskfgb
Tags: 2.0.1+dfsg1-1
* New upstream release (Closes: #728974)
  - Remove patch applied upstream:
    bug-723797-false_positives_in_mouse_wheel_code.patch
* Bump Standards-Version to 3.9.5, no changes needed.

[ Felix Geyer ]
* Import upstream gpg key for uscan to verify the orig tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#ifndef _SDL_androidwindow_h
24
24
#define _SDL_androidwindow_h
25
25
 
 
26
#include "../../core/android/SDL_android.h"
 
27
#include "../SDL_egl.h"
 
28
 
26
29
extern int Android_CreateWindow(_THIS, SDL_Window * window);
27
30
extern void Android_SetWindowTitle(_THIS, SDL_Window * window);
28
31
extern void Android_DestroyWindow(_THIS, SDL_Window * window);
29
32
 
 
33
typedef struct
 
34
{
 
35
    EGLSurface egl_surface;
 
36
    EGLContext egl_context; /* We use this to preserve the context when losing focus */
 
37
    ANativeWindow* native_window;
 
38
    
 
39
} SDL_WindowData;
 
40
 
30
41
#endif /* _SDL_androidwindow_h */
31
42
 
32
43
/* vi: set ts=4 sw=4 expandtab: */