summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-06-20 16:18:54 +0200
committerCarl Hetherington <cth@carlh.net>2022-06-20 16:18:54 +0200
commit9655acbdf359b97c25be20aa72b06ce4ad17a2e7 (patch)
tree34956c136a96a9b0f486e60e2ae0b865df10aa20
parent577fd839bdf7f78b6e815dae455a377e22d46a94 (diff)
Remove some debug output.
-rw-r--r--test/image_test.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/image_test.cc b/test/image_test.cc
index a529a3935..94b7ba017 100644
--- a/test/image_test.cc
+++ b/test/image_test.cc
@@ -223,7 +223,6 @@ BOOST_AUTO_TEST_CASE (alpha_blend_test_onto_xyz)
for (int y = 0; y < 50; ++y) {
uint16_t* p = reinterpret_cast<uint16_t*>(xyz.data()[0]) + (y * xyz.stride()[0] / 2);
for (int x = 0; x < 50; ++x) {
- std::cout << "x=" << x << ", y=" << y << "\n";
if (4 <= x && x < 12 && 4 <= y && y < 12) {
BOOST_REQUIRE_EQUAL(p[0], 45078U);
BOOST_REQUIRE_EQUAL(p[1], 34939U);