Changeset 4d52702 in opengl-game for game.cpp


Ignore:
Timestamp:
Feb 25, 2017, 9:28:06 PM (8 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
b33f87b
Parents:
15c7ed9
Message:

Add Visual Studio project files and support for building in Windows

File:
1 edited

Legend:

Unmodified
Added
Removed
  • game.cpp

    r15c7ed9 r4d52702  
    1010#if defined(__linux__)
    1111   #define LINUX
     12#elif defined(_WIN32)
     13        #define WINDOWS
    1214#elif defined(__APPLE__)
    1315   #define MAC
     
    3335   glfwWindowHint(GLFW_RESIZABLE, GL_FALSE);
    3436
    35    // required in OSX
    36    #ifdef MAC
     37   #ifdef MAC // required in OSX
    3738      glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
    3839   #endif
Note: See TracChangeset for help on using the changeset viewer.