initial commit

This commit is contained in:
2025-05-01 23:03:47 +02:00
commit a23fbff52a
200 changed files with 434542 additions and 0 deletions

31
ScopEngine/Runtime/Includes/Renderer/Enums.h git.filemode.normal_file
View File

@@ -0,0 +1,31 @@
#ifndef __SCOP_RENDERER_ENUMS__
#define __SCOP_RENDERER_ENUMS__
#include <cstddef>
namespace Scop
{
enum class BufferType
{
Constant = 0,
Staging,
HighDynamic, // typically stored in RAM
LowDynamic, // typically stored in VRAM
EndEnum
};
constexpr std::size_t BufferTypeCount = static_cast<std::size_t>(BufferType::EndEnum);
enum class ImageType
{
Color = 0,
Cube,
Depth,
// Maybe add depth array
EndEnum
};
constexpr std::size_t ImageTypeCount = static_cast<std::size_t>(ImageType::EndEnum);
}
#endif