Welcome to the Flux Rendering Engine repository. This application is meant to be an exploration into modern rendering techniques used in the game industry. One of the major improvements over its progenitor Radiant are its Physically Based Rendering capabilities.
- Cook-Torrance BRDF
- Irradiance mapping
- Prefiltered environment maps + BRDFintegration map
- Normal mapping
- HDR Skybox
- FXAA
- Gamma Correction
- HDR + Tone mapping
- HDR Bloom
- SSAO
- Shadow mapping
- Deferred Rendering
- Color Grading
- Fog
- Crepuscular rays
- Automatic exposure adjustment
- Spherical Harmonics
- Omni-directional shadow mapping
- Light probes
- PBR Lens flares
- Git (https://git-scm.com/)
- CMake 3.1+ (https://cmake.org/)
- Visual Studio 2017 or higher (Windows https://visualstudio.microsoft.com/downloads/)
The first step is to pull the repository from GitHub. You can do this in any way you like, but here is one possible way:
- Create a local folder for the project on your computer
- Go into the folder and open GitBash or a terminal with git enabled
- Execute the command
git init
to initialize the Git repository - Execute the command
git remote add origin git@github.com:JulianThijssen/Flux.git
to link your local repository to the remote GitHub one. - Fetch all branches from the repository using
git fetch -a
- Now you can pull in the source files from the
master
branch by executinggit pull origin master
- If you get a permission denied message on the last step be sure that you have an SSH-key pair and have added the public one to your GitHub account. See: https://help.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh
- Launch CMake (available here: https://cmake.org/)
- In the source code field browse to the local folder from the last section (which contains CMakeLists.txt).
- In the build field copy the source code field but append
/Build
at the end. This will put all files necessary for building in theBuild
folder (it will create it if it doesn't exist). - Press
Configure
and select the generator for your IDE of choice with the platform ofx64
. Press Finish to configure the project. - If no errors appear in the CMake log on the bottom, press
Generate
to generate the solution for your given IDE. - Press
Open Project
to launch the IDE and the project.
- At the top of Visual Studio set the build mode (where it says
Debug
) toRelease
. - Right click the project
TestProject
in the Solution Explorer and select Set as StartUp Project. - Right click the project
Flux
and pressBuild
, if that succeeds, right click theTestProject
project and pressBuild
. - If all is well both builds should succeed and if you run the project with Ctrl+F5 it will launch
TestProject.exe
.
This depends on your IDE / compiler. Follow their instructions for compiling source code. The code is untested on these platforms.
A test scene is available at: https://github.com/JulianThijssen/Flux/releases/download/v0.1.0/TestScene.zip
Place the contents of this .zip file in a folder called res
in your Build
folder.
Editor
- Assimp 3.3.1
Engine
- GLFW 3.2.1
The source code and auxiliary files fall under a GPL License, which you can read about in LICENSE.md.