]> git.sesse.net Git - movit/blob - test_util.h
Use glGetTexImage() instead of glReadPixels() for reading back test data.
[movit] / test_util.h
1 #ifndef _MOVIT_TEST_UTIL_H
2 #define _MOVIT_TEST_UTIL_H 1
3
4 #include <epoxy/gl.h>
5 #ifdef HAVE_BENCHMARK
6 #include <benchmark/benchmark.h>
7 #endif
8 #include "effect_chain.h"
9 #include "image_format.h"
10
11 namespace movit {
12
13 class Input;
14
15 class EffectChainTester {
16 public:
17         EffectChainTester(const float *data, unsigned width, unsigned height,
18                           MovitPixelFormat pixel_format = FORMAT_GRAYSCALE,
19                           Colorspace color_space = COLORSPACE_sRGB,
20                           GammaCurve gamma_curve = GAMMA_LINEAR,
21                           GLenum framebuffer_format = GL_RGBA16F_ARB);
22         ~EffectChainTester();
23         
24         EffectChain *get_chain() { return &chain; }
25         Input *add_input(const float *data, MovitPixelFormat pixel_format, Colorspace color_space, GammaCurve gamma_curve, int input_width = -1, int input_height = -1);
26         Input *add_input(const unsigned char *data, MovitPixelFormat pixel_format, Colorspace color_space, GammaCurve gamma_curve, int input_width = -1, int input_height = -1);
27
28         void run(float *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
29         void run(float *out_data, float *out_data2, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
30         void run(float *out_data, float *out_data2, float *out_data3, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
31         void run(float *out_data, float *out_data2, float *out_data3, float *out_data4, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
32         void run(unsigned char *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
33         void run(unsigned char *out_data, unsigned char *out_data2, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
34         void run(unsigned char *out_data, unsigned char *out_data2, unsigned char *out_data3, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
35         void run(unsigned char *out_data, unsigned char *out_data2, unsigned char *out_data3, unsigned char *out_data4, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
36         void run(uint16_t *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
37         void run_10_10_10_2(uint32_t *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
38
39 #ifdef HAVE_BENCHMARK
40         void benchmark(benchmark::State &state, float *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
41         void benchmark(benchmark::State &state, float *out_data, float *out_data2, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
42         void benchmark(benchmark::State &state, float *out_data, float *out_data2, float *out_data3, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
43         void benchmark(benchmark::State &state, float *out_data, float *out_data2, float *out_data3, float *out_data4, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
44         void benchmark(benchmark::State &state, unsigned char *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
45         void benchmark(benchmark::State &state, unsigned char *out_data, unsigned char *out_data2, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
46         void benchmark(benchmark::State &state, unsigned char *out_data, unsigned char *out_data2, unsigned char *out_data3, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
47         void benchmark(benchmark::State &state, unsigned char *out_data, unsigned char *out_data2, unsigned char *out_data3, unsigned char *out_data4, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
48         void benchmark(benchmark::State &state, uint16_t *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
49         void benchmark_10_10_10_2(benchmark::State &state, uint32_t *out_data, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
50 #endif
51
52         void add_output(const ImageFormat &format, OutputAlphaFormat alpha_format);
53         void add_ycbcr_output(const ImageFormat &format, OutputAlphaFormat alpha_format, const YCbCrFormat &ycbcr_format, YCbCrOutputSplitting output_splitting = YCBCR_OUTPUT_INTERLEAVED, GLenum output_type = GL_UNSIGNED_BYTE);
54
55 private:
56         void finalize_chain(Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format);
57
58         template<class T>
59         void internal_run(T *out_data, T *out_data2, T *out_data3, T *out_data4, GLenum internal_format, GLenum format, Colorspace color_space, GammaCurve gamma_curve, OutputAlphaFormat alpha_format = OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED
60 #ifdef HAVE_BENCHMARK
61                 , benchmark::State *state = nullptr
62 #endif
63 );
64
65         EffectChain chain;
66         unsigned width, height;
67         GLenum framebuffer_format;
68         bool output_added;
69         bool finalized;
70 };
71
72 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);
73 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);
74 void expect_equal(const uint16_t *ref, const uint16_t *result, unsigned width, unsigned height, unsigned largest_difference_limit = 1, float rms_limit = 0.2);
75 void expect_equal(const int *ref, const int *result, unsigned width, unsigned height, unsigned largest_difference_limit = 1, float rms_limit = 0.2);
76 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);
77
78 // Convert an sRGB encoded value (0.0 to 1.0, inclusive) to linear light.
79 // Undefined for values outside 0.0..1.0.
80 double srgb_to_linear(double x);
81
82 // Convert a value in linear light (0.0 to 1.0, inclusive) to sRGB.
83 // Undefined for values outside 0.0..1.0.
84 double linear_to_srgb(double x);
85
86 // A RAII class to pretend temporarily that we don't support compute shaders
87 // even if we do. Useful for testing or benchmarking the fragment shader path
88 // also on systems that support compute shaders.
89 class DisableComputeShadersTemporarily
90 {
91 public:
92         // If disable_compute_shaders is false, this class effectively does nothing.
93         // Otherwise, sets movit_compute_shaders_supported unconditionally to false.
94         DisableComputeShadersTemporarily(bool disable_compute_shaders);
95
96         // Restore the old value of movit_compute_shaders_supported.
97         ~DisableComputeShadersTemporarily();
98
99         // Whether the current test should be skipped due to lack of compute shaders
100         // (ie., disable_compute_shaders was _false_, but the system does not support
101         // compute shaders). Will also output a message to stderr if so.
102         bool should_skip();
103
104 #ifdef HAVE_BENCHMARK
105         // Same, but outputs a message to the benchmark instead of to stderr.   
106         bool should_skip(benchmark::State *benchmark_state);
107 #endif
108
109         bool active() const { return disable_compute_shaders; }
110
111 private:
112         bool disable_compute_shaders, saved_compute_shaders_supported;
113 };
114
115 }  // namespace movit
116
117 #endif  // !defined(_MOVIT_TEST_UTIL_H)