fixed some warnings

pull/13383/head
Alexey Spizhevoy 14 years ago
parent 5e85566477
commit 4ec5fb43f0
  1. 2
      samples/gpu/performance/tests.cpp

@ -761,7 +761,7 @@ TEST(projectPoints)
camera_mat.at<float>(2, 0) = 0.f;
camera_mat.at<float>(2, 1) = 0.f;
for (int size = 1e6, count = 0; size >= 1e5 && count < 5; size /= 1.4, count++)
for (int size = (int)1e6, count = 0; size >= 1e5 && count < 5; size = int(size / 1.4), count++)
{
SUBTEST << "size " << size;

Loading…
Cancel
Save