https://github.com/azrielx86/azxenginegl
This is my home made "game" engine library with OpenGL.
https://github.com/azrielx86/azxenginegl
computer-graphics graphics-engine opengl
Last synced: about 1 month ago
JSON representation
This is my home made "game" engine library with OpenGL.
- Host: GitHub
- URL: https://github.com/azrielx86/azxenginegl
- Owner: Azrielx86
- License: mit
- Created: 2025-08-30T05:22:50.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-10-01T21:27:58.000Z (9 months ago)
- Last Synced: 2025-10-12T22:34:10.173Z (9 months ago)
- Topics: computer-graphics, graphics-engine, opengl
- Language: C++
- Homepage:
- Size: 59.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AzxEngineGL
This is my _home made_ graphics engine library.
## How to use
Just add it in your project library like this.
```cmake
cmake_minimum_required(VERSION 4.0)
project(Example)
set(CMAKE_CXX_STANDARD 20)
add_subdirectory(AzxEngineGL)
target_link_libraries(Example PRIVATE AzxEngineGL)
```
## Current support
- [x] Multiple lights
- [ ] Lighing: Point and Spot
- [x] Normal mapping
- [ ] Parallax mapping
- [ ] Shadows
- [x] Using Framebuffers
- [ ] Bloom effect
- [ ] Motion Blur effect
- [ ] Fresnel effect
- [ ] SSAO
- [x] Grid floor
- [ ] Particle system
## My Projects using this
### [OpenGL Playground](https://github.com/Azrielx86/OpenGL_Playground)
This is the project where I develop and test it.

### [Advanced Computer Graphics Final Project](https://github.com/Azrielx86/ProyectoFinal_CGA)
An endless runner game.
