Skip to content

Latest commit

 

History

History
42 lines (38 loc) · 2.18 KB

README.md

File metadata and controls

42 lines (38 loc) · 2.18 KB

OpenGL Practice

Build Status

  • Ubuntu / macOS Build Status
  • Windows Build status
  • macOS Catalina build

Building

This has been tested and found to work in these systems; Windows, macOS and Linux.

$ mkdir build
$ cd build
$ cmake ..
$ cmake --build .

If you have multiple cores, you could speed up compilation by:

$ cmake --build . -j n

Where n is the number of cores you wish to use to compile.

Running

Linux and macOS

The executables should be in the build directory. Launch them in the terminal, for example:

$ ./Hello_Window

Windows

The executables should be in the build/Debug directory.

Screenshots

# Lesson Screenshot
1 Hello window
2 Hello triangle
3 Hello rectangle
4 Shaders
5 Textures
6 Transformations
7 Coordinate systems
8 Hello noise
9 Hello ImGUI