Skip to content

A raytracer built with Vulkan and C++20 modules that supports realtime compute-shader-based raytracing with multi-bounce and multi-ray per pixel. We only support spheres for the time being.

Notifications You must be signed in to change notification settings

KarimIO/Vulkan-Raytracer

Repository files navigation

Raytracer Test

A raytracer built with Vulkan and C++20 modules that supports realtime compute-shader-based raytracing with multi-bounce and multi-ray per pixel.

You can control the camera using WASD / Arrow keys, and the mouse. Tab will toggle input. Escape will quit the application.

A demo image

Roadmap

  • Load models from glTF files
  • Depth of Field
  • Controls GUI
  • Textures
    • Texture Infrastructure
    • Albedo Texture
    • Normal Texture
    • Metallic Texture
    • Roughness Texture
  • Importance Sampling
  • Other methods of reducing noise

How to Build

If you'd like to build without cmake, use this guide.

Build Shaders

When building using cmake, you can run the BuildShaders target.

Alternatively, you can also just run the following commands with ... replaced with relevant paths and x.x.x.x replaced with relevant version:

.../VulkanSDK/x.x.x.x/Bin/glslc.exe -fshader-stage=vertex Fullscreen.vert.glsl -o Fullscreen.vert.spv
.../VulkanSDK/x.x.x.x/Bin/glslc.exe -fshader-stage=fragment Fullscreen.frag.glsl -o Fullscreen.frag.spv
.../VulkanSDK/x.x.x.x/Bin/glslc.exe -fshader-stage=compute Raytracing.comp.glsl -o Raytracing.comp.spv

Build Project

  1. Download and install Vulkan.
  2. Run CMake in the root directory of this project, where CMakeLists.txt is.
  3. Open the Solution.
  4. Open the properties for VulkanRaytracer. Set C/C++ > Code Generation > Floating Point Model to be blank.
  5. Build glfw, and then build VulkanRaytracer

Libraries and APIs used

References and Thanks

PBR and Raytracing

Vulkan

About

A raytracer built with Vulkan and C++20 modules that supports realtime compute-shader-based raytracing with multi-bounce and multi-ray per pixel. We only support spheres for the time being.

Topics

Resources

Stars

Watchers

Forks