blob: 486b31c60fe69d44d5f9055be6c4a48825860e18 [file] [log] [blame] [edit]
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
enum BindingType {
Buffer = 0,
NotBuffer = 1,
};
typedef uint32_t BindingType;
typedef struct BindGroupLayoutEntry {
BindingType ty;
} BindGroupLayoutEntry;
void root(struct BindGroupLayoutEntry entry);