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

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

Introduction

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

Prototype

public static native void glClearDepth(double depth);

Source Link

Usage

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

static void init(GLCanvas canvas) {
    canvas.setCurrent();//from w w w .ja  va 2s. c  om
    resize(canvas);
    GL.glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
    GL.glColor3f(0.0f, 0.0f, 0.0f);
    GL.glClearDepth(1.0f);
    GL.glEnable(GL.GL_DEPTH_TEST);
    GL.glHint(GL.GL_PERSPECTIVE_CORRECTION_HINT, GL.GL_NICEST);
}

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

static GLContext init(Canvas canvas) {
    GLContext context = new GLContext(canvas);
    context.setCurrent();/*from  w  w w.j  a va 2 s .co  m*/
    resize(canvas);
    GL.glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
    GL.glColor3f(0.0f, 0.0f, 0.0f);
    GL.glClearDepth(1.0f);
    GL.glEnable(GL.GL_DEPTH_TEST);
    GL.glHint(GL.GL_PERSPECTIVE_CORRECTION_HINT, GL.GL_NICEST);
    return context;
}