Changeset d02c25f in opengl-game


Ignore:
Timestamp:
Aug 30, 2019, 4:16:08 PM (5 years ago)
Author:
Dmitry Portnoy <dmitry.portnoy@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
d5f2b42
Parents:
99d44b2
Message:

Create openglgame, which will be the original opengl+glfw game, but refactored to make simplify its conversion to vulkan

Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • .gitignore

    r99d44b2 rd02c25f  
    11newgame
    22vulkanref
     3openglgame
    34vulkangame
    45
  • makefile

    r99d44b2 rd02c25f  
    2323
    2424newgame: new-game.cpp logger.cpp utils.cpp CrashLogger.cpp imgui_impl_glfw_gl3.cpp $(IMGUI_FILES)
     25        $(CC) $^ $(DEP) $(CFLAGS) -o $@
     26
     27openglgame: main-opengl.cpp opengl-game.cpp
    2528        $(CC) $^ $(DEP) $(CFLAGS) -o $@
    2629
     
    6669        rm -f newgame
    6770        rm -f vulkanref
     71        rm -f openglgame
    6872        rm -f vulkangame
    6973        rm -f shaders/*.spv
Note: See TracChangeset for help on using the changeset viewer.