mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
ecd5e156aa
new file: projects/github.com/sekrit-twc/zimg/test.c
9 lines
222 B
C
9 lines
222 B
C
#include <assert.h>
|
|
#include <zimg.h>
|
|
|
|
int main() {
|
|
zimg_image_format format;
|
|
zimg_image_format_default(&format, ZIMG_API_VERSION);
|
|
assert(ZIMG_MATRIX_UNSPECIFIED == format.matrix_coefficients);
|
|
return 0;
|
|
} |