Example usage for org.eclipse.swt.opengl GL glBegin

List of usage examples for org.eclipse.swt.opengl GL glBegin

Introduction

In this page you can find the example usage for org.eclipse.swt.opengl GL glBegin.

Prototype

public static native void glBegin(int mode);

Source Link

Usage

From source file:org.eclipse.swt.snippets.Snippet174.java

static void render() {
    GL.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);
    GL.glLoadIdentity();/*from  www . ja  v  a  2 s .co  m*/
    GL.glTranslatef(0.0f, 0.0f, -6.0f);
    GL.glBegin(GL.GL_QUADS);
    GL.glVertex3f(-1.0f, 1.0f, 0.0f);
    GL.glVertex3f(1.0f, 1.0f, 0.0f);
    GL.glVertex3f(1.0f, -1.0f, 0.0f);
    GL.glVertex3f(-1.0f, -1.0f, 0.0f);
    GL.glEnd();
}