Use unsigned int instead of uint32_t

This commit is contained in:
Dan Sinclair
2018-09-25 16:32:06 -04:00
parent b29c58ea45
commit aac6d63716
2 changed files with 2 additions and 2 deletions

View File

@@ -172,7 +172,7 @@ public:
bool isImageType(Id typeId) const { return getTypeClass(typeId) == OpTypeImage; }
bool isSamplerType(Id typeId) const { return getTypeClass(typeId) == OpTypeSampler; }
bool isSampledImageType(Id typeId) const { return getTypeClass(typeId) == OpTypeSampledImage; }
bool containsType(Id typeId, Op typeOp, uint32_t width) const;
bool containsType(Id typeId, Op typeOp, unsigned int width) const;
bool isConstantOpCode(Op opcode) const;
bool isSpecConstantOpCode(Op opcode) const;