]> git.sesse.net Git - movit/blob - test_util.h
Move everything into “namespace movit”.
[movit] / test_util.h
1 #ifndef _MOVIT_TEST_UTIL_H
2 #define _MOVIT_TEST_UTIL_H 1
3
4 #include <GL/glew.h>
5 #include "effect_chain.h"
6 #include "image_format.h"
7
8 namespace movit {
9
10 class Input;
11
12 class EffectChainTester {
13 public:
14         EffectChainTester(const float *data, unsigned width, unsigned height,
15                           MovitPixelFormat pixel_format = FORMAT_GRAYSCALE,
16                           Colorspace color_space = COLORSPACE_sRGB,
17                           GammaCurve gamma_curve = GAMMA_LINEAR,
18                           GLenum framebuffer_format = GL_RGBA16F_ARB);
19         ~EffectChainTester();
20         
21         EffectChain *get_chain() { return &chain; }
22         Input *add_input(const float *data, MovitPixelFormat pixel_format, Colorspace color_space, GammaCurve gamma_curve);
23         Input *add_input(const unsigned char *data, MovitPixelFormat pixel_format, Colorspace color_space, GammaCurve gamma_curve);
24         void run(float *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
25         void run(unsigned char *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
26
27 private:
28         void finalize_chain(Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format);
29
30         EffectChain chain;
31         GLuint fbo, texnum;
32         unsigned width, height;
33         bool finalized;
34 };
35
36 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);
37 void expect_equal(const unsigned char *ref, const unsigned char *result, unsigned width, unsigned height, unsigned largest_difference_limit = 1, float rms_limit = 0.2);
38 void test_accuracy(const float *expected, const float *result, unsigned num_values, double absolute_error_limit, double relative_error_limit, double local_relative_error_limit, double rms_limit);
39
40 }  // namespace movit
41
42 #endif  // !defined(_MOVIT_TEST_UTIL_H)