All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jogamp.opengl.DebugGLES2 Maven / Gradle / Ivy

The newest version!
package com.jogamp.opengl;

/**
 * 

* Composable pipeline which wraps an underlying {@link GL} implementation, * providing error checking after each OpenGL method call. If an error occurs, * causes a {@link GLException} to be thrown at exactly the point of failure. *

*

* Sample code which installs this pipeline, manual: *

 *     gl = drawable.setGL(new DebugGL(drawable.getGL()));
 * 
* For automatic instantiation see {@link GLPipelineFactory#create(String, Class, GL, Object[])}. *

*/ public class DebugGLES2 extends DebugGLES3 { public DebugGLES2(final GLES2 downstream) { super((GLES3)downstream); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy