25 lines
341 B
C
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
|