Files
Seele/src/Engine/Graphics/Metal/Enums.h
T

13 lines
239 B
C++
Raw Normal View History

2024-04-09 16:41:12 +02:00
#pragma once
#include "Graphics/Enums.h"
#include "Metal/MTLPixelFormat.hpp"
#include "Metal/MTLTexture.hpp"
namespace Seele
{
namespace Metal
{
MTL::PixelFormat cast(Gfx::SeFormat format);
Gfx::SeFormat cast(MTL::PixelFormat format);
}
}