summaryrefslogtreecommitdiffstats
path: root/src/graphics/engine/engine.cpp
diff options
context:
space:
mode:
authorZaba999 <zaba.marcin@gmail.com>2012-09-26 22:59:37 +0200
committerZaba999 <zaba.marcin@gmail.com>2012-09-26 22:59:37 +0200
commit400869ff86e88fdb12c892c7885c07ce2ae99e5e (patch)
tree4974075a6d57d0054284ca126f8a423ae48060e0 /src/graphics/engine/engine.cpp
parentf6638a173e21fbee3cc961d3dea82cc89382b873 (diff)
parent45fd8aad33029746424031e12777f2824bda245e (diff)
downloadcolobot-400869ff86e88fdb12c892c7885c07ce2ae99e5e.tar.gz
colobot-400869ff86e88fdb12c892c7885c07ce2ae99e5e.tar.bz2
colobot-400869ff86e88fdb12c892c7885c07ce2ae99e5e.zip
Merge branch 'master' of git://github.com/colobot/colobot
Diffstat (limited to 'src/graphics/engine/engine.cpp')
-rw-r--r--src/graphics/engine/engine.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/graphics/engine/engine.cpp b/src/graphics/engine/engine.cpp
index 37f9b00..c170922 100644
--- a/src/graphics/engine/engine.cpp
+++ b/src/graphics/engine/engine.cpp
@@ -3417,10 +3417,10 @@ void CEngine::DrawBackgroundGradient(const Color& up, const Color& down)
VertexCol vertex[4] =
{
- VertexCol(Math::Vector(p1.x, p1.y, 0.0f), color[1], color[2]),
- VertexCol(Math::Vector(p1.x, p2.y, 0.0f), color[0], color[2]),
- VertexCol(Math::Vector(p2.x, p1.y, 0.0f), color[1], color[2]),
- VertexCol(Math::Vector(p2.x, p2.y, 0.0f), color[0], color[2])
+ VertexCol(Math::Vector(p1.x, p1.y, 0.0f), color[1]),
+ VertexCol(Math::Vector(p1.x, p2.y, 0.0f), color[0]),
+ VertexCol(Math::Vector(p2.x, p1.y, 0.0f), color[1]),
+ VertexCol(Math::Vector(p2.x, p2.y, 0.0f), color[0])
};
m_device->DrawPrimitive(PRIMITIVE_TRIANGLE_STRIP, vertex, 4);
@@ -3567,10 +3567,10 @@ void CEngine::DrawOverColor()
VertexCol vertex[4] =
{
- VertexCol(Math::Vector(p1.x, p1.y, 0.0f), color[1], color[2]),
- VertexCol(Math::Vector(p1.x, p2.y, 0.0f), color[0], color[2]),
- VertexCol(Math::Vector(p2.x, p1.y, 0.0f), color[1], color[2]),
- VertexCol(Math::Vector(p2.x, p2.y, 0.0f), color[0], color[2])
+ VertexCol(Math::Vector(p1.x, p1.y, 0.0f), color[1]),
+ VertexCol(Math::Vector(p1.x, p2.y, 0.0f), color[0]),
+ VertexCol(Math::Vector(p2.x, p1.y, 0.0f), color[1]),
+ VertexCol(Math::Vector(p2.x, p2.y, 0.0f), color[0])
};
m_device->DrawPrimitive(PRIMITIVE_TRIANGLE_STRIP, vertex, 4);