2012-09-14 22:46:37 +00:00
|
|
|
Index: graphics.c
|
|
|
|
===================================================================
|
|
|
|
--- graphics.c (revision 57206)
|
|
|
|
+++ graphics.c (working copy)
|
|
|
|
@@ -2819,6 +2819,7 @@
|
|
|
|
ReleaseDC(hwnd, hdc);
|
|
|
|
}
|
|
|
|
|
|
|
|
+#if CORE_6659_IS_FIXED
|
|
|
|
static void test_string_functions(void)
|
|
|
|
{
|
|
|
|
GpStatus status;
|
|
|
|
@@ -3138,6 +3139,7 @@
|
|
|
|
|
|
|
|
ReleaseDC(hwnd, hdc);
|
|
|
|
}
|
|
|
|
+#endif /* CORE_6659_IS_FIXED */
|
|
|
|
|
|
|
|
static void test_get_set_interpolation(void)
|
|
|
|
{
|
|
|
|
@@ -3361,7 +3363,9 @@
|
|
|
|
test_clear();
|
|
|
|
test_textcontrast();
|
|
|
|
test_fromMemoryBitmap();
|
|
|
|
+#if CORE_6659_IS_FIXED
|
|
|
|
test_string_functions();
|
|
|
|
+#endif
|
|
|
|
test_get_set_interpolation();
|
|
|
|
test_get_set_textrenderinghint();
|
|
|
|
test_getdc_scaled();
|
2012-09-15 00:04:58 +00:00
|
|
|
|
|
|
|
Index: font.c
|
|
|
|
===================================================================
|
2012-09-15 19:31:48 +00:00
|
|
|
--- font.c (revision 57301)
|
2012-09-15 00:04:58 +00:00
|
|
|
+++ font.c (working copy)
|
2012-09-15 19:31:48 +00:00
|
|
|
@@ -87,6 +87,7 @@
|
2012-09-15 00:04:58 +00:00
|
|
|
GdipDeleteFontFamily(fontfamily);
|
|
|
|
}
|
|
|
|
|
|
|
|
+#if CORE_6660_IS_FIXED
|
2012-09-15 19:31:48 +00:00
|
|
|
static void test_logfont(void)
|
2012-09-15 00:04:58 +00:00
|
|
|
{
|
2012-09-15 19:31:48 +00:00
|
|
|
LOGFONTA lfa, lfa2;
|
|
|
|
@@ -274,6 +275,7 @@
|
|
|
|
|
|
|
|
GdipDeleteFontFamily(clonedFontFamily);
|
2012-09-15 00:04:58 +00:00
|
|
|
}
|
|
|
|
+#endif // CORE_6660_IS_FIXED
|
|
|
|
|
2012-09-15 19:31:48 +00:00
|
|
|
static void test_fontfamily_properties (void)
|
2012-09-15 00:04:58 +00:00
|
|
|
{
|
2012-09-15 19:31:48 +00:00
|
|
|
@@ -740,8 +742,10 @@
|
2012-09-15 00:04:58 +00:00
|
|
|
test_font_metrics();
|
2012-09-15 19:31:48 +00:00
|
|
|
#endif
|
2012-09-15 00:04:58 +00:00
|
|
|
test_createfont();
|
2012-09-15 19:31:48 +00:00
|
|
|
+#if CORE_6660_IS_FIXED
|
2012-09-15 00:04:58 +00:00
|
|
|
test_logfont();
|
|
|
|
test_fontfamily();
|
2012-09-15 19:31:48 +00:00
|
|
|
+#endif
|
|
|
|
test_fontfamily_properties();
|
|
|
|
test_getgenerics();
|
|
|
|
test_installedfonts();
|