2024-04-09 16:41:12 +02:00
|
|
|
#pragma once
|
|
|
|
|
#include "Graphics/Enums.h"
|
2024-04-10 08:43:56 +02:00
|
|
|
#include "Resources.h"
|
2024-04-09 16:41:12 +02:00
|
|
|
|
|
|
|
|
namespace Seele
|
|
|
|
|
{
|
|
|
|
|
namespace Metal
|
|
|
|
|
{
|
|
|
|
|
MTL::PixelFormat cast(Gfx::SeFormat format);
|
|
|
|
|
Gfx::SeFormat cast(MTL::PixelFormat format);
|
2024-04-10 08:43:56 +02:00
|
|
|
MTL::LoadAction cast(Gfx::SeAttachmentLoadOp loadOp);
|
|
|
|
|
Gfx::SeAttachmentLoadOp cast(MTL::LoadAction loadOp);
|
|
|
|
|
MTL::StoreAction cast(Gfx::SeAttachmentStoreOp storeOp);
|
|
|
|
|
Gfx::SeAttachmentStoreOp cast(MTL::StoreAction storeOp);
|
2024-04-09 16:41:12 +02:00
|
|
|
}
|
|
|
|
|
}
|