Files
Gryphn/projects/core/src/submit/gryphn_submit.h
2025-07-29 06:22:41 -04:00

11 lines
286 B
C

#pragma once
#include "stdint.h"
#include "core/gryphn_return_code.h"
#include "gryphn_handles.h"
typedef struct gnSubmitInfo {
uint32_t commandBufferCount;
gnCommandBufferHandle* commandBuffers;
} gnSubmitInfo;
gnReturnCode gnSubmit(gnOutputDevice device, gnSubmitInfo info);