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

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

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 DebugGL3 extends DebugGL4bc { public DebugGL3(final GL3 downstream) { super((GL4bc)downstream); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy