diff options
author | Sven Gothel <[email protected]> | 2023-08-13 02:40:21 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-08-13 02:40:21 +0200 |
commit | 2aa80761ace63492c859632317a47cdcc8cfae5f (patch) | |
tree | 129325c5d678eacd5d2770d9900355ae3cf7646c /src | |
parent | 059a7b860ec703ac4c416241f6edc165ad313dcc (diff) |
GraphUIDemoArgs: Add GL4 core
Diffstat (limited to 'src')
-rw-r--r-- | src/demos/com/jogamp/opengl/demos/graph/ui/util/GraphUIDemoArgs.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/demos/com/jogamp/opengl/demos/graph/ui/util/GraphUIDemoArgs.java b/src/demos/com/jogamp/opengl/demos/graph/ui/util/GraphUIDemoArgs.java index a7a79d589..93fa2da37 100644 --- a/src/demos/com/jogamp/opengl/demos/graph/ui/util/GraphUIDemoArgs.java +++ b/src/demos/com/jogamp/opengl/demos/graph/ui/util/GraphUIDemoArgs.java @@ -75,6 +75,8 @@ public class GraphUIDemoArgs { glProfileName = GLProfile.GLES3; } else if(args[idx[0]].equals("-gl3")) { glProfileName = GLProfile.GL3; + } else if(args[idx[0]].equals("-gl4")) { + glProfileName = GLProfile.GL4; } else if(args[idx[0]].equals("-gldef")) { glProfileName = null; } else if(args[idx[0]].equals("-wait")) { |