summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2014-06-26 22:36:57 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2014-06-26 22:36:57 +0200
commit0fbc05b96ca9b464b273d64349d9a7940a0c992b (patch)
treeb33a246fa6bf85bc3f01a1de00cc4fe0555921c0 /test
parent092e7cc68de3d4e46505a2931ce266b4e5aabaab (diff)
downloadcolobot-0fbc05b96ca9b464b273d64349d9a7940a0c992b.tar.gz
colobot-0fbc05b96ca9b464b273d64349d9a7940a0c992b.tar.bz2
colobot-0fbc05b96ca9b464b273d64349d9a7940a0c992b.zip
Fix test compilation
Diffstat (limited to 'test')
-rw-r--r--test/envs/opengl/light_test.cpp4
-rw-r--r--test/envs/opengl/transform_test.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/test/envs/opengl/light_test.cpp b/test/envs/opengl/light_test.cpp
index 1a52084..5c5af7c 100644
--- a/test/envs/opengl/light_test.cpp
+++ b/test/envs/opengl/light_test.cpp
@@ -78,7 +78,7 @@ void Render(Gfx::CGLDevice *device)
worldMat.LoadIdentity();
device->SetTransform(Gfx::TRANSFORM_WORLD, worldMat);
- Gfx::VertexCol line[2] = Gfx::VertexCol{ Gfx::VertexCol() };
+ Gfx::VertexCol line[2] = {};
for (int x = -40; x <= 40; ++x)
{
@@ -103,7 +103,7 @@ void Render(Gfx::CGLDevice *device)
}
- Gfx::VertexCol quad[6] = Gfx::VertexCol{ Gfx::VertexCol() };
+ Gfx::VertexCol quad[6] = {};
quad[0].coord = Math::Vector(-1.0f, -1.0f, 0.0f);
quad[1].coord = Math::Vector( 1.0f, -1.0f, 0.0f);
diff --git a/test/envs/opengl/transform_test.cpp b/test/envs/opengl/transform_test.cpp
index d994cc5..99ec9f0 100644
--- a/test/envs/opengl/transform_test.cpp
+++ b/test/envs/opengl/transform_test.cpp
@@ -73,7 +73,7 @@ void Render(Gfx::CGLDevice *device)
worldMat.LoadIdentity();
device->SetTransform(Gfx::TRANSFORM_WORLD, worldMat);
- Gfx::VertexCol line[2] = Gfx::VertexCol{ Gfx::VertexCol() };
+ Gfx::VertexCol line[2] = {};
for (int x = -40; x <= 40; ++x)
{
@@ -98,7 +98,7 @@ void Render(Gfx::CGLDevice *device)
}
- Gfx::VertexCol quad[6] = Gfx::VertexCol{ Gfx::VertexCol() };
+ Gfx::VertexCol quad[6] = {};
for (int i = 0; i < 6; ++i)
quad[i].color = Gfx::Color(1.0f, 1.0f, 0.0f);