rename to projects (DOES NOT COMPILE)

This commit is contained in:
Gregory Wells
2025-06-24 12:04:16 -04:00
parent 7a80d0fd61
commit d66f470a52
148 changed files with 2 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
#include "gryphn_platform_functions.h"
#include "gryphn_present.h"
gnReturnCode gnPresent(gnOutputDeviceHandle device, gnPresentInfo info) {
return device->deviceFunctions->_gnPresent(device, info);
}

View File

@@ -0,0 +1,15 @@
#pragma once
#include "utils/gryphn_error_code.h"
#include "stdint.h"
#include "gryphn_handles.h"
typedef struct gnPresentInfo_t {
uint32_t waitCount;
gnSemaphoreHandle* waitSemaphores;
uint32_t presentationQueueCount;
gnPresentationQueueHandle* presentationQueues;
uint32_t* imageIndices;
uint32_t queueIndex;
} gnPresentInfo;
gnReturnCode gnPresent(gnOutputDeviceHandle device, gnPresentInfo info);