Changeset 550 for trunk/src/sdl/sdl_window_manager.cc
- Timestamp:
- 03/09/17 13:33:03 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sdl/sdl_window_manager.cc
r529 r550 27 27 } 28 28 29 window* sdl::window_manager::create_window( device* dev, uint16 width, uint16 height, bool fullscreen )29 window* sdl::window_manager::create_window( device* dev, uint16 width, uint16 height, bool fullscreen, bool msaa ) 30 30 { 31 31 if ( ! SDL_WasInit( SDL_INIT_VIDEO ) ) SDL_InitSubSystem( SDL_INIT_VIDEO ); 32 sdl::window* result = new sdl::window( dev, width, height, fullscreen );32 sdl::window* result = new sdl::window( dev, width, height, fullscreen, msaa ); 33 33 primal_window = result->get_handle(); 34 34 return result;
Note: See TracChangeset
for help on using the changeset viewer.