libcruft-vk/command_buffer.cpp

126 lines
3.6 KiB
C++
Raw Normal View History

2016-02-26 13:39:01 +11:00
/*
2018-08-04 15:24:36 +10:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
2016-02-26 13:39:01 +11:00
*
* Copyright:
2017-09-13 23:26:15 +10:00
* 2016-2017 Danny Robson <danny@nerdcruft.net>
2016-02-26 13:39:01 +11:00
*/
2016-02-24 11:11:41 +11:00
#include "./command_buffer.hpp"
#include "./event.hpp"
#include "./pipeline.hpp"
2016-06-29 18:03:11 +10:00
#include <cruft/util/cast.hpp>
using cruft::vk::command_buffer;
2016-02-24 11:11:41 +11:00
///////////////////////////////////////////////////////////////////////////////
void
command_buffer::reset (VkCommandBufferResetFlags flags)
{
2017-09-08 17:11:35 +10:00
auto err = vkResetCommandBuffer (native (), flags);
2016-02-24 11:11:41 +11:00
error::try_code (err);
}
///////////////////////////////////////////////////////////////////////////////
void
command_buffer::begin (const VkCommandBufferBeginInfo &info)
{
2017-09-08 17:11:35 +10:00
auto err = vkBeginCommandBuffer (native (), &info);
2016-02-24 11:11:41 +11:00
error::try_code (err);
}
//-----------------------------------------------------------------------------
void
command_buffer::begin (const VkRenderPassBeginInfo &info, VkSubpassContents contents)
{
2017-09-08 17:11:35 +10:00
vkCmdBeginRenderPass (native (), &info, contents);
2016-02-24 11:11:41 +11:00
}
//-----------------------------------------------------------------------------
void
command_buffer::end (void)
{
2017-09-08 17:11:35 +10:00
auto err = vkEndCommandBuffer (native ());
2016-02-24 11:11:41 +11:00
error::try_code (err);
}
//-----------------------------------------------------------------------------
void
command_buffer::end_pass (void)
{
2017-09-08 17:11:35 +10:00
vkCmdEndRenderPass (native ());
2016-02-24 11:11:41 +11:00
}
///////////////////////////////////////////////////////////////////////////////
template <size_t N>
void
command_buffer::execute (const command_buffer (&buffers)[N])
{
2017-09-08 17:11:35 +10:00
vkCmdExecuteCOmmands (native (), N, buffers);
2016-02-24 11:11:41 +11:00
}
//-----------------------------------------------------------------------------
void
command_buffer::next_subpass (const VkSubpassContents contents)
{
2017-09-08 17:11:35 +10:00
vkCmdNextSubpass (native (), contents);
2016-02-24 11:11:41 +11:00
}
///////////////////////////////////////////////////////////////////////////////
2017-09-12 14:24:04 +10:00
template <cruft::vk::bindpoint BindpointV>
2016-02-24 11:11:41 +11:00
void
2017-09-12 14:24:04 +10:00
command_buffer::bind (const pipeline<BindpointV> &p)
2016-02-24 11:11:41 +11:00
{
2017-09-12 14:24:04 +10:00
vkCmdBindPipeline (native (), static_cast<VkPipelineBindPoint> (BindpointV), p.native ());
2016-02-24 11:11:41 +11:00
}
2017-09-12 14:24:04 +10:00
template void command_buffer::bind(const pipeline<bindpoint::GRAPHICS>&);
template void command_buffer::bind(const pipeline<bindpoint::COMPUTE>&);
2016-02-24 11:11:41 +11:00
///////////////////////////////////////////////////////////////////////////////
void
command_buffer::set (const event &ev, VkPipelineStageFlags flags)
{
2017-09-08 17:11:35 +10:00
vkCmdSetEvent (native (), ev.native (), flags);
2016-02-24 11:11:41 +11:00
}
//-----------------------------------------------------------------------------
void
command_buffer::reset (const event &ev, VkPipelineStageFlags flags)
{
2017-09-08 17:11:35 +10:00
vkCmdResetEvent (native (), ev.native (), flags);
2016-02-24 11:11:41 +11:00
}
//-----------------------------------------------------------------------------
void
2018-08-05 14:51:18 +10:00
command_buffer::wait (cruft::view<const event*> events,
2016-02-24 11:11:41 +11:00
VkPipelineStageFlags src_mask,
VkPipelineStageFlags dst_mask,
2018-08-05 14:51:18 +10:00
cruft::view<const VkMemoryBarrier*> VkMemoryBarriers,
cruft::view<const VkBufferMemoryBarrier*> VkBufferMemoryBarriers,
cruft::view<const VkImageMemoryBarrier*> VkImageMemoryBarriers)
2016-02-24 11:11:41 +11:00
{
vkCmdWaitEvents (
native (),
2018-08-05 14:51:18 +10:00
cruft::cast::lossless<uint32_t> (events.size ()), &events.cbegin ()->native (),
src_mask, dst_mask,
2018-08-05 14:51:18 +10:00
cruft::cast::lossless<uint32_t> (VkMemoryBarriers.size ()), VkMemoryBarriers.cbegin (),
cruft::cast::lossless<uint32_t> (VkBufferMemoryBarriers.size ()), VkBufferMemoryBarriers.cbegin (),
cruft::cast::lossless<uint32_t> (VkImageMemoryBarriers.size ()), VkImageMemoryBarriers.cbegin ());
2016-02-24 11:11:41 +11:00
}