kick
/Users/morten/Programmering/cpp/kick/src/kick/context/window_config.h
00001 //
00002 //  window_config.h
00003 //  KickCPP
00004 //
00005 //  Created by Morten Nobel-Jørgensen on 21/01/14.
00006 //  Copyright (c) 2014 Morten Nobel-Joergensen. All rights reserved.
00007 //
00008 
00009 #pragma once
00010 
00011 #include <string>
00012 
00013 namespace kick {
00014     struct WindowConfig{
00015         std::string name = "Kick";
00016         // bool fullscreen = false;
00017         unsigned int width = 800;
00018         unsigned int height = 600;
00019         // 0 means no depth buffer
00020         int depthBufferSize = 24;
00021         // bool stencilbuffer = false;
00022 
00023         int multisamples = 4;
00024         
00025         static const WindowConfig plain;
00026     };
00027 }
 All Classes Functions Variables