Initial commit

This commit is contained in:
Stefan Stefanov 2023-10-20 17:14:46 +03:00 committed by GitHub
commit fce29361f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
35 changed files with 59905 additions and 0 deletions

20
README.md Normal file
View file

@ -0,0 +1,20 @@
# 👾 opengl-imgui-cmake-template
A quick and easy way to get started using OpenGL 3.3 Core Profile together with [imgui](https://github.com/ocornut/imgui) in a CMake environment.
This template only contains a wrapper class for shaders, and one for the window with appropriate `Initialize/LoadContent/Update/Render` as a game loop.
The shader class allows for **hot-reloading** of the fragment shader, so whenever you modify the `testing.fs` file in the `build/resources/shaders/` directory, the shader will automagically be reloaded!
**NOTE:** The shader files in `resources/shaders/` are copied into the `build/` directory upon build, so if you want to save your hot-reloaded changes, then you must also modify the shaders in `resources/shaders/` directory.
## Getting started
1. Create a new repo by clicking `Use this template` up to the right!
2. Download some [GLFW pre-compiled binaries](https://www.glfw.org/download) and put the `libglfw3.a` file in `libs/glfw/`.
3. Compile with CMake and then run it! Piece of cake!
## Remarks
* Uses [imgui version 1.83](https://github.com/ocornut/imgui/releases/tag/v1.83)
* Has only been tested on MingW64 compiler for Windows (so it may require some fixing for it to work for gcc or clang)