17 lines
265 B
C
17 lines
265 B
C
#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);
|