summaryrefslogtreecommitdiff
path: root/test/png.c
diff options
context:
space:
mode:
authorM Joonas Pihlaja <jpihlaja@cc.helsinki.fi>2010-02-28 23:31:06 +0200
committerM Joonas Pihlaja <jpihlaja@cc.helsinki.fi>2010-03-01 01:21:31 +0200
commit5b7f4bb241f3191c1589cd714f373719efded56e (patch)
tree6eb5cf59bb1b3ac50304dc1a4465450e83e06517 /test/png.c
parent620cd9c2be4a6bef790e6818652470a5c53d578d (diff)
downloadcairo-5b7f4bb241f3191c1589cd714f373719efded56e.tar.gz
api: Introduce CAIRO_FORMAT_INVALID formally in the API.
We were exposing the actual value of CAIRO_FORMAT_INVALID through API functions already, so it makes sense to just go ahead and put it in the cairo_format_t enum.
Diffstat (limited to 'test/png.c')
-rw-r--r--test/png.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/png.c b/test/png.c
index fb50a9b55..9f082c9dc 100644
--- a/test/png.c
+++ b/test/png.c
@@ -57,6 +57,7 @@ format_to_string (cairo_format_t format)
case CAIRO_FORMAT_A8: return "a8";
case CAIRO_FORMAT_RGB24: return "rgb24";
case CAIRO_FORMAT_ARGB32: return "argb32";
+ case CAIRO_FORMAT_INVALID:
default: return "???";
}
}