diff options
author | Alexander Larsson <alexl@redhat.com> | 2010-02-04 18:04:26 +0100 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2010-02-04 18:49:00 +0100 |
commit | 1f516978527b223882c02d8c23834a0f30279dec (patch) | |
tree | 7472bb21b145c2c586a3ad7aebb7bd136cef9e70 /client/red_drawable.h | |
parent | c1694fb51bb29d3cbd03f679372339f9e8f29803 (diff) | |
download | spice-1f516978527b223882c02d8c23834a0f30279dec.tar.gz spice-1f516978527b223882c02d8c23834a0f30279dec.tar.xz spice-1f516978527b223882c02d8c23834a0f30279dec.zip |
Rename symbols that were changed in spice-protocol
This is an automatic change using:
$ find -name "*.[ch]" | xargs ../spice-protocol/rename-identifiers.sh ../spice-protocol/renames
$ find -name "*.cpp" | xargs ../spice-protocol/rename-identifiers.sh ../spice-protocol/renames
Diffstat (limited to 'client/red_drawable.h')
-rw-r--r-- | client/red_drawable.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/client/red_drawable.h b/client/red_drawable.h index eae2e0dd..d2b03f6c 100644 --- a/client/red_drawable.h +++ b/client/red_drawable.h @@ -53,13 +53,13 @@ public: OP_XOR, }; - void copy_pixels(const PixelsSource& src, int src_x, int src_y, const Rect& dest); - void blend_pixels(const PixelsSource& src, int src_x, int src_y, const Rect& dest); - void combine_pixels(const PixelsSource& src, int src_x, int src_y, const Rect& dest, + void copy_pixels(const PixelsSource& src, int src_x, int src_y, const SpiceRect& dest); + void blend_pixels(const PixelsSource& src, int src_x, int src_y, const SpiceRect& dest); + void combine_pixels(const PixelsSource& src, int src_x, int src_y, const SpiceRect& dest, CombineOP op); - void fill_rect(const Rect& rect, rgb32_t color); - void frame_rect(const Rect& rect, rgb32_t color); - void erase_rect(const Rect& rect, rgb32_t color); + void fill_rect(const SpiceRect& rect, rgb32_t color); + void frame_rect(const SpiceRect& rect, rgb32_t color); + void erase_rect(const SpiceRect& rect, rgb32_t color); }; #endif |