Janitor : Add missing includes (GNU 8.3.0)

This commit is contained in:
Magne Sjaastad
2021-02-22 17:12:50 +01:00
parent c542b457a6
commit 7d5268987c
9 changed files with 107 additions and 11 deletions

View File

@@ -106,11 +106,11 @@ public:
void setScalarMapper( const cvf::ScalarMapper* cellScalarMapper );
void setTernaryScalarMapper( const RivTernaryScalarMapper* ternaryScalarMapper );
void setOpacityLevel( float opacity ) { m_opacityLevel = std::clamp( opacity, 0.0f, 1.0f ); }
void setUndefinedColor( cvf::Color3f color ) { m_undefinedColor = color; }
void setFaceCulling( caf::FaceCulling faceCulling ) { m_cullBackfaces = faceCulling; }
void setDefaultCellColor( cvf::Color3f color ) { m_defaultCellColor = color; }
void disableLighting( bool disable ) { m_disableLighting = disable; }
void setOpacityLevel( float opacity );
void setUndefinedColor( cvf::Color3f color );
void setFaceCulling( caf::FaceCulling faceCulling );
void setDefaultCellColor( cvf::Color3f color );
void disableLighting( bool disable );
protected:
bool isEqual( const EffectGenerator* other ) const override;