X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=test_util.cpp;h=c7c2ac01d13343a660c0231d0429e60b15de9186;hb=7d7149ef94571b83e4cbd8e3359e3c3c9aea85c2;hp=59c0ef420a43e04b846fa55a946b927ddddba180;hpb=9651a4eaae012cdc49c1aa38197861e04f62e91e;p=movit diff --git a/test_util.cpp b/test_util.cpp index 59c0ef4..c7c2ac0 100644 --- a/test_util.cpp +++ b/test_util.cpp @@ -14,6 +14,8 @@ using namespace std; +namespace movit { + class Input; namespace { @@ -47,7 +49,7 @@ EffectChainTester::EffectChainTester(const float *data, unsigned width, unsigned GLenum framebuffer_format) : chain(width, height, get_static_pool()), width(width), height(height), finalized(false) { - init_movit(".", MOVIT_DEBUG_OFF); + CHECK(init_movit(".", MOVIT_DEBUG_OFF)); if (data != NULL) { add_input(data, pixel_format, color_space, gamma_curve); @@ -244,3 +246,5 @@ void test_accuracy(const float *expected, const float *result, unsigned num_valu double rms = sqrt(squared_difference) / num_values; EXPECT_LT(rms, rms_limit); } + +} // namespace movit