mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-02-16 08:30:41 +01:00
Remove twin test case.
This test relied on the recently-removed ability to select the internal twin-based font family with a name of "cairo". Presumably, we'll want to bring this test case back when some other means of requesting that font face is added.
This commit is contained in:
parent
a824d284be
commit
2922336855
7 changed files with 0 additions and 67 deletions
1
test/.gitignore
vendored
1
test/.gitignore
vendored
|
|
@ -232,7 +232,6 @@ transforms
|
|||
translate-show-surface
|
||||
trap-clip
|
||||
truetype-tables
|
||||
twin
|
||||
unantialiased-shapes
|
||||
unbounded-operator
|
||||
user-data
|
||||
|
|
|
|||
|
|
@ -180,7 +180,6 @@ transforms$(EXEEXT) \
|
|||
translate-show-surface$(EXEEXT) \
|
||||
trap-clip$(EXEEXT) \
|
||||
truetype-tables$(EXEEXT) \
|
||||
twin$(EXEEXT) \
|
||||
unantialiased-shapes$(EXEEXT) \
|
||||
unbounded-operator$(EXEEXT) \
|
||||
user-data$(EXEEXT) \
|
||||
|
|
@ -930,11 +929,6 @@ REFERENCE_IMAGES = \
|
|||
trap-clip-pdf-rgb24-ref.png \
|
||||
trap-clip-ps2-argb32-ref.png \
|
||||
trap-clip-ps2-rgb24-ref.png \
|
||||
twin-ref.png \
|
||||
twin-ps2-ref.png \
|
||||
twin-ps3-ref.png \
|
||||
twin-svg11-ref.png \
|
||||
twin-svg12-ref.png \
|
||||
unantialiased-shapes-ref.png \
|
||||
unantialiased-shapes-quartz-ref.png \
|
||||
unbounded-operator-ref.png \
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.7 KiB |
60
test/twin.c
60
test/twin.c
|
|
@ -1,60 +0,0 @@
|
|||
/*
|
||||
* Copyright 2008 Chris Wilson
|
||||
*
|
||||
* 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
|
||||
* Chris Wilson not be used in advertising or publicity pertaining to
|
||||
* distribution of the software without specific, written prior
|
||||
* permission. Chris Wilson makes no representations about the
|
||||
* suitability of this software for any purpose. It is provided "as
|
||||
* is" without express or implied warranty.
|
||||
*
|
||||
* CHRIS WILSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
|
||||
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
* FITNESS, IN NO EVENT SHALL CHRIS WILSON 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: Chris Wilson <chris@chris-wilson.co.uk>
|
||||
*/
|
||||
|
||||
#include "cairo-test.h"
|
||||
|
||||
static cairo_test_draw_function_t draw;
|
||||
|
||||
static const cairo_test_t test = {
|
||||
"twin",
|
||||
"Tests the internal font",
|
||||
128, 20,
|
||||
draw
|
||||
};
|
||||
|
||||
static cairo_test_status_t
|
||||
draw (cairo_t *cr, int width, int height)
|
||||
{
|
||||
cairo_set_source_rgb (cr, 1, 1, 1);
|
||||
cairo_paint (cr);
|
||||
cairo_set_source_rgb (cr, 0, 0, 0);
|
||||
|
||||
cairo_select_font_face (cr,
|
||||
"cairo",
|
||||
CAIRO_FONT_SLANT_NORMAL,
|
||||
CAIRO_FONT_WEIGHT_NORMAL);
|
||||
cairo_set_font_size (cr, 16);
|
||||
|
||||
cairo_move_to (cr, 4, 14);
|
||||
cairo_show_text (cr, "Is cairo's twin giza?");
|
||||
|
||||
return CAIRO_TEST_SUCCESS;
|
||||
}
|
||||
|
||||
int
|
||||
main (void)
|
||||
{
|
||||
return cairo_test (&test);
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue