mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-16 16:20:42 +02:00
21 lines
185 B
C++
21 lines
185 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#include "sl_struct.h"
|
|
|
|
namespace sl
|
|
{
|
|
|
|
//! Rendering API
|
|
//!
|
|
enum class RenderAPI : uint32_t
|
|
{
|
|
eD3D11,
|
|
eD3D12,
|
|
eVulkan,
|
|
eCount
|
|
};
|
|
|
|
}
|