libcruft-vk/device.cpp

44 lines
1.1 KiB
C++
Raw Normal View History

2016-02-24 11:11:41 +11:00
#include "./device.hpp"
#include "./physical_device.hpp"
using vk::device;
///////////////////////////////////////////////////////////////////////////////
device::device (const physical_device &phys,
const VkDeviceCreateInfo &info):
instantiated (phys.id (), &info, nullptr)
{ ; }
///////////////////////////////////////////////////////////////////////////////
VkPhysicalDeviceMemoryProperties
device::physical_properties (void) const
{
VkPhysicalDeviceMemoryProperties props;
vkGetPhysicalDeviceMemoryProperties (id (), &props);
return props;
}
///////////////////////////////////////////////////////////////////////////////
void
device::flush (const VkMappedMemoryRange *first,
const VkMappedMemoryRange *last)
{
auto err = vkFlushMappedMemoryRanges (id (), last - first, first);
error::try_code (err);
}
//-----------------------------------------------------------------------------
void
device::invalidate (const VkMappedMemoryRange *first,
const VkMappedMemoryRange *last)
{
auto err = vkInvalidateMappedMemoryRanges (id (), last - first, first);
error::try_code (err);
}