submitted command buffers + subpass depends
This commit is contained in:
20
src/core/submit/gryphn_submit.h
Normal file
20
src/core/submit/gryphn_submit.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
#include "stdint.h"
|
||||
#include "core/sync/semaphore/gryphn_semaphore.h"
|
||||
#include "core/sync/fence/gryphn_fence.h"
|
||||
#include "core/command/command_buffer/gryphn_command_buffer.h"
|
||||
#include "core/output_device/gryphn_output_device.h"
|
||||
|
||||
typedef struct gnSubmitInfo_t {
|
||||
uint32_t waitCount;
|
||||
enum gnRenderPassStage_e* waitStages;
|
||||
struct gnSemaphore_t* waitSemaphores;
|
||||
uint32_t signalCount;
|
||||
struct gnSemaphore_t* signalSemaphores;
|
||||
uint32_t commandBufferCount;
|
||||
struct gnCommandBuffer_t* commandBuffers;
|
||||
uint32_t queueIndex;
|
||||
struct gnFence_t* fence;
|
||||
} gnSubmitInfo;
|
||||
|
||||
gnReturnCode gnSubmit(struct gnOutputDevice_t* device, struct gnSubmitInfo_t submit);
|
Reference in New Issue
Block a user