You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently VK_EXT_mutable_descriptor_type is not supported for draw time checks (including static and GPU-AV dynamic checks)
We have a class Descriptor which is abstract and we derive all Descriptor Types from it
the problem becomes when we have class MutableDescriptor : public Descriptor which we have no way to turn it into another class... the "real" solution is to make the Descriptor clas the "MutableDescriptor" because it is by definition all possible descriptors types
The text was updated successfully, but these errors were encountered:
Currently
VK_EXT_mutable_descriptor_type
is not supported for draw time checks (including static and GPU-AV dynamic checks)We have a
class Descriptor
which is abstract and we derive all Descriptor Types from itthe problem becomes when we have
class MutableDescriptor : public Descriptor
which we have no way to turn it into another class... the "real" solution is to make theDescriptor
clas the "MutableDescriptor" because it is by definition all possible descriptors typesThe text was updated successfully, but these errors were encountered: