~ubuntu-branches/ubuntu/trusty/libsdl2/trusty-proposed

« back to all changes in this revision

Viewing changes to src/video/bwindow/SDL_bopengl.cc

  • Committer: Package Import Robot
  • Author(s): Manuel A. Fernandez Montecelo
  • Date: 2013-12-28 12:31:19 UTC
  • mto: (7.1.3 sid)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: package-import@ubuntu.com-20131228123119-wehupm72qsjvh6vz
Tags: upstream-2.0.1+dfsg1
ImportĀ upstreamĀ versionĀ 2.0.1+dfsg1

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
#define BGL_FLAGS BGL_RGB | BGL_DOUBLE
39
39
 
40
 
static inline SDL_BWin *_ToBeWin(SDL_Window *window) {
 
40
static SDL_INLINE SDL_BWin *_ToBeWin(SDL_Window *window) {
41
41
        return ((SDL_BWin*)(window->driverdata));
42
42
}
43
43
 
44
 
static inline SDL_BApp *_GetBeApp() {
 
44
static SDL_INLINE SDL_BApp *_GetBeApp() {
45
45
        return ((SDL_BApp*)be_app);
46
46
}
47
47