From 9e2e061bea9ca8fb690da29dca3d95da904b794a Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Fri, 9 Jul 2010 16:52:36 +0200 Subject: [PATCH] Don't marshall bitmap data as pointer, instead send inline --- spice.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spice.proto b/spice.proto index abb85cc..ca01c12 100644 --- a/spice.proto +++ b/spice.proto @@ -439,7 +439,7 @@ struct BitmapData { default: Palette *palette @outvar(bitmap); } pal @anon; - uint8 *data[image_size(8, stride, y)] @chunk; /* pointer to array, not array of pointers as in C */ + uint8 data[image_size(8, stride, y)] @chunk @nomarshal; } @ctype(SpiceBitmap); struct BinaryData {