X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=test_util.h;h=5dac7b2022dafb76d7cf84beaad0acb8a02111f0;hp=ed0275e15942b23209736be54c113d3afa04c0bd;hb=696fae62e66f803a759afc004c3657ee84420bfe;hpb=5718299276a6966eddc2f3fb5948a6dd1bbdef90 diff --git a/test_util.h b/test_util.h index ed0275e..5dac7b2 100644 --- a/test_util.h +++ b/test_util.h @@ -5,15 +5,19 @@ class EffectChainTester { public: - EffectChainTester(const float *data, unsigned width, unsigned height, ColorSpace color_space, GammaCurve gamma_curve); + EffectChainTester(const float *data, unsigned width, unsigned height, MovitPixelFormat pixel_format, ColorSpace color_space, GammaCurve gamma_curve); + ~EffectChainTester(); + EffectChain *get_chain() { return &chain; } - void run(float *out_data, ColorSpace color_space, GammaCurve gamma_curve); + Input *add_input(const float *data, MovitPixelFormat pixel_format, ColorSpace color_space, GammaCurve gamma_curve); + void run(float *out_data, GLenum format, ColorSpace color_space, GammaCurve gamma_curve); private: EffectChain chain; + GLuint fbo, texnum; unsigned width, height; }; -void expect_equal(const float *ref, const float *result, unsigned width, unsigned height); +void expect_equal(const float *ref, const float *result, unsigned width, unsigned height, float largest_difference_limit = 1.5 / 255.0, float rms_limit = 0.2 / 255.0); #endif // !defined(_TEST_UTIL_H)