Files
VulkanDriver/src/phi/mic/CommandBuffer.h
T
kbz_8 23f6d70e6c
Build / build (push) Failing after 3m12s
Test / build_and_test (push) Failing after 3m12s
adding base command buffer submit and some buffer commands in phi
2026-07-08 00:58:30 +02:00

17 lines
408 B
C

#ifndef APE_PHI_COMMAND_BUFFER_H
#define APE_PHI_COMMAND_BUFFER_H
#include <Daemon.h>
typedef struct PhiCommandReader
{
scif_epd_t endpoint;
uint64_t remaining;
} PhiCommandReader;
int HandleWorkExecution(scif_epd_t endpoint, const PhiMessageHeader* header);
int PhiDrainCommandReader(PhiCommandReader* reader);
PhiStatus PhiReadCommandData(PhiCommandReader* reader, void* data, uint64_t size);
#endif