1 package com.jogamp.opengl;
2 
3 /**
4  * <p>
5  * Composable pipeline which wraps an underlying {@link GL} implementation,
6  * providing error checking after each OpenGL method call. If an error occurs,
7  * causes a {@link GLException} to be thrown at exactly the point of failure.
8  * </p>
9  * <p>
10  * Sample code which installs this pipeline, manual:
11  * <pre>
12  *     gl = drawable.setGL(new DebugGL(drawable.getGL()));
13  * </pre>
14  * For automatic instantiation see {@link GLPipelineFactory#create(String, Class, GL, Object[])}.
15  * </p>
16  */
17 public class DebugGLES2 extends DebugGLES3 {
DebugGLES2(final GLES2 downstream)18     public DebugGLES2(final GLES2 downstream) {
19         super((GLES3)downstream);
20     }
21 }
22