blob: 41a148e4d0e70e657d1be625d5b111c6463f31c6 [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 {
BindingType ty;
} BindGroupLayoutEntry;
void root(BindGroupLayoutEntry entry);