28 namespace Hydrax{
namespace Noise
30 Noise::Noise(
const Ogre::String &Name,
const bool& GPUNormalMapSupported)
33 , mGPUNormalMapSupported(GPUNormalMapSupported)
34 , mGPUNormalMapResourcesCreated(false)
81 void Noise::saveCfg(Ogre::String &Data)
83 Data +=
"#Noise options\n";
84 Data +=
"Noise="+
mName+
"\n\n";
87 bool Noise::loadCfg(Ogre::ConfigFile &CfgFile)
89 if (CfgFile.getSetting(
"Noise") ==
mName)
95 HydraxLOG(
"Error (Noise::loadCfg):\t" +
mName +
" options entry can not be found.");