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

0
votes
1answer
29 views

How to set the camera within a cube?

I have cube which has different color to each side-lock - public void display(GLAutoDrawable drawable) { final GL gl = drawable.getGL(); gl.glClear(GL.GL_COLOR_BUFFER_BIT | ...
2
votes
2answers
90 views

Rotating shape moves together with the camera when agent moves

I created a 3D game where an agent can move in multiple directions (north,south...) . It works okay ,but when I added another shape - pyramid - to the code , then when I move the agent , the ...
-1
votes
0answers
37 views

Display 3D cube using jogl (opengl)

Edit: I tried this tutorial about how to display a 3D cube. I create this class - public class JoglDemo implements GLEventListener, KeyListener { static GLU glu = new GLU(); static ...
0
votes
0answers
19 views

How to create a shadow for an already created Mesh in Java using Jogl

I already create a mesh which represents a flag in java using jogl. I will appreciate any advice's on how i can create a shadow for the flag/mesh. I already research about it and i couldn't find any ...
0
votes
0answers
23 views

JOGL Two GLJPanels in one JFrame

I'm currently developing one module into one project for visualisation of molecules. One of the tasks I'm currently dealing with is stereoscopic projection. Due to my stereo setup - I want to render ...
0
votes
1answer
26 views

How to make JOGL OSGI bundles with native libraries loaded correctly?

I've been trying for days: http://forum.jogamp.org/JOGL-with-OSGi-td3773888.html#a4029139 This library has native dependencies embedded in jars. ...
0
votes
1answer
34 views

Jogl animator always says FPS is 0

I want to print FPS to the screen in my program. The number returned from "getLastFPS" is always 0. I've looked at ...
0
votes
1answer
27 views

How to load native JOGL .jnilib extensions on Mac OSX by exported app.jar?

The issue seems to be that on Mac OSX (as opposed to Windows), jogl.jar requires the native extensions be in a particular system path /System/Library/Java/Extensions/ (as stated on: ...
0
votes
1answer
15 views

Jogl-2.0 doesn't support GLAutoDrawable gLDrawable.addKeyListener(this); ?

I'm using Jogl 2.0 , and when I try to do public class Walking3D implements GLEventListener, KeyListener { @Override public void init (GLAutoDrawable gLDrawable) { // some code ...
1
vote
0answers
10 views

Change frame-per-second of FPSAnimator

In the beginning, I create a new FPSAnimator(drawable,FPS,true); Is it possible to speed up or slow down (i.e, change the FPS of animating) the animating speed after FPSAnimator started?
0
votes
1answer
31 views

Converting JOGL texture into BufferedImage

I am very very new to JOGL. I am trying to create a BufferedImage object(which is used in other part of my code) out of a textrure (not a Texture object but a texture with a handle, storage). In the ...
0
votes
1answer
35 views

JOGL 2.0, render depth buffer to texture

I am trying to implement simple shadow mapping technique in JOGL 2.0 and I struggle with rendering depth values into texture. Maybe I am doing it completely wrong but it is weird that rendering scene ...
0
votes
0answers
19 views

GL_LINES is not visible inside a cube

What I would like to do is draw a parallelepiped (using GL_QUADS) and its edges (using GL_LINES). The parallelepiped is supposed to be a Squash field, and the camera will be inside it. The problem is ...
0
votes
0answers
53 views

Jogl coordinates doubled and negative

I am kind of new to OpenGl, and I have run into a very frustrating problem. I have a display, and on that display I am drawing a 3D cube, and using a "projection" to view it. In my render loop, I've ...
0
votes
1answer
39 views

JOGL 2.0 doesn't support GLCanvas ,Texture ,Animator , but jogl 1.0 does?

I downloaded jogl 2.0 from here , the file jogl-all.jar , and ran a simple code example taken from here : import java.awt.event.KeyEvent; import java.awt.event.KeyListener; import ...
0
votes
0answers
22 views

JOGL: array vertex_buffer_object must be enabled to call this method

So I'm pretty new to JOGL and VBOs. I'd got a piece of code almost exactly like this working a few days ago, but after moving it into a new project with some different objects and a slightly different ...
0
votes
1answer
37 views

A running stable JAR file of JOGL 2.0? [closed]

I'm looking for a running stable JAR file of JOGL version 2.0 . I've searched in the jogl website here , but I can't find a stable version with only a JAR file and its DLL files . Can someone ...
1
vote
1answer
43 views

First GLWindow in first NewtCanvasAWT doesn't get .repaint(), when there are other windows

I have two JOGL native GLWindows wrapped in NewtCanvasAWT. These canvases are added to JInternalFrames each. JInternalFrames are added to JDesktopPane which is added to a JFrame. I don't have an ...
0
votes
1answer
61 views

Java input on OS X, no key repeat, but with glut yes

I've been a few months playing with OpenGL and glut in C++ on OS X. I'm now trying to use Java (using JOGL) with OpenGL, but I can't figure out this problem. With glut, if I press a key and keep it ...
1
vote
0answers
59 views

How to make jogl work with intellij idea

I've looked around and I can't seem to figure this out. I'm trying to setup JOGL(on win64) for use with IntelliJ IDEA and it doesn't seem to work no matter what I do. Here's what I've done so far: ...
0
votes
0answers
47 views

How to mix NewtCanvasSWT in SWT while using OpenGL3.1?

I try to write a HelloWorld code with SWT, but I fail to combine NewtCanvasSWT with SWT in OpenGL3.1. All I get is a single standard shell. How to make it show something? Here is the main code: ...
2
votes
0answers
55 views

Profiling JOGL with Java VisualVM

I am working on an OpenGL 3D renderer. I am using Java and the JOGL API. Right now I am trying to performance tweak my deferred renderer. For this, I am using the VisualVM Profiler, in order to see ...
0
votes
1answer
128 views

OpenGL(JOGL) glu.gluLookAt mirroring world

I recently started working with/trying to learn OpenGL through JOGL and have been getting some very weird issues. I am using the glu#gluLookAt method to view the world. i am calculating the point that ...
1
vote
1answer
61 views

Java - OpenGL set offset for center (0,0) coordinates

I am doing something with JOGL libraries (forced to) and I can't figure out how to offset the center zero coordinates. I would like to offset them to the botom of my viewport, in the method public ...
2
votes
1answer
61 views

Fragment shader input interfering with texture access

I am using a vertex, geometry and fragment shader to render a scene with shadows: Vertex Shader: #version 400 layout(location=0) in vec3 position; out vec4 vShadowCoord; uniform mat4 ...
1
vote
1answer
43 views

Using ByteBuffer as a Texture in OpenGL

Iḿ working on an application that should stream video data into OpenGL (ES2). For each frame of my video, I can get a ByteBuffer that contain all the data. I guess one way to go would be to convert ...
0
votes
0answers
49 views

Avoid RecursiveLockImpl01Unfairish.lock RuntimeException (timeout)?

I have an application that loads a series of large images on startup. This is a Processing application, so most things run on the single main animation thread, and it's using Processing's OpenGL ...
0
votes
1answer
20 views

Is there a way to assign a jogl shape to a variable?

I am trying to create the game pong and drew a paddle with 4 vertices in jogl. I wanted to assign that jogl shape to a variable in order to test if it intersects with the ball which is just a jogl ...
0
votes
1answer
89 views

How can I create a 3d texture with negative values and read it from a shader

I have written a volume rendering program that turns some 2d images into a 3d volume that can be rotated around by a user. I need to calculate a normal for each point in the 3d texture (for lighting) ...
0
votes
1answer
73 views

JOGL Confusion- How do textures work?

OpenGL is very confusing for me and I'm not used to a lot of graphic terminology, etc. which is very rampant in many tutorials. I understand how to draw triangles, circles, and quads, polygons, etc. ...
0
votes
0answers
153 views

Unable to load GLProfile on Android (maven repo 2.0rc11post06)

I'm unable to load JOGL on android using the maven repo version 2.0rc11post06 found at the jogl site. When I try to get any GLProfile the following expcetion is thrown: Profile GL2ES2 is not ...
2
votes
0answers
23 views

Does JOGL marshal any data before it calls into the bound c implementation of openGL?

Does anyone know if JOGL does any marshalling of data before it calls into the bound c implementation of openGL? From what I understand JOGL doesn't do much more than expose openGL in java. I have ...
0
votes
0answers
62 views

UnsatisfiedLinkError: no nativewindow_jvm in java.library.path

After porting my application from Eclipse to Netbeans (by hand) and setting up the library just like I had it in Eclipse, when I ran the project, I received this error: Exception in thread ...
1
vote
1answer
74 views

Selecting vertex with mouse JOGL

I use JOGL and trying to make sure that when you click on the vertex this vertex has been selected. I'm trying to pick the top in color, but do not understand how to get the color under the cursor. I ...
0
votes
1answer
38 views

exporting with JOGL

I have my game in a state where it works in eclipse. My project directory looks like the image on the left. exporting seems to go just fine, i have some unused variables that aren't yet functional but ...
1
vote
1answer
110 views

JOGL - lighting/camera

Ive added a light source to my JOGL project which seems to work quite well when the object is stationary, when I move the camera it gradually gets darker as it rotates, which is what id expect but as ...
2
votes
0answers
70 views

JOGL - Multiple textures

In my project im looking to use a few textures for different objects. At the minute I have the following code: private Texture[] textures = new Texture[1]; private int texture1 = 0; // Which Filter ...
1
vote
2answers
78 views

JOGL - translate GL_QUADS

In JOGL im trying to create a few 3D shapes using GL_QUADS (i.e. different components of a whole object) and so far its been fine to do this but I cant figure out how to translate the shape, there ...
0
votes
2answers
45 views

loading texture from folder

I'm having a problem loading a JPEG onto a sphere. Currently, the only way I have gotten this to work is to have the image in the same package as the class loading it. The problem is, I don't want to ...
2
votes
3answers
76 views

Casting from Object[] to String[] gives a ClassCastException

The getStrings() method is giving me a ClassCastException. Can anyone tell me how I should get the model? Thanks! public class HW3model extends DefaultListModel<String> { public ...
-1
votes
1answer
36 views

stopping anti-aliasing of textures in JOGL

I'm fairly new to JOGL and i was trying to make all of my textures have antialiasing disabled. though for some reason it only works on a texture of the Letter 'S'. here are all of my classes: Main: ...
0
votes
1answer
97 views

Textures are black in JOGL using VAO

So far, I used the deprecated immediate mode rendering, and I'm trying to switch to VAO then VBO. 2D quads are normally rendered using VAO, but when I'm trying to attach a texture, it remains black. I ...
0
votes
1answer
52 views

Extracting screen cordinates in Open GL/Jogl

I'm currently creating a application in java and I'm using Jogl to render a 3d model. Have a few questions regarding getting data out of Jogl/openGL. After the model has finished drawing I want to ...
0
votes
1answer
108 views

Java mouse events are not captured by JOGL

I want to write a program by Java and Jogl. We have a Jframe and a GLJPanel which resides inside that frame. The program receives mouse events and when the user clicks on the frame it draws a point on ...
0
votes
0answers
76 views

JAVA UnsatisfiedLinkError with JOGL1.1.1a

As an IT student my professor gave me some work to do. It's about using JOGL1.1.1a (his code is really old...) in Eclipse. I'm trying to execute his classes but I still having this error I can't ...
0
votes
1answer
333 views

JOGL - moving the camera

Im building something in JOGL and im looking to make the camera move either through using the keyboard or mouse, it doesnt really matter, so long as the camera can pan around the object and possibly ...
3
votes
2answers
262 views

3d modelling loading , updating and rendering in java

i am new to java 3d. i have encountered a situation like , i want to load ready made developed 3d model of any object [as an example shoe] developed in 3d modeling software like 3d studio max or Maya ...
1
vote
1answer
127 views

JOGL Exception- Can't find gluegen- rt in java.library.path

Exception in thread "main" java.lang.UnsatisfiedLinkError: no gluegen-rt in java.library.path at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1860) at ...
1
vote
1answer
88 views

Data Format for glDrawPixels() in JOGL

I am now confused with the glDrawPixels() function. I know the function signature is like: gl.glDrawPixels(int width, int height, format, type, data); I not not sure how to make format-type-data be ...
0
votes
1answer
65 views

Rotate cylinder

I have drawn a wire cylinder in JOGL and I'm looking to make it stand up, at the minute its coming out of the screen if that makes sense? I've been messing around with the following code in order to ...

1 2 3 4 5 10