JOGL v2.6.0-rc-20250712
JOGL, High-Performance Graphics Binding for Java™ (public API).
DebugGL4.java
Go to the documentation of this file.
1package 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 */
17public class DebugGL4 extends DebugGL4bc {
18 public DebugGL4(final GL4 downstream) {
19 super((GL4bc)downstream);
20 }
21}
DebugGL4(final GL4 downstream)
Definition: DebugGL4.java:18