Skip to content

Commit

Permalink
Reorder constructor initialization to get rid of warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ApoorvaJ committed Sep 19, 2023
1 parent 14ab9e9 commit d40e456
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/MaterialXRender/LightHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ class MX_RENDER_API LightHandler
_lightTransform(Matrix44::IDENTITY),
_directLighting(true),
_indirectLighting(true),
_envRadianceMapPreConvolved(nullptr),
_envSampleCount(DEFAULT_ENV_SAMPLE_COUNT),
_refractionTwoSided(false),
_envRadianceMapPreConvolved(nullptr)
_refractionTwoSided(false)
{
}
virtual ~LightHandler() { }
Expand Down

0 comments on commit d40e456

Please sign in to comment.