From: Mathias Froehlich Date: Sun, 4 Mar 2012 07:15:00 +0000 (+0100) Subject: Make use of SGReaderWriterOptions::copyOrCreate in SGMaterial. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f66e023ea8509de4d36016f2ca093873ef5884d7;p=simgear.git Make use of SGReaderWriterOptions::copyOrCreate in SGMaterial. --- diff --git a/simgear/scene/material/mat.cxx b/simgear/scene/material/mat.cxx index 51b8bbe5..91303ac2 100644 --- a/simgear/scene/material/mat.cxx +++ b/simgear/scene/material/mat.cxx @@ -100,12 +100,11 @@ SGMaterial::SGMaterial( const osgDB::Options* options, const SGPropertyNode *props, SGPropertyNode *prop_root) { - osg::ref_ptr sgOptions; - if (options) - sgOptions = new SGReaderWriterOptions(*options); + osg::ref_ptr opt; + opt = SGReaderWriterOptions::copyOrCreate(options); init(); - read_properties( sgOptions.get(), props, prop_root); - buildEffectProperties(sgOptions.get()); + read_properties(opt.get(), props, prop_root); + buildEffectProperties(opt.get()); } SGMaterial::~SGMaterial (void) @@ -409,9 +408,6 @@ osg::Texture2D* SGMaterial::get_object_mask(SGTexturedTriangleBin triangleBin) void SGMaterial::buildEffectProperties(const SGReaderWriterOptions* options) { using namespace osg; - ref_ptr xmlOptions; - if (options) - xmlOptions = new SGReaderWriterOptions(*options); ref_ptr user = new SGMaterialUserData(this); SGPropertyNode_ptr propRoot = new SGPropertyNode(); makeChild(propRoot, "inherits-from")->setStringValue(effect); @@ -449,7 +445,7 @@ void SGMaterial::buildEffectProperties(const SGReaderWriterOptions* options) makeChild(effectParamProp, "scale")->setValue(SGVec3d(xsize,ysize,0.0)); makeChild(effectParamProp, "light-coverage")->setDoubleValue(light_coverage); - matState.effect = makeEffect(effectProp, false, xmlOptions.get()); + matState.effect = makeEffect(effectProp, false, options); matState.effect->setUserData(user.get()); } }