https://github.com/mulx10/opengl
Repository containing OpenGL examples implementation(A naive attempt to learn OpenGL).
https://github.com/mulx10/opengl
glsl-shaders ogl opengl shaders
Last synced: 3 months ago
JSON representation
Repository containing OpenGL examples implementation(A naive attempt to learn OpenGL).
- Host: GitHub
- URL: https://github.com/mulx10/opengl
- Owner: MuLx10
- Created: 2020-08-24T11:01:09.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-25T16:12:28.000Z (over 4 years ago)
- Last Synced: 2024-12-30T13:10:35.273Z (5 months ago)
- Topics: glsl-shaders, ogl, opengl, shaders
- Language: C++
- Homepage:
- Size: 3.78 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenGL
Repository containing OpenGL examples implementation.## Deps
- CMake >= 3
- g++ (MinGW in Windows)
- GLFW (present in `deps` extract the zip)
- GLEW (present in `deps` extract the zip)
- GLM (present in `deps` extract the zip)
- STB_IMAGE (present in `deps` extract the zip)
## Build```bash
$ mkdir build
$ cd build
$ cmake ..
$ make
```#### Individual build
```bash
$ make {executable} # eg. make triangle
```## Run
```bash
$ cd src/{project}/ # $ cd src/01-triangle/
$ {executable} # $./triangle
```**Supported executable**
- triangle
- texture
- multi-texture
- controls
- 3d-model