light/modules/renderer/public/api.hpp
light7734 16f3a80fd3
Some checks reported errors
continuous-integration/drone/push Build was killed
feat(renderer): separate things into backend/frontend + major vk backend refactors
2025-10-04 22:08:19 +03:30

12 lines
100 B
C++

#pragma once
namespace lt::renderer {
enum class API : uint8_t
{
Vulkan,
DirectX,
Metal,
};
}