We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6080475 commit e2f7b8fCopy full SHA for e2f7b8f
include/nbl/asset/IShader.h
@@ -87,7 +87,7 @@ class IShader : public IAsset
87
88
// TODO: `void setContent(core::smart_refctd_ptr<const ICPUBuffer>&&,const E_CONTENT_TYPE)`
89
90
- inline virtual bool valid() const override
+ inline bool valid() const override
91
{
92
if (!m_code) return false;
93
if (m_contentType == E_CONTENT_TYPE::ECT_UNKNOWN) return false;
@@ -106,7 +106,7 @@ class IShader : public IAsset
106
107
private:
108
109
- inline virtual void visitDependents_impl(std::function<bool(const IAsset*)> visit) const override
+ inline void visitDependents_impl(std::function<bool(const IAsset*)> visit) const override
110
111
if (!visit(m_code.get())) return;
112
}
0 commit comments