Tagged Questions
0
votes
1answer
32 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
90 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
98 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
85 views
Can't get PNG transparency to work in JOGL
I'm trying to write text using transparent png's in jogl, but I can't for the life of me figure out how to make it work. I've been everywhere on the internet, but proper documentation for JOGL is ...
1
vote
2answers
166 views
What is the correct way to map a texture on a sphere?
I'm having problems with the correct mapping of a sphere. I used a world-map to show where it goes wrong. North America appears on the front from top to bottom, while South America is on the other ...
1
vote
1answer
170 views
How do I wrap a texture around a sphere?
I created a class with a method drawSphere to replace glutDrawSolidSphere. See code below.
But I wonder, how do I wrap a texture around it without tiling? For example, if I want to draw a mouth, eyes ...
1
vote
1answer
128 views
White box in JOGL scene with orthographic projection
I am using a recent version of JOGL 2.0
My scene is set up with Orthographic projection and I am trying to add a texture to bottom of the scene. The texture is a 1600 x 100 PNG file.
If I use a 1000 ...
0
votes
1answer
83 views
Error loading texture from file in Java
I wrote some code to load textures from files. It works nicely on windows machines, but once I sent it home to work on OSX, it keeps crashing. This is a simple bit of code:
String path = ...
0
votes
1answer
1k views
Basic Texture drawing with JOGL, using a Texture object
I'm trying to give the user of my application the ability to load an image of their choice to make the background. Loading the image via Java is no problem, but I can't get the image into a ...
1
vote
1answer
203 views
OpenGL JOGL texture outline
I'm drawing some points in OpenGL (JOGL) as follows:
BufferedImage image = loadMyTextureImage();
Texture tex = TextureIO.newTexture(image, false);
tex.setTexParameteri(GL.GL_TEXTURE_MIN_FILTER, ...
2
votes
1answer
490 views
JOGL texture not working
I'm trying to fill a torus texture of wood, but leaves only one color:
The image is 128x128 png. What am I doing wrong?
public void init(GLAutoDrawable drawable) {
gl = ...
0
votes
3answers
422 views
Jogl - Picture won't load on texture mapping procedure? (JAVA)
Can anybody see what's wrong?
I am trying to load an image on a QUAD shape and display it on a frame. When I run it, there is nothing to be shown, neither the quad, nor the image.
The program code ...
2
votes
3answers
1k views
OpenGL texture colors are wrong
I've made a simple program that cretes an Ortho perspective, and puts a texture containing a png on a quad
However, I can't figure out why some of the colors are displayed all jumbled.
The png looks ...
-1
votes
2answers
172 views
JOGL: Strange behaviour with color material for an obj model
For a project with a 3d model I was given an Autocad file. I imported the file in 3ds max and exported it as .obj file. So far so good.
But when I load this file into my Jogl application, I have a ...
2
votes
0answers
364 views
JOGL shimmering / texture flickering problem
i got a problem with my textures in a JOGL program.
the textures i draw onto a cube which is taken from a displaylist are flickering.
here is a video which shows the problem:
...
1
vote
1answer
333 views
JOGL: some GL constants can not be resolved
i've written a java program with JOGL included.
Everything worked fine, until i wanted to render an image (jpg,gif,png) with a texture.
i found following code snippet:
import javax.media.opengl.*;
...
1
vote
1answer
547 views
When using textures in a JOGL application, ati graphics cards all eventually crash
I have an application written in Java with JOGL that works fine on nvidia cards, but when I run it on an ati card, it works perfect until I add textures on 1 or more faces. Eventually, the java vm ...
3
votes
1answer
1k views
OpenGL Framebuffer Render to Texture not Working
I'm experimenting with framebuffers to create a glow effect using Java and JOGL, but I am having problems. At the moment, my goal is to render my spaceship model, textured with an illumination ...
0
votes
1answer
633 views
JOGL mipmaps and texture shimmering
I've a wall and a brick texture in my OpenGL 2 scene that keeps shimmering and flashing no matter what I set. When I'm zoomed in close (and can see clearly the texture), then the flashing and ...
0
votes
2answers
597 views
Texturing Quadrics in JOGL
I can't manage to texture a glu Quadric (gluSphere):
What i get instead of the texture, is an average color of the texture.
gl.glEnable(GL.GL_DEPTH_TEST);
gl.glEnable(GL.GL_BLEND);
...
3
votes
2answers
3k views
JOGL white texture?
I am trying to load earth.png and place it over a triangle. The image is 256x256. I have followed an online tutorial and played around with this for hours, but the triangle still remains white. Can ...
2
votes
1answer
929 views
Creating a JOGL texture from a BufferedImage
In previous versions of JOGL, I could create a Texture from a BufferedImage using the following handy function:
public static Texture makeTextureFromBufferedImage(BufferedImage b) {
return ...
1
vote
3answers
4k views
Texture loading at joGL
I've been trying to load a bmp picture to use it as a texture at my program I've used a IOstream Class to extend DataInputStream to read the pixels at the photo with this code "based on a texture ...