Now shipping with premake to enable direct slang builds

This commit is contained in:
Dynamitos
2020-03-26 00:25:33 +01:00
parent b3ad5bc573
commit 62c2d37cb3
6 changed files with 38 additions and 11 deletions
@@ -3,3 +3,26 @@
using namespace Seele;
using namespace Seele::Vulkan;
QueueOwnedResource::QueueOwnedResource(WGraphics graphics, QueueType startQueueType)
: graphics(graphics)
, currentOwner(startQueueType)
{
}
QueueOwnedResource::~QueueOwnedResource()
{
}
Buffer::Buffer(WGraphics graphics, uint32 size, VkBufferUsageFlags usage, QueueType queueType)
: QueueOwnedResource(graphics, queueType)
{
}
Buffer::~Buffer()
{
}
void Buffer::executeOwnershipBarrier(QueueType newOwner)
{
}