This commit is contained in:
2025-03-04 17:42:10 +01:00
parent 211700b955
commit 8fd62b365b
16 changed files with 173 additions and 46 deletions

View File

@@ -10,9 +10,13 @@
#define PULSE_SOFTWARE_COMPUTE_PIPELINE_H_
#include "Soft.h"
#include <spvm/state.h>
#include <spvm/program.h>
typedef struct SoftComputePipeline
{
spvm_program_t program;
const char* entry_point;
} SoftComputePipeline;
PulseComputePipeline SoftCreateComputePipeline(PulseDevice device, const PulseComputePipelineCreateInfo* info);