summaryrefslogtreecommitdiffstats
path: root/spice.proto
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2010-07-09 16:52:36 +0200
committerAlexander Larsson <alexl@redhat.com>2010-07-09 16:52:36 +0200
commitf881a896a4999ae2eafb2e8ac86a9f317a47973c (patch)
tree239df07c284e366c554194bc67bb72e772d27a07 /spice.proto
parentbc5c34584168d0c6c0d1b9b49c2344f8c12c63b1 (diff)
downloadspice-f881a896a4999ae2eafb2e8ac86a9f317a47973c.tar.gz
spice-f881a896a4999ae2eafb2e8ac86a9f317a47973c.tar.xz
spice-f881a896a4999ae2eafb2e8ac86a9f317a47973c.zip
Don't marshall bitmap data as pointer, instead send inline
Diffstat (limited to 'spice.proto')
-rw-r--r--spice.proto2
1 files changed, 1 insertions, 1 deletions
diff --git a/spice.proto b/spice.proto
index abb85cc0..ca01c12c 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 {