Registry / other / jogl-all-main

jogl-all-main

JSON →
library2.6.0javamavenunverified

JOGL provides Java bindings for the OpenGL API, enabling hardware-accelerated 3D graphics in Java applications.

<dependency> <groupId>org.jogamp.jogl</groupId> <artifactId>jogl-all-main</artifactId> <version>2.6.0</version> </dependency>
INSTALL
IMPORT
SIG · JOGL-ALL-MAIN
J
jogl-all-main
otherjavav2.6.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

GL2
com.jogamp.opengl.GL2

Basic OpenGL rendering with JOGL.

import com.jogamp.opengl.GL2; import com.jogamp.opengl.GLAutoDrawable; import com.jogamp.opengl.GLEventListener; public class MyRenderer implements GLEventListener { public void display(GLAutoDrawable drawable) { GL2 gl = drawable.getGL().getGL2(); gl.glClear(GL2.GL_COLOR_BUFFER_BIT); gl.glBegin(GL2.GL_TRIANGLES); gl.glVertex2f(0.0f, 1.0f); gl.glVertex2f(-1.0f, -1.0f); gl.glVertex2f(1.0f, -1.0f); gl.glEnd(); } // other methods omitted }
Debug
Known issues
gotchaJOGL 2.6.0 may have compatibility issues with newer OpenGL versions or macOS.
fix
Check JOGL documentation for platform-specific setup and consider using the latest JOGL version.
affects: 2.6.0
Upgrade
Version history
2.6.0latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
6 hits · last 30 days
node
6
Resources
jogl-all-main — mvn dependency:get jogl-all-main · libregistry