Changeset 8a6d19d in opengl-game


Ignore:
Timestamp:
Jun 23, 2017, 8:07:56 PM (7 years ago)
Author:
Dmitry Portnoy <dmitry.portnoy@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
92bc4fe
Parents:
b33f87b
Message:

Implement movement in a basic 3D scene and add some examples from the new OpenGL tutorials site

Files:
19 added
3 edited

Legend:

Unmodified
Added
Removed
  • .gitignore

    rb33f87b r8a6d19d  
    11game
     2demo
    23
    34# Visual Studio files
  • README.txt

    rb33f87b r8a6d19d  
     1TODO: Make sure the instructions in this README still work and, if not, update them
     2
    13Installation Instructions for Linux
    24---------------------------------------
    35
    46-Compile GLEW from source
    5  (download and following the instructions in README.md)
     7 (download and follow the instructions in README.md)
    68
    79sudo apt-get install cmake xorg-dev  libglew-dev libglu1-mesa-dev freeglut3-dev mesa-common-dev
  • makefile

    rb33f87b r8a6d19d  
    1010endif
    1111
    12 game: game.cpp
     12game: mygame.cpp common/shader.cpp common/texture.cpp common/controls-new.cpp
     13        $(CC) $? $(DEP) $(CFLAGS) -o $@
     14
     15demo: game06.cpp common/shader.cpp common/texture.cpp common/controls.cpp
    1316        $(CC) $? $(DEP) $(CFLAGS) -o $@
    1417
    1518clean:
    1619        rm -f game
     20        rm -f demo
Note: See TracChangeset for help on using the changeset viewer.