Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/Rasterizer/RAS_IPolygonMaterial.cpp')
-rw-r--r--source/gameengine/Rasterizer/RAS_IPolygonMaterial.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/gameengine/Rasterizer/RAS_IPolygonMaterial.cpp b/source/gameengine/Rasterizer/RAS_IPolygonMaterial.cpp
index 48251b2d7ee..4af1753c2da 100644
--- a/source/gameengine/Rasterizer/RAS_IPolygonMaterial.cpp
+++ b/source/gameengine/Rasterizer/RAS_IPolygonMaterial.cpp
@@ -124,7 +124,7 @@ RAS_IPolyMaterial::RAS_IPolyMaterial(const STR_String& texname,
bool RAS_IPolyMaterial::Equals(const RAS_IPolyMaterial& lhs) const
{
- if(m_flag &RAS_BLENDERMAT)
+ if (m_flag &RAS_BLENDERMAT)
{
bool test = (
this->m_multimode == lhs.m_multimode &&
@@ -254,10 +254,10 @@ bool RAS_IPolyMaterial::UsesLighting(RAS_IRasterizer *rasty) const
{
bool dolights = false;
- if(m_flag & RAS_BLENDERMAT)
+ if (m_flag & RAS_BLENDERMAT)
dolights = (m_flag &RAS_MULTILIGHT)!=0;
- else if(rasty->GetDrawingMode() < RAS_IRasterizer::KX_SOLID);
- else if(rasty->GetDrawingMode() == RAS_IRasterizer::KX_SHADOW);
+ else if (rasty->GetDrawingMode() < RAS_IRasterizer::KX_SOLID);
+ else if (rasty->GetDrawingMode() == RAS_IRasterizer::KX_SHADOW);
else
dolights = m_light;