Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Unified Diff: third_party/qcms/src/tests/qcms_test_main.c

Issue 1703553002: [qcms] Provide an API to compute xyY gamut area relative to NTSC 1953 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed whitespace and variable rename Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/qcms/src/tests/Makefile ('k') | third_party/qcms/src/tests/qcms_test_ntsc_gamut.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/qcms/src/tests/qcms_test_main.c
diff --git a/third_party/qcms/src/tests/qcms_test_main.c b/third_party/qcms/src/tests/qcms_test_main.c
index ed9cf90a0083401b19a16abd2342c4b7ada774d7..9eb866539780056adbb17dd1edb30029a8d681df 100644
--- a/third_party/qcms/src/tests/qcms_test_main.c
+++ b/third_party/qcms/src/tests/qcms_test_main.c
@@ -15,8 +15,9 @@
extern struct qcms_test_case qcms_test_tetra_clut_rgba_info;
extern struct qcms_test_case qcms_test_munsell_info;
extern struct qcms_test_case qcms_test_internal_srgb_info;
+extern struct qcms_test_case qcms_test_ntsc_gamut_info;
-struct qcms_test_case qcms_test[3];
+struct qcms_test_case qcms_test[4];
#define TEST_CASES (sizeof(qcms_test) / sizeof(qcms_test[0]))
static void initialize_tests()
@@ -24,6 +25,7 @@ static void initialize_tests()
qcms_test[0] = qcms_test_tetra_clut_rgba_info;
qcms_test[1] = qcms_test_munsell_info;
qcms_test[2] = qcms_test_internal_srgb_info;
+ qcms_test[3] = qcms_test_ntsc_gamut_info;
}
static void list_tests()
« no previous file with comments | « third_party/qcms/src/tests/Makefile ('k') | third_party/qcms/src/tests/qcms_test_ntsc_gamut.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698