rename to projects (DOES NOT COMPILE)
This commit is contained in:
6
projects/core/src/submit/gryphn_submit.c
Normal file
6
projects/core/src/submit/gryphn_submit.c
Normal file
@@ -0,0 +1,6 @@
|
||||
#include "gryphn_submit.h"
|
||||
#include "gryphn_platform_functions.h"
|
||||
|
||||
gnReturnCode gnSubmit(gnOutputDevice device, gnSubmitInfo info) {
|
||||
return device->deviceFunctions->_gnSubmit(device, info);
|
||||
}
|
18
projects/core/src/submit/gryphn_submit.h
Normal file
18
projects/core/src/submit/gryphn_submit.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
#include "stdint.h"
|
||||
#include "renderpass/gryphn_render_pass_descriptor.h"
|
||||
#include "gryphn_handles.h"
|
||||
|
||||
typedef struct gnSubmitInfo_t {
|
||||
uint32_t waitCount;
|
||||
gnRenderPassStage* waitStages;
|
||||
gnSemaphoreHandle* waitSemaphores;
|
||||
uint32_t signalCount;
|
||||
gnSemaphoreHandle* signalSemaphores;
|
||||
uint32_t commandBufferCount;
|
||||
gnCommandBufferHandle* commandBuffers;
|
||||
uint32_t queueIndex;
|
||||
gnFenceHandle fence;
|
||||
} gnSubmitInfo;
|
||||
|
||||
gnReturnCode gnSubmit(gnOutputDevice device, gnSubmitInfo info);
|
Reference in New Issue
Block a user