[test] Fix composite-integer-translate-over test

This test wasn't translating by an integer, but instead by 5.5.  Fixed
test and reference image.
This commit is contained in:
Vladimir Vukicevic 2006-09-29 14:44:00 -07:00 committed by Vladimir Vukicevic
parent b05400b559
commit cd6b44e9c9
4 changed files with 25 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

View file

@ -1,10 +1,33 @@
/*
* Copyright © 2006 Mozilla Corporation
*
* Permission to use, copy, modify, distribute, and sell this software
* and its documentation for any purpose is hereby granted without
* fee, provided that the above copyright notice appear in all copies
* and that both that copyright notice and this permission notice
* appear in supporting documentation, and that the name of
* Mozilla Corporation not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior
* permission. Mozilla Corporation makes no representations about the
* suitability of this software for any purpose. It is provided "as
* is" without express or implied warranty.
*
* MOZILLA CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS, IN NO EVENT SHALL MOZILLA CORPORATION BE LIABLE FOR ANY SPECIAL,
* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Author: Vladimir Vukicevic <vladimir@pobox.com>
*/
#include <math.h>
#include "cairo-test.h"
#include <stdio.h>
#define SIZE 100
#define OFFSET 5.5
#define SCALE 1.5
#define OFFSET 10
const char png_filename[] = "romedalen.png";
static cairo_test_draw_function_t draw;