mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
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;
|
||
|
}
|