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.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/test/gl_video.c b/test/gl_video.c
index 556a81ac92..a2bdda43a3 100644
--- a/test/gl_video.c
+++ b/test/gl_video.c
@@ -1,7 +1,7 @@
-#include "tests.h"
-#include "video/out/gpu/video.h"
+#include "test_utils.h"
+#include "video/out/gpu/utils.h"
-static void run(struct test_ctx *ctx)
+int main(void)
{
float x;
@@ -17,13 +17,9 @@ static void run(struct test_ctx *ctx)
x = gl_video_scale_ambient_lux(16.0, 64.0, 2.40, 1.961, 0.0);
assert_float_equal(x, 2.40f, FLT_EPSILON);
- // 32 corresponds to the the midpoint after converting lux to the log10 scale
+ // 32 corresponds to 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);
+ return 0;
}
-
-const struct unittest test_gl_video = {
- .name = "gl_video",
- .run = run,
-};