Browse Source

Fixed ceilMultiple test

Christophe Riccio 9 years ago
parent
commit
57316860a1
1 changed files with 6 additions and 3 deletions
  1. 6 3
      test/gtc/gtc_round.cpp

+ 6 - 3
test/gtc/gtc_round.cpp

@@ -368,9 +368,12 @@ namespace ceilMultiple
 	{
 		type<int> const Data[] = 
 		{
-			{3, 4, 4},
-			{7, 8, 4},
-			{5, 8, 4},
+			{3, 4, 4, 0},
+			{7, 4, 8, 0},
+			{5, 4, 8, 0},
+			{1, 4, 4, 0},
+			{1, 3, 3, 0},
+			{4, 3, 6, 0},
 		};
 
 		int Error(0);