Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2016-03-02 23:25:47 +0000
committerSravan Kumar Lakkimsetti2016-04-21 11:08:43 +0000
commit9cb1add9fdf8082b3285309f092be2e2e9679b09 (patch)
tree48dcda576e4d4014adb386f879c51d8748549b68 /features/org.eclipse.equinox.executable.feature/library/gtk/eclipseGtkInit.c
parent9fa023ca5c273cb706c1976b89805d6faed48b9a (diff)
downloadrt.equinox.framework-9cb1add9fdf8082b3285309f092be2e2e9679b09.tar.gz
rt.equinox.framework-9cb1add9fdf8082b3285309f092be2e2e9679b09.tar.xz
rt.equinox.framework-9cb1add9fdf8082b3285309f092be2e2e9679b09.zip
Bug 488910 - [HiDpi][GTK] splash screen should show the correct size
based on the scaling selected -Completed the necessary testing for the launcher. This solves the splash cropping problem Change-Id: I1a234c7842589a6acbedf83196b86ea66ee2387a Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'features/org.eclipse.equinox.executable.feature/library/gtk/eclipseGtkInit.c')
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/gtk/eclipseGtkInit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/gtk/eclipseGtkInit.c b/features/org.eclipse.equinox.executable.feature/library/gtk/eclipseGtkInit.c
index 2b956a92d..66c1a3b62 100644
--- a/features/org.eclipse.equinox.executable.feature/library/gtk/eclipseGtkInit.c
+++ b/features/org.eclipse.equinox.executable.feature/library/gtk/eclipseGtkInit.c
@@ -53,6 +53,8 @@ static FN_TABLE gdkFunctions[] = {
FN_TABLE_ENTRY(gdk_set_program_class, 1),
FN_TABLE_ENTRY(gdk_display_get_default, 1),
FN_TABLE_ENTRY(gdk_x11_display_get_xdisplay, 1),
+ FN_TABLE_ENTRY(gdk_screen_get_default, 1),
+ FN_TABLE_ENTRY(gdk_screen_get_resolution, 1),
{ NULL, NULL }
};
/* functions from libgdk_pixbuf-2.0 */
@@ -60,6 +62,7 @@ static FN_TABLE pixFunctions[] = {
FN_TABLE_ENTRY(gdk_pixbuf_new_from_file, 1),
FN_TABLE_ENTRY(gdk_pixbuf_get_width, 1),
FN_TABLE_ENTRY(gdk_pixbuf_get_height, 1),
+ FN_TABLE_ENTRY(gdk_pixbuf_scale_simple, 1),
{ NULL, NULL }
};
/* functions from libgobject-2.0 */

Back to the top