Files
LNXRNT/Kinc/Backends/Graphics5/WebGPU/Sources/kinc/backend/graphics5/vertexbuffer.h
2025-01-29 10:55:49 +01:00

18 lines
194 B
C

#pragma once
#include <webgpu/webgpu.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
WGPUBuffer buffer;
int count;
int stride;
} VertexBuffer5Impl;
#ifdef __cplusplus
}
#endif