Tagged Questions

JOGL is the Java Binding for the OpenGL and OpenGL ES API. JOGL provides full access to the APIs in the OpenGL 1.3 - 3.0, 3.1 - 3.3, ≥ 4.0, ES 1.x and ES 2.x specification.

learn more… | top users | synonyms

13
votes
5answers
4k views

Maven and the JOGL library?

I've been studying Maven in my free time over the last several days but can't seem to figure out how to organize a project so that the JOGL libraries are used. I would preferably like the following: ...
9
votes
4answers
2k views

How would one implement an FPS camera?

So I'm currently working on some FPS game programming in OpenGL (JOGL, more specifically) just for fun and I wanted to know what would be the recommended way to create an FPS-like camera? At the ...
8
votes
5answers
2k views

What are some faster alternatives to Java2d?

I'm looking to do some physics simulations and I need fast rendering in Java. I've run into performance issues with Java2d in the past, so what are the fast alternatives? Is JOGL significantly faster ...
7
votes
5answers
3k views

Revisiting the issue of LWJGL vs JOGL for game programming [closed]

There exists the question, "Java Game Programming: JOGL vs LWJGL?" but it's not exactly what I'm looking for, and it's over a year old (in which time JOGL has gone through some changes) so I'd like to ...
6
votes
1answer
4k views

Howto: install JOGL for Eclipse in Mac OSX 10.6?

I got Snow Leopard 64 bit, and I'm wondering how I am to install JOGL in order to develop with Eclipse. A nice tut from A-Z would have been nice, since I'm suspecting some of my steps are very wrong. ...
5
votes
2answers
180 views

What is the best way to learn/use OpenGL + Java while keeping it object oriented? [closed]

I've tried using JOGL for Java + OpenGL. And it seems to work rather nicely. However, under my endavors with opengl i noticed that it isn't very object oriented. How can I use OpenGL together with ...
5
votes
1answer
947 views

OpenGL/JOGL: Multiple triangle fans in a vertex array

I'm working on making some moderately simple shapes with vertex arrays, and I'm making some good headway, but now I want to draw 2 (or more) triangle fan objects. Is there any way to only make one ...
5
votes
5answers
3k views

Local alternative to JNLP file?

Try as I might, I can't get a JNLP file to run locally (via a double-click). It seems to be an issue of locating a jar file, even when I specify it relative to the jnlp file. I get the following ...
5
votes
2answers
734 views

Automated testing for OpenGL application

I have a Java Application that uses JOGL to provide a large part of the GUI. Is there any tool which you know of, or have used which can automate the testing of OpenGL applications (or more ...
4
votes
3answers
463 views

OpenGL Shader Compilation Issue — Unexpected EOF

So I decided to try writing a simple OpenGL app using Java, just to see how it compared to my other efforts, and I'm running into an issue where my shaders refuse to compile. They really couldn't get ...
4
votes
2answers
819 views

Full Screen Swing with JOGL

I am trying to make a Swing application which renders in full screen, following the description here http://download.oracle.com/javase/tutorial/extra/fullscreen/exclusivemode.html and the source code ...
4
votes
3answers
470 views

Deallocating Direct Buffer Native Memory in Java for JOGL

I am using direct buffers (java.nio) to store vertex information for JOGL. These buffers are large, and they are replaced several times during the application life. The memory is not deallocated in ...
4
votes
1answer
290 views

Java OpenGL color material darkens when depth test is disabled

I've been working with the depth buffer in OpenGL (JOGL) to ensure certain items are rendered in front of others by disabling the depth buffer (detailed in my previous question ...
4
votes
3answers
946 views

How to export Java OpenGL (JOGL) from Eclipse?

I recently built a JOGL Application using Eclipse IDE.. It works perfectly fine when i run it on Eclipse.. However I want to make a .jar file for this application so that I can put it on my website.. ...
4
votes
4answers
4k views

Loading PNGs into OpenGL performance issues - Java & JOGL much slower than C# & Tao.OpenGL

I am noticing a large performance difference between Java & JOGL and C# & Tao.OpenGL when both loading PNGs from storage into memory, and when loading that BufferedImage (java) or Bitmap (C# - ...
4
votes
1answer
944 views

Limit of OpenGL displayList size

Does anyone know if putting too many OpenGL calls into a displaylist can cause it to fail? If so, does anyone have an estimate for how many calls might do this? Is it related to video memory? I'm ...
4
votes
1answer
293 views

How does JOGL search for OpenGL libraries?

I'm writing a desktop app using JOGL, and deploying on Win/Mac/Linux. On Linux we find that the OpenGL libraries installed are not always up to the job, and we need to have the capability of switching ...
4
votes
1answer
1k views

What Ubuntu/Debian packages do I need to build with Java+OpenGL?

I want to use JOGL (for Clojure, not Java). There seems to be quite a combination of alternatives for JDKs and OpenGL bindings, and I don't want to use a scatter gun approach and clog up my machine ...
3
votes
2answers
124 views

Using OpenGL in Matlab to get depth buffer

Ive asked a similar question before and didnt manage to find a direct answer. Could someone provide sample code for extracting the depth buffer of the rendering of an object into a figure in Matlab? ...
3
votes
1answer
151 views

Java JOGL: How can create an image using both GL and Graphics?

Basically I am learning openGL using JOGL, as a project to help me learn I am going to make a simple game, but before that I want to draw a square and move the camera around with the arrow keys. ...
3
votes
1answer
82 views

Simulating the Event Dispatch Thread

In my application I'd like to forward mouse and keyboard events to an invisible JPanel and I'd like that JPanel to process them as if they came from the EDT. The reason for this is because the ...
3
votes
3answers
283 views

Fast Java matrix library suitable for JOGL + generic matrix math?

I'm interested in writing an OpenGL app in JOGL 2, using shaders instead of the fixed-function pipeline. I'll need to do a fair bit of 4x4 double-precision matrix math CPU-side, to replace the fixed ...
3
votes
1answer
787 views

Where do I get the JOGL JAR?

This might sound silly... but I don't know where to find the JOGL JAR. I searched their website (http://jogamp.org/jogl/www/) and couldn't find it. Could someone please help? Thank you blargman
3
votes
1answer
127 views

flickering during reshaping

I am using FPSAnimator and jogl to draw rotating quad on GLCanvas. Normally graphics is not flickering and rotation is smooth, but when I resize window, or move it from nonvisible area of screen to ...
3
votes
5answers
112 views

Java - is there any multiplatform 3D API?

I just want to ask, I am new to Java and I would like to make some real-3D and multiplatform application. From beggining, I only liked java becouse of its multiplatformness. But when it comes to 3D, I ...
3
votes
1answer
852 views

GLU.gluLookAt in Java OpenGL bindings seems to do nothing

I've already checked the other questions on this topic and their solutions haven't worked for me. I'm at a bit of a loss. I have the following functions in my GLEventListener implementation. public ...
3
votes
1answer
142 views

Java swing: Remanence when removing a heavyweight jogl component to add a lightweight component at the same place

In my swing application, when I remove a jogl GLCanvas from my main component to add a jPanel at the same place, there are some display glitches: During the time when the old component has been ...
3
votes
1answer
382 views

Using Custom Shaders in WorldWind Java / JOGL

or Creating an IR effect in WorldWind Java I need to emulate an infrared (IR) view in WorldWind, and I'm not sure about the best way to go about this. I should point out that I do not need to ...
3
votes
1answer
370 views

JOGL creating window using NEWT - examples?

I have been looking at using JOGL to create some things and have been looking through what documentation I can find. Brief tutorials they all mention how using the JOGL version of canvas can have ...
3
votes
2answers
1k views

OpenGL: Create a sky box?

I'm new to OpenGL. I'm using JOGL. I would like to create a sky for my world that I can texture with clouds or stars. I'm not sure what the best way to do this is. My first instinct is to make a ...
3
votes
5answers
639 views

How do I distribute a JOGL application?

I've written an application the builds fine on my machine but when I move it to another machine the dependent JOGL libraries cannot be found. Is it possible to create a build that sets up all the ...
3
votes
3answers
2k views

Loading JNI lib on Mac OS X?

Background So I am attempting to load a jnilib (specifically JOGL) into Java on Mac OS X at runtime. I have been following along the relevant Stack Overflow questions: Maven and the JOGL Library ...
3
votes
3answers
3k views

Writing a portable Java application using JOGL and Android OpenGL

I plan on writing a Java 3D game that will work both on PC and Android. Unfortunately it looks like there is no common OpenGL API for both platforms. Do the APIs differ significantly? Is there a way ...
3
votes
3answers
2k views

JOGL Double Buffering

What is eligible way to implement double buffering in JOGL (Java OpenGL)? I am trying to do that by the following code: ... /** Creating canvas. */ GLCapabilities capabilities = new ...
3
votes
2answers
945 views

opengl frustum culling without glGet* calls

Various examples of view frustum calculations are using glGetFloatv() to get the current projection and modelview matrices (GL_PROJECTION_MATRIX, GL_MODELVIEW_MATRIX), and based of that do some view ...
3
votes
2answers
3k views

Java Game Programming: JOGL vs LWJGL?

I am currently writing a Turret Defense style game using the GTGE engine, this engine has the ability to use either JOGL or LWJGL to drive the graphics and so I was wondering, which one should I use? ...
3
votes
6answers
14k views

Where can I download JOGL?

I'm looking to start using Java Open GL, but I can't find it.
3
votes
5answers
2k views

Recommended 3D model type for in-game character model, loaded manually?

I'm writing a game in JOGL and need to represent the in-game character. I plan to use skeletal animation for the character movements, and of course the character will be skinned. I can't seem to find ...
3
votes
4answers
3k views

Jogl Shader programming

I just started Shader programming(GLSL) and created a few with RenderMonkey. Now I want to use this Shaders in my java code. Are there any simple examples of how I do that?
2
votes
3answers
202 views

Error when trying to use VBO “array vertex_buffer_object must be disabled to call this method”

EDIT I have effectivley re-wrote this question in order to greatly imrpove its quality - see revision logs if you must I have narrowed down my problem to the initialisation phase of my program, when ...
2
votes
1answer
40 views

Can't find GL.glColor3f in JOGL?

I must be stupid or something, but I'm looking at several JOGL samples online and they use the color3f method of the GL interface in JOGL, but the compiler complains it can't find the method and when ...
2
votes
1answer
65 views

Exporting Java with VM arguments (or alternative)

I'm looking for a way to export a JOGL program that I wrote. Currently, I am referencing four JAR files with a user library, and I specify -Djava.library.path=/lib as a VM argument. The /lib folder ...
2
votes
1answer
98 views

Can't use glLoadIdentity as expected after a translation in JOGL

I'm just starting with JOGL, and there's something I haven't been able to do: There's an example of basic drawing and rotation in NeHe tutorials, and everything works just fine, except the ...
2
votes
1answer
81 views

Java: openGL: JOGL: What happens behind the scenes when I call the display() method?

I have this line of code: renderableObject.renderObject(gl, glu); This leads to a large list of objects being rendered by openGL, however it only works when used as follows: @Override public void ...
2
votes
2answers
111 views

How can I map the elements to colors in OpenGL VBO?

I'm creating an app using VBO to render some objects with difficult color structure. I noticed, that VBO defines the color of the element equal to last vertex index in the element buffer. For example, ...
2
votes
4answers
124 views

Possible Memory Leak with JOGL using VBOs

We are currently developing an application which visualizes huge vector fields (> 250'000) on a sphere/plane in 4D. To speed up the process we are using VBOs for the vertices, normals and colors. To ...
2
votes
4answers
242 views

Alternative to Java3D

Colleagues of mine are using Java3D for visualizing results of finite element simulations. The problem is that Java3D seems to be somehow dead, and it is a pain on OSX. This is one of the reasons we ...
2
votes
3answers
123 views

OpenGL Picking from a large set

I'm trying to, in JOGL, pick from a large set of rendered quads (several thousands). Does anyone have any recommendations? To give you more detail, I'm plotting a large set of data as billboards with ...
2
votes
0answers
130 views

Null Pointer Exception in GLProfile with JOGL 2.0

JOGL 2.0 added a GLProfile parameter to GLCapabilities. For whatever reason, with this simple code: import javax.media.opengl.GLCapabilities; import javax.media.opengl.GLProfile; import ...
2
votes
1answer
69 views

acceptance testing Java OpenGL applications

I have a Java desktop application that has a major component of it written using Java OpenGL (JOGL). When it comes to writing automated acceptance tests for this, I'm not really sure how to write them ...

1 2 3 4 5 6