~ubuntu-branches/debian/stretch/spice/stretch

« back to all changes in this revision

Viewing changes to common/sw_canvas.c

  • Committer: Package Import Robot
  • Author(s): Liang Guo, Liang Guo, Michael Tokarev
  • Date: 2011-11-29 14:37:08 UTC
  • mfrom: (0.6.1) (0.4.2) (2.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20111129143708-jptkxyjl3a4rds2r
Tags: 0.10.0-1
[ Liang Guo ]
* New upstream release (Closes: #651262)
* Refresh debian/copyright
* Remove fix-typo-in-cmd_line_parser-cpp.patch, applied upstream
* Remove fix-typo-in-record-cpp.patch, applied upstream
* Remove use-requires-private-for-libspice-pkgconfig.patch, applied upstream
* Change Build-Depends on libspice-protocol-dev to (>= 0.9.1~)
* Refresh libspice-server1.symbols
* Update debian/rules clean target
* Ignore common/win/my_getopt-1.5/Makefile change when building package
* debian/control: set DMUA

[ Michael Tokarev ]
* use `rm -f' instead of `-rm' in debian/rules clean targets
* remove python_modules/*.pyc in clean target

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
   You should have received a copy of the GNU Lesser General Public
16
16
   License along with this library; if not, see <http://www.gnu.org/licenses/>.
17
17
*/
 
18
#ifdef HAVE_CONFIG_H
 
19
#include <config.h>
 
20
#endif
 
21
 
 
22
#ifndef SPICE_CANVAS_INTERNAL
 
23
#error "This file shouldn't be compiled directly"
 
24
#endif
18
25
 
19
26
#include <math.h>
20
27
#include "sw_canvas.h"
976
983
{
977
984
    SwCanvas *canvas = (SwCanvas *)spice_canvas;
978
985
    pixman_image_t *src;
979
 
    int dest_width;
980
 
    int dest_height;
 
986
    uint32_t dest_width;
 
987
    uint32_t dest_height;
981
988
    double sx, sy;
982
989
    pixman_transform_t transform;
983
990