summaryrefslogtreecommitdiffstats
path: root/test/gl_video.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/gl_video.c')
-rw-r--r--test/gl_video.c28
1 files changed, 8 insertions, 20 deletions
diff --git a/test/gl_video.c b/test/gl_video.c
index 91271bd2d6..dd866c955c 100644
--- a/test/gl_video.c
+++ b/test/gl_video.c
@@ -1,42 +1,30 @@
+#include "index.h"
#include "test_helpers.h"
#include "video/out/gpu/video.h"
-static void test_scale_ambient_lux_limits(void **state) {
+static void run(void)
+{
float x;
+
x = gl_video_scale_ambient_lux(16.0, 64.0, 2.40, 1.961, 16.0);
assert_float_equal(x, 2.40f, FLT_EPSILON);
x = gl_video_scale_ambient_lux(16.0, 64.0, 2.40, 1.961, 64.0);
assert_float_equal(x, 1.961f, FLT_EPSILON);
-}
-static void test_scale_ambient_lux_sign(void **state) {
- float x;
x = gl_video_scale_ambient_lux(16.0, 64.0, 1.961, 2.40, 64.0);
assert_float_equal(x, 2.40f, FLT_EPSILON);
-}
-static void test_scale_ambient_lux_clamping(void **state) {
- float x;
x = gl_video_scale_ambient_lux(16.0, 64.0, 2.40, 1.961, 0.0);
assert_float_equal(x, 2.40f, FLT_EPSILON);
-}
-static void test_scale_ambient_lux_log10_midpoint(void **state) {
- float x;
// 32 corresponds to the the midpoint after converting lux to the log10 scale
x = gl_video_scale_ambient_lux(16.0, 64.0, 2.40, 1.961, 32.0);
float mid_gamma = (2.40 - 1.961) / 2 + 1.961;
assert_float_equal(x, mid_gamma, FLT_EPSILON);
}
-int main(void) {
- const struct CMUnitTest tests[] = {
- cmocka_unit_test(test_scale_ambient_lux_limits),
- cmocka_unit_test(test_scale_ambient_lux_sign),
- cmocka_unit_test(test_scale_ambient_lux_clamping),
- cmocka_unit_test(test_scale_ambient_lux_log10_midpoint),
- };
- return cmocka_run_group_tests(tests, NULL, NULL);
-}
-
+const struct unittest test_gl_video = {
+ .name = "gl_video",
+ .run_simple = run,
+};