got bored and kinda rewrote GN_DEBUGGER_LAYER_FUNCTIONS

This commit is contained in:
Gregory Wells
2025-07-09 19:37:04 -04:00
parent a393d7b5b7
commit 0fe87e1e84
14 changed files with 160 additions and 280 deletions

View File

@@ -18,7 +18,7 @@
gnDeviceFunctions loadVulkanDeviceFunctions() {
return (gnDeviceFunctions){
._gnCreatePresentationQueue = createPresentationQueue,
._gnPresentationQueueGetImageAsync = getPresentQueueImageAsync,
// ._gnPresentationQueueGetImageAsync = getPresentQueueImageAsync,
._gnDestroyPresentationQueue = destroyPresentationQueue,
._gnCreateShaderModule = createShaderModule,
@@ -36,8 +36,8 @@ gnDeviceFunctions loadVulkanDeviceFunctions() {
._gnCreateCommandPool = createCommandPool,
._gnDestroyCommandPool = destroyCommandPool,
._gnCreateSemaphore = createSemaphore,
._gnDestroySemaphore = destroySemaphore,
// ._gnCreateSemaphore = createSemaphore,
// ._gnDestroySemaphore = destroySemaphore,
._gnCreateBuffer = createBuffer,
._gnBufferData = bufferData,
@@ -57,10 +57,10 @@ gnDeviceFunctions loadVulkanDeviceFunctions() {
._gnTextureData = textureData,
._gnDestroyTexture = destroyTexture,
._gnCreateFence = createFence,
._gnWaitForFence = waitForFence,
._gnResetFence = resetFence,
._gnDestroyFence = destroyFence,
// ._gnCreateFence = createFence,
// ._gnWaitForFence = waitForFence,
// ._gnResetFence = resetFence,
// ._gnDestroyFence = destroyFence,
._gnSubmit = submit,
._gnPresent = present,