Skip to content

SL-A-SH/GraphicsEngine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to build and run the Project

  1. CMake:

    • mkdir build
    • cd build
    • cmake .. -G "Visual Studio 17 2022"

    Debug vs. Release Debug mode: Use for development, debugging, and testing. It includes debug symbols and is slower. Release mode: Use for final builds and performance testing. It is optimized and faster.

    To build Debug:

    cmake --build . --config Debug

    To build Release:

    cmake --build . --config Release

  2. Open the .sln file generated by CMake in the build directory.

  3. Right-click the executable project (e.g., DirectX11Engine) and select "Set as Startup Project"

Controls:

W A S D - Moves the camera

Ctrl + A - Moves the camera Up Ctrl + S - Moves the camera Down

F12 - Toggle between CPU and GPU Driven Rendering

About

Graphics Engine with DirectX 11

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors