Working on RenderTarget example

This commit is contained in:
2022-10-19 00:43:16 -07:00
parent a86574128d
commit f0cbae4cf8
17 changed files with 235 additions and 26 deletions

11
src/dawn/util/flag.hpp Normal file
View File

@ -0,0 +1,11 @@
// Copyright (c) 2022 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "dawnlibs.hpp"
typedef uint_fast8_t flag8_t;
#define FLAG_DEFINE(n) (1 << n)