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