-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[test] Add a test to exercise the internal twin font
Although Behdad promises that the rendering is subject to improvement, introduce a test to check consistency across platforms and update as required.
- Loading branch information
Chris Wilson
committed
Oct 7, 2008
1 parent
1f813ff
commit 8cf399b
Showing
6 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* 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); | ||
} |