JOGL v2.6.0-rc-20250706
JOGL, High-Performance Graphics Binding for Java™ (public API).
Hello0.java
Go to the documentation of this file.
1package com.jogamp.opengl.demos.ios;
2
3import com.jogamp.opengl.GLProfile;
4
5import jogamp.nativewindow.ios.IOSUtil;
6
7public class Hello0 {
8 public static void main(final String[] args) {
9 System.out.println("Hello JogAmp World");
11 {
12 IOSUtil.RunOnMainThread(true, false, new Runnable() {
13 @Override
14 public void run() {
15 IOSUtil.CreateGLViewDemoA();
16 } } );
17 }
18 }
19
20}
Specifies the the OpenGL profile.
Definition: GLProfile.java:77
static void initSingleton()
Static initialization of JOGL.
Definition: GLProfile.java:204
static void main(final String[] args)
Definition: Hello0.java:8