Cleanup of some code

This commit is contained in:
2023-08-10 19:14:19 -07:00
parent 9fd31edc4a
commit 0cde186bf7
9 changed files with 132 additions and 3 deletions

View File

@ -142,7 +142,7 @@ namespace Dawn {
parser = vec3Parser;
} else if(type.find("vec4") != std::string::npos) {
parser = vec4Parser;
} else if(type == "int32_t" || type == "int") {
} else if(type == "int32_t" || type == "int" || type == "uint32_t" || type == "uint") {
parser = intParser;
} else if(type == "bool_t") {
parser = boolParser;