Files
2025-01-29 10:55:49 +01:00

25 lines
341 B
C

#pragma once
#include <webgpu/webgpu.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
WGPURenderPipeline pipeline;
} PipelineState5Impl;
typedef struct {
WGPUComputePipeline pipeline;
} ComputePipelineState5Impl;
typedef struct {
int vertexOffset;
int fragmentOffset;
} ConstantLocation5Impl;
#ifdef __cplusplus
}
#endif