@@ -82,13 +82,13 @@ Sky::Sky(s32 id, ITextureSource *tsrc, IShaderSource *ssrc) :
82
82
// Ensures that sun and moon textures and tonemaps are correct.
83
83
setSkyDefaults ();
84
84
m_sun_texture = tsrc->isKnownSourceImage (m_sun_params.texture ) ?
85
- tsrc->getTextureForMesh (m_sun_params.texture ) : NULL ;
85
+ tsrc->getTextureForMesh (m_sun_params.texture ) : nullptr ;
86
86
m_moon_texture = tsrc->isKnownSourceImage (m_moon_params.texture ) ?
87
- tsrc->getTextureForMesh (m_moon_params.texture ) : NULL ;
87
+ tsrc->getTextureForMesh (m_moon_params.texture ) : nullptr ;
88
88
m_sun_tonemap = tsrc->isKnownSourceImage (m_sun_params.tonemap ) ?
89
- tsrc->getTexture (m_sun_params.tonemap ) : NULL ;
89
+ tsrc->getTexture (m_sun_params.tonemap ) : nullptr ;
90
90
m_moon_tonemap = tsrc->isKnownSourceImage (m_moon_params.tonemap ) ?
91
- tsrc->getTexture (m_moon_params.tonemap ) : NULL ;
91
+ tsrc->getTexture (m_moon_params.tonemap ) : nullptr ;
92
92
93
93
if (m_sun_texture) {
94
94
m_materials[3 ] = baseMaterial ();
@@ -744,14 +744,14 @@ void Sky::place_sky_body(
744
744
}
745
745
}
746
746
747
- void Sky::setSunTexture (std::string sun_texture,
748
- std::string sun_tonemap, ITextureSource *tsrc)
747
+ void Sky::setSunTexture (const std::string & sun_texture,
748
+ const std::string & sun_tonemap, ITextureSource *tsrc)
749
749
{
750
750
// Ignore matching textures (with modifiers) entirely,
751
751
// but lets at least update the tonemap before hand.
752
752
m_sun_params.tonemap = sun_tonemap;
753
753
m_sun_tonemap = tsrc->isKnownSourceImage (m_sun_params.tonemap ) ?
754
- tsrc->getTexture (m_sun_params.tonemap ) : NULL ;
754
+ tsrc->getTexture (m_sun_params.tonemap ) : nullptr ;
755
755
m_materials[3 ].Lighting = !!m_sun_tonemap;
756
756
757
757
if (m_sun_params.texture == sun_texture)
@@ -780,7 +780,7 @@ void Sky::setSunTexture(std::string sun_texture,
780
780
}
781
781
}
782
782
783
- void Sky::setSunriseTexture (std::string sunglow_texture,
783
+ void Sky::setSunriseTexture (const std::string & sunglow_texture,
784
784
ITextureSource* tsrc)
785
785
{
786
786
// Ignore matching textures (with modifiers) entirely.
@@ -792,14 +792,14 @@ void Sky::setSunriseTexture(std::string sunglow_texture,
792
792
);
793
793
}
794
794
795
- void Sky::setMoonTexture (std::string moon_texture,
796
- std::string moon_tonemap, ITextureSource *tsrc)
795
+ void Sky::setMoonTexture (const std::string & moon_texture,
796
+ const std::string & moon_tonemap, ITextureSource *tsrc)
797
797
{
798
798
// Ignore matching textures (with modifiers) entirely,
799
799
// but lets at least update the tonemap before hand.
800
800
m_moon_params.tonemap = moon_tonemap;
801
801
m_moon_tonemap = tsrc->isKnownSourceImage (m_moon_params.tonemap ) ?
802
- tsrc->getTexture (m_moon_params.tonemap ) : NULL ;
802
+ tsrc->getTexture (m_moon_params.tonemap ) : nullptr ;
803
803
m_materials[4 ].Lighting = !!m_moon_tonemap;
804
804
805
805
if (m_moon_params.texture == moon_texture)
@@ -893,7 +893,7 @@ void Sky::setSkyColors(const SkyColor &sky_color)
893
893
}
894
894
895
895
void Sky::setHorizonTint (video::SColor sun_tint, video::SColor moon_tint,
896
- std::string use_sun_tint)
896
+ const std::string & use_sun_tint)
897
897
{
898
898
// Change sun and moon tinting:
899
899
m_sky_params.fog_sun_tint = sun_tint;
@@ -907,7 +907,7 @@ void Sky::setHorizonTint(video::SColor sun_tint, video::SColor moon_tint,
907
907
m_default_tint = true ;
908
908
}
909
909
910
- void Sky::addTextureToSkybox (std::string texture, int material_id,
910
+ void Sky::addTextureToSkybox (const std::string & texture, int material_id,
911
911
ITextureSource *tsrc)
912
912
{
913
913
// Sanity check for more than six textures.
0 commit comments