Skip to content

Commit

Permalink
Improved docblock
Browse files Browse the repository at this point in the history
Signed-off-by: ahcorde <[email protected]>
  • Loading branch information
ahcorde committed Dec 23, 2020
1 parent 8a4493b commit b50de42
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion ogre/include/ignition/rendering/ogre/OgreMaterial.hh
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ namespace ignition
public: virtual float RenderOrder() const override;

// Documentation inherited
public: virtual void SetRenderOrder(const float _enabled) override;
// Review the official documentation to get more details about this
// parameter, in particular Ogre::Pass::setDepthBias()
// https://www.ogre3d.org/docs/api/1.8/class_ogre_1_1_pass.html
public: virtual void SetRenderOrder(const float _renderOrder) override;

public: virtual bool ReflectionEnabled() const override;

Expand Down
4 changes: 3 additions & 1 deletion ogre2/include/ignition/rendering/ogre2/Ogre2Material.hh
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ namespace ignition
public: virtual float RenderOrder() const override;

// Documentation inherited
public: virtual void SetRenderOrder(const float _enabled) override;
// Review the official documentation to get more details about this
// parameter, in particular mDepthBiasConstant
public: virtual void SetRenderOrder(const float _renderOrder) override;

// Documentation inherited
public: virtual bool ReceiveShadows() const override;
Expand Down

0 comments on commit b50de42

Please sign in to comment.