Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT OpenGL/emulated/org/eclipse/swt/opengl/GLCanvas.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT OpenGL/emulated/org/eclipse/swt/opengl/GLCanvas.java122
1 files changed, 0 insertions, 122 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/emulated/org/eclipse/swt/opengl/GLCanvas.java b/bundles/org.eclipse.swt/Eclipse SWT OpenGL/emulated/org/eclipse/swt/opengl/GLCanvas.java
deleted file mode 100644
index ac3d5e8cf9..0000000000
--- a/bundles/org.eclipse.swt/Eclipse SWT OpenGL/emulated/org/eclipse/swt/opengl/GLCanvas.java
+++ /dev/null
@@ -1,122 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2005 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.swt.opengl;
-
-import org.eclipse.swt.*;
-import org.eclipse.swt.widgets.*;
-
-/**
- * GLCanvas is a widget capable of displaying OpenGL content.
- *
- * WARNING API STILL UNDER CONSTRUCTION AND SUBJECT TO CHANGE
- *
- * @since 3.2
- */
-
-public class GLCanvas extends Canvas {
-
-/**
- * Create a GLCanvas widget using the attributes described in the GLData
- * object provided.
- *
- * @param parent a composite widget
- * @param style the bitwise OR'ing of widget styles
- * @param data the requested attributes of the GLCanvas
- *
- * @exception IllegalArgumentException
- * <ul><li>ERROR_NULL_ARGUMENT when the data is null
- * <li>ERROR_UNSUPPORTED_DEPTH when the requested attributes cannot be provided</ul>
- * </ul>
- *
- * WARNING API STILL UNDER CONSTRUCTION AND SUBJECT TO CHANGE
- *
- * @since 3.2
- */
-public GLCanvas (Composite parent, int style, GLData data) {
- super (parent, style);
- SWT.error (SWT.ERROR_NOT_IMPLEMENTED);
-}
-
-/**
- * Returns a GLData object describing the created context.
- *
- * @return GLData description of the OpenGL context attributes
- * @exception SWTException <ul>
- * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
- * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
- * </ul>
- *
- * WARNING API STILL UNDER CONSTRUCTION AND SUBJECT TO CHANGE
- *
- * @since 3.2
- */
-public GLData getGLData () {
- checkWidget ();
- SWT.error (SWT.ERROR_NOT_IMPLEMENTED);
- return null;
-}
-
-/**
- * Returns a boolean indicating whether the receiver's OpenGL context
- * is the current context.
- *
- * @return true if the receiver holds the current OpenGL context,
- * false otherwise
- * @exception SWTException <ul>
- * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
- * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
- * </ul>
- *
- * WARNING API STILL UNDER CONSTRUCTION AND SUBJECT TO CHANGE
- *
- * @since 3.2
- */
-public boolean isCurrent () {
- checkWidget ();
- SWT.error (SWT.ERROR_NOT_IMPLEMENTED);
- return false;
-}
-
-/**
- * Sets the OpenGL context associated with this GLCanvas to be the
- * current GL context.
- *
- * @exception SWTException <ul>
- * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
- * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
- * </ul>
- *
- * WARNING API STILL UNDER CONSTRUCTION AND SUBJECT TO CHANGE
- *
- * @since 3.2
- */
-public void setCurrent () {
- checkWidget ();
- SWT.error (SWT.ERROR_NOT_IMPLEMENTED);
-}
-
-/**
- * Swaps the front and back color buffers.
- *
- * @exception SWTException <ul>
- * <li>ERROR_WIDGET_DISPOSED - if the receiver has been disposed</li>
- * <li>ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver</li>
- * </ul>
- *
- * WARNING API STILL UNDER CONSTRUCTION AND SUBJECT TO CHANGE
- *
- * @since 3.2
- */
-public void swapBuffers () {
- checkWidget ();
- SWT.error (SWT.ERROR_NOT_IMPLEMENTED);
-}
-}

Back to the top