Types: Add an isOpaque() helper
This commit is contained in:
parent
c24cc29d37
commit
228546a8af
@ -1255,6 +1255,8 @@ public:
|
|||||||
virtual bool isStruct() const { return structure != nullptr; }
|
virtual bool isStruct() const { return structure != nullptr; }
|
||||||
virtual bool isFloatingDomain() const { return basicType == EbtFloat || basicType == EbtDouble; }
|
virtual bool isFloatingDomain() const { return basicType == EbtFloat || basicType == EbtDouble; }
|
||||||
|
|
||||||
|
virtual bool isOpaque() const { return basicType == EbtSampler || basicType == EbtAtomicUint; }
|
||||||
|
|
||||||
// "Image" is a superset of "Subpass"
|
// "Image" is a superset of "Subpass"
|
||||||
virtual bool isImage() const { return basicType == EbtSampler && getSampler().isImage(); }
|
virtual bool isImage() const { return basicType == EbtSampler && getSampler().isImage(); }
|
||||||
virtual bool isSubpass() const { return basicType == EbtSampler && getSampler().isSubpass(); }
|
virtual bool isSubpass() const { return basicType == EbtSampler && getSampler().isSubpass(); }
|
||||||
@ -1315,7 +1317,7 @@ public:
|
|||||||
|
|
||||||
virtual bool containsOpaque() const
|
virtual bool containsOpaque() const
|
||||||
{
|
{
|
||||||
if (basicType == EbtSampler || basicType == EbtAtomicUint)
|
if (isOpaque())
|
||||||
return true;
|
return true;
|
||||||
if (! structure)
|
if (! structure)
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user