1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 18:35:20 +00:00

Merge branch 'init_variables' into 'master'

Add missing initialization

See merge request OpenMW/openmw!3722
This commit is contained in:
Alexei Kotov 2024-01-04 20:31:55 +00:00
commit c5a3b516d6
3 changed files with 5 additions and 3 deletions

View File

@ -61,7 +61,7 @@ namespace MWRender
bool mPostprocessing = false;
fx::DispatchArray mPasses;
fx::FlagsType mMask;
fx::FlagsType mMask = 0;
osg::ref_ptr<osg::Program> mFallbackProgram;
osg::ref_ptr<osg::Program> mMultiviewResolveProgram;

View File

@ -442,7 +442,7 @@ namespace NifOsg
}
}
MaterialColorController::MaterialColorController() {}
MaterialColorController::MaterialColorController() = default;
MaterialColorController::MaterialColorController(
const Nif::NiMaterialColorController* ctrl, const osg::Material* baseMaterial)

View File

@ -347,7 +347,9 @@ namespace NifOsg
private:
Vec3Interpolator mData;
Nif::NiMaterialColorController::TargetColor mTargetColor;
Nif::NiMaterialColorController::TargetColor mTargetColor{
Nif::NiMaterialColorController::TargetColor::Ambient
};
osg::ref_ptr<const osg::Material> mBaseMaterial;
};