summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt.opengl/gtk/org/eclipse/swt/opengl/internal/gtk/XGTK.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt.opengl/gtk/org/eclipse/swt/opengl/internal/gtk/XGTK.java')
-rw-r--r--bundles/org.eclipse.swt.opengl/gtk/org/eclipse/swt/opengl/internal/gtk/XGTK.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/bundles/org.eclipse.swt.opengl/gtk/org/eclipse/swt/opengl/internal/gtk/XGTK.java b/bundles/org.eclipse.swt.opengl/gtk/org/eclipse/swt/opengl/internal/gtk/XGTK.java
deleted file mode 100644
index d6c017a923..0000000000
--- a/bundles/org.eclipse.swt.opengl/gtk/org/eclipse/swt/opengl/internal/gtk/XGTK.java
+++ /dev/null
@@ -1,29 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2003 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.swt.opengl.internal.gtk;
-
-import org.eclipse.swt.opengl.Library;
-
-public class XGTK {
-
- static {
- Library.loadLibrary("xgtk");
- }
-
- public static final synchronized native int gdk_x11_gc_get_xdisplay(int gc);
- public static final synchronized native int gdk_x11_drawable_get_xid(int gc);
- public static final synchronized native int XDefaultScreen(int display);
- public static final synchronized native int XDefaultScreenOfDisplay(int display);
- public static final synchronized native int XDefaultDepthOfScreen(int screen);
- public static final synchronized native int XFree(int address);
- public static final synchronized native void free(int ptr);
- public static final synchronized native int malloc(int size);
-}