]> git.tdb.fi Git - libs/gl.git/blobdiff - source/lighting.cpp
Style update: add spaces around assignment operators
[libs/gl.git] / source / lighting.cpp
index 6b6af57cc1f84a337acc227a5165265f41b79bf8..0d6e7dc4ab6e5da6a1521677a9a8689398ed6ca5 100644 (file)
@@ -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; i<lights.size(); ++i)
                        if(lights[i])
                                lights[i]->bind_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