adding Vulkan's buffer creation

This commit is contained in:
2024-11-27 05:04:49 +01:00
parent d0eb9e0876
commit cddd08f92f
10 changed files with 155 additions and 8 deletions

View File

@@ -24,5 +24,7 @@ typedef bool (*PulseWaitForFencesPFN)(PulseDevice, const PulseFence*, uint32_t,
typedef PulseCommandList (*PulseRequestCommandListPFN)(PulseDevice, PulseCommandListUsage);
typedef bool (*PulseSubmitCommandListPFN)(PulseDevice, PulseCommandList, PulseFence);
typedef void (*PulseReleaseCommandListPFN)(PulseDevice, PulseCommandList);
typedef PulseBuffer (*PulseCreateBufferPFN)(PulseDevice, const PulseBufferCreateInfo*);
typedef void (*PulseDestroyBufferPFN)(PulseDevice, PulseBuffer);
#endif // PULSE_PFNS_H_