blob: 74c2ae1cbdeca9602c3b38b1451b193735c774ec [file] [log] [blame]
#include <cstdarg>
#include <cstdint>
#include <cstdlib>
#include <ostream>
#include <new>
enum class BindingType : uint32_t {
Buffer = 0,
NotBuffer = 1,
};
struct BindGroupLayoutEntry {
BindingType ty;
};
extern "C" {
void root(BindGroupLayoutEntry entry);
} // extern "C"