X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Flighting.cpp;h=0d6e7dc4ab6e5da6a1521677a9a8689398ed6ca5;hp=6b6af57cc1f84a337acc227a5165265f41b79bf8;hb=b617c5d7b5283ad260a77f01e42e6170cabbc03d;hpb=f17794d55923d4fb4f63e9d082d8d84a735a04e8 diff --git a/source/lighting.cpp b/source/lighting.cpp index 6b6af57c..0d6e7dc4 100644 --- a/source/lighting.cpp +++ b/source/lighting.cpp @@ -18,7 +18,7 @@ Lighting::Lighting(): void Lighting::set_ambient(const Color &a) { - ambient=a; + ambient = a; } void Lighting::attach(unsigned i, const Light &l) @@ -26,7 +26,7 @@ void Lighting::attach(unsigned i, const Light &l) if(i>=lights.size()) lights.resize(i+1); - lights[i]=&l; + lights[i] = &l; } void Lighting::detach(unsigned i) @@ -34,7 +34,7 @@ void Lighting::detach(unsigned i) if(i>=lights.size()) return; - lights[i]=0; + lights[i] = 0; } void Lighting::bind() const @@ -46,7 +46,7 @@ void Lighting::bind() const for(unsigned i=0; ibind_to(i); - current=this; + current = this; } } @@ -61,11 +61,11 @@ void Lighting::unbind() Light::unbind(); } disable(LIGHTING); - current=0; + current = 0; } } -const Lighting *Lighting::current=0; +const Lighting *Lighting::current = 0; } // namespace GL } // namespace Msp