blob: b11da925cc8a26d9447ffafdfe28500e2b0d3c91 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#pragma once
#include <stdbool.h>
static inline bool feature_png(void)
{
#if defined(WBG_HAVE_PNG) && WBG_HAVE_PNG
return true;
#else
return false;
#endif
}
static inline bool feature_jpg(void)
{
#if defined(WBG_HAVE_JPG) && WBG_HAVE_JPG
return true;
#else
return false;
#endif
}
static inline bool feature_webp(void)
{
#if defined(WBG_HAVE_WEBP) && WBG_HAVE_WEBP
return true;
#else
return false;
#endif
}
static inline bool feature_svg(void)
{
#if defined(WBG_HAVE_SVG) && WBG_HAVE_SVG
return true;
#else
return false;
#endif
}
static inline bool feature_jxl(void)
{
#if defined(WBG_HAVE_JXL) && WBG_HAVE_JXL
return true;
#else
return false;
#endif
}
|