~vcs-imports/libsdl/trunk

« back to all changes in this revision

Viewing changes to src/video/cocoa/SDL_cocoawindow.h

  • Committer: slouken
  • Date: 2010-01-21 06:21:52 UTC
  • Revision ID: svn-v4:c70aab31-4412-0410-b14c-859654838e24:trunk/SDL:5525
Switched from SDL_WindowID and SDL_TextureID to SDL_Window* and SDL_Texture* for code simplicity and improved performance.

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
 
70
70
struct SDL_WindowData
71
71
{
72
 
    SDL_WindowID windowID;
73
 
    NSWindow *window;
 
72
    SDL_Window *window;
 
73
    NSWindow *nswindow;
74
74
    SDL_bool created;
75
75
    CGDirectDisplayID display;
76
76
    Cocoa_WindowListener *listener;