diff options
Diffstat (limited to 'common/sw_canvas.c')
-rw-r--r-- | common/sw_canvas.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/sw_canvas.c b/common/sw_canvas.c index c1a7392a..56865c31 100644 --- a/common/sw_canvas.c +++ b/common/sw_canvas.c @@ -1172,6 +1172,7 @@ static SpiceCanvas *canvas_create_common(pixman_image_t *image, , SpiceImageSurfaces *surfaces , SpiceGlzDecoder *glz_decoder , SpiceJpegDecoder *jpeg_decoder + , SpiceZlibDecoder *zlib_decoder #ifndef SW_CANVAS_NO_CHUNKS , SpiceVirtMapping *virt_mapping #endif @@ -1200,6 +1201,7 @@ static SpiceCanvas *canvas_create_common(pixman_image_t *image, , surfaces , glz_decoder , jpeg_decoder + , zlib_decoder #ifndef SW_CANVAS_NO_CHUNKS , virt_mapping #endif @@ -1222,6 +1224,7 @@ SpiceCanvas *canvas_create(int width, int height, uint32_t format , SpiceImageSurfaces *surfaces , SpiceGlzDecoder *glz_decoder , SpiceJpegDecoder *jpeg_decoder + , SpiceZlibDecoder *zlib_decoder #ifndef SW_CANVAS_NO_CHUNKS , SpiceVirtMapping *virt_mapping #endif @@ -1242,6 +1245,7 @@ SpiceCanvas *canvas_create(int width, int height, uint32_t format , surfaces , glz_decoder , jpeg_decoder + , zlib_decoder #ifndef SW_CANVAS_NO_CHUNKS , virt_mapping #endif @@ -1259,6 +1263,7 @@ SpiceCanvas *canvas_create_for_data(int width, int height, uint32_t format, , SpiceImageSurfaces *surfaces , SpiceGlzDecoder *glz_decoder , SpiceJpegDecoder *jpeg_decoder + , SpiceZlibDecoder *zlib_decoder #ifndef SW_CANVAS_NO_CHUNKS , SpiceVirtMapping *virt_mapping #endif @@ -1279,6 +1284,7 @@ SpiceCanvas *canvas_create_for_data(int width, int height, uint32_t format, , surfaces , glz_decoder , jpeg_decoder + , zlib_decoder #ifndef SW_CANVAS_NO_CHUNKS , virt_mapping #endif |