Basic commandbuffer implementation
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
#pragma once
|
||||
#include "Graphics/Enums.h"
|
||||
#include "Metal/MTLPixelFormat.hpp"
|
||||
#include "Metal/MTLTexture.hpp"
|
||||
#include "Resources.h"
|
||||
|
||||
namespace Seele
|
||||
{
|
||||
@@ -9,5 +8,9 @@ namespace Metal
|
||||
{
|
||||
MTL::PixelFormat cast(Gfx::SeFormat format);
|
||||
Gfx::SeFormat cast(MTL::PixelFormat format);
|
||||
MTL::LoadAction cast(Gfx::SeAttachmentLoadOp loadOp);
|
||||
Gfx::SeAttachmentLoadOp cast(MTL::LoadAction loadOp);
|
||||
MTL::StoreAction cast(Gfx::SeAttachmentStoreOp storeOp);
|
||||
Gfx::SeAttachmentStoreOp cast(MTL::StoreAction storeOp);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user