Skip to content

Commit

Permalink
Fix failing tests due to ign -> gz rename
Browse files Browse the repository at this point in the history
Signed-off-by: Matias N. Goldberg <[email protected]>
  • Loading branch information
darksylinc committed Jul 23, 2022
1 parent 983638b commit 72b59de
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ogre2/src/Ogre2GzHlmsPbsPrivate.cc
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ namespace Ogre
void Ogre2GzHlmsPbs::setupRootLayout(RootLayout &_rootLayout,
const HlmsPropertyVec &_properties) const
{
if (this->getProperty(_properties, "ign_render_solid_color") != 0)
if (this->getProperty(_properties, "gz_render_solid_color") != 0)
{
// Account for the extra buffer bound at kPerObjectDataBufferSlot
// It should be the last buffer to be set, so kPerObjectDataBufferSlot + 1
Expand Down
2 changes: 1 addition & 1 deletion ogre2/src/Ogre2GzHlmsTerraPrivate.cc
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ namespace Ogre
void Ogre2GzHlmsTerra::setupRootLayout(
RootLayout &_rootLayout, const HlmsPropertyVec &_properties) const
{
if (this->getProperty(_properties, "ign_render_solid_color") != 0)
if (this->getProperty(_properties, "gz_render_solid_color") != 0)
{
// Account for the extra buffer bound at kPerObjectDataBufferSlot
// It should be the last buffer to be set, so kPerObjectDataBufferSlot + 1
Expand Down
2 changes: 1 addition & 1 deletion ogre2/src/Ogre2GzHlmsUnlitPrivate.cc
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ namespace Ogre
void Ogre2GzHlmsUnlit::setupRootLayout(
RootLayout &_rootLayout, const HlmsPropertyVec &_properties) const
{
if (this->getProperty(_properties, "ign_render_solid_color") != 0)
if (this->getProperty(_properties, "gz_render_solid_color") != 0)
{
// Account for the extra buffer bound at kPerObjectDataBufferSlot
// It should be the last buffer to be set, so kPerObjectDataBufferSlot + 1
Expand Down

0 comments on commit 72b59de

Please sign in to comment.