Changeset 3b7d497 in opengl-game for main-vulkan.cpp


Ignore:
Timestamp:
Jan 2, 2021, 4:19:31 PM (4 years ago)
Author:
Dmitry Portnoy <dportnoy@…>
Branches:
feature/imgui-sdl
Children:
6493e43
Parents:
c324d6a
Message:

Start implementing an ImGUI ui on top of SDL and Vulkan using some example code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main-vulkan.cpp

    rc324d6a r3b7d497  
    44#include "crash-logger.hpp"
    55
    6 #include "vulkan-game.hpp"
     6//#include "vulkan-game.hpp"
     7#include "sdl-game.hpp"
    78
    89using namespace std;
     
    2526
    2627   try {
    27       game.run(800, 600, GUI_FLAGS_WINDOW_FULLSCREEN);
     28      //game.run(800, 600, 0);
     29      //game.run(800, 600, GUI_FLAGS_WINDOW_FULLSCREEN);
     30      game.run(1280, 720, 0);
    2831   } catch (const exception& e) {
    2932      cerr << e.what() << endl;
Note: See TracChangeset for help on using the changeset viewer.