testdisplay: add 30bpp support (#ifdef'd out until the next cairo release)

This commit is contained in:
Jesse Barnes 2011-05-12 17:49:07 -07:00
parent a09dd09e00
commit a825173a5f

View File

@ -370,7 +370,11 @@ allocate_surface(int fd, int width, int height, uint32_t depth, uint32_t bpp,
case 24:
format = CAIRO_FORMAT_RGB24;
break;
#if 0
case 30:
format = CAIRO_FORMAT_RGB30;
break;
#endif
case 32:
format = CAIRO_FORMAT_ARGB32;
break;