emrsmsrli / volkano

Vulkan-based educational engine

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

volkano

volkano is a Vulkan-based educational general purpose engine. Currently, it's heavily WIP, and it doesn't really do anything useful.

Building

Building is as simple as just invoking CMake like below:

cmake --config Release -GNinja
  -DVKE_ENABLE_TESTS=ON 
  -DVKE_LOG_VERBOSITY=VERBOSE 
  -S /path/to/volkano 
  -B /path/to/volkano/cmake-build-release

CMake Arguments

  • VKE_ENABLE_TESTS: Enables tests if ON
  • VKE_LOG_VERBOSITY: Sets the compile-time verbosity of log calls, can be one of:
    OFF, CRITICAL, ERROR, WARNING, INFO, DEBUG, VERBOSE

for more arguments check cmake/ directory.

Dependencies

volkano depends on following libraries:

  • Vulkan SDK 1.3
  • libfmt
  • magic_enum
  • SDL2

These dependencies are included in the repository:

  • Dear ImGui
  • VulkanMemoryAllocator-Hpp
  • debugbreak

About

Vulkan-based educational engine

License:GNU General Public License v3.0


Languages

Language:C++ 88.3%Language:CMake 10.9%Language:GLSL 0.5%Language:C 0.3%