mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
Move function to more appropriate file
This commit is contained in:
@@ -166,6 +166,14 @@ VkResult WrappedVulkan::vkGetImageSparseMemoryRequirements(
|
||||
return ObjDisp(device)->GetImageSparseMemoryRequirements(Unwrap(device), Unwrap(image), pNumRequirements, pSparseMemoryRequirements);
|
||||
}
|
||||
|
||||
VkResult WrappedVulkan::vkGetDeviceMemoryCommitment(
|
||||
VkDevice device,
|
||||
VkDeviceMemory memory,
|
||||
VkDeviceSize* pCommittedMemoryInBytes)
|
||||
{
|
||||
return ObjDisp(device)->GetDeviceMemoryCommitment(Unwrap(device), Unwrap(memory), pCommittedMemoryInBytes);
|
||||
}
|
||||
|
||||
VkResult WrappedVulkan::vkGetRenderAreaGranularity(
|
||||
VkDevice device,
|
||||
VkRenderPass renderPass,
|
||||
|
||||
@@ -408,14 +408,6 @@ VkResult WrappedVulkan::vkInvalidateMappedMemoryRanges(
|
||||
return ObjDisp(device)->InvalidateMappedMemoryRanges(Unwrap(device), memRangeCount, pMemRanges);
|
||||
}
|
||||
|
||||
VkResult WrappedVulkan::vkGetDeviceMemoryCommitment(
|
||||
VkDevice device,
|
||||
VkDeviceMemory memory,
|
||||
VkDeviceSize* pCommittedMemoryInBytes)
|
||||
{
|
||||
return ObjDisp(device)->GetDeviceMemoryCommitment(Unwrap(device), Unwrap(memory), pCommittedMemoryInBytes);
|
||||
}
|
||||
|
||||
// Generic API object functions
|
||||
|
||||
bool WrappedVulkan::Serialise_vkBindBufferMemory(
|
||||
|
||||
Reference in New Issue
Block a user