Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (404)
games submitted by our members
Games in WIP (289)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Creating a JOGL Texture object from the contents of a FBO.  (Read 1390 times)
0 Members and 1 Guest are viewing this topic.
Offline Rejechted

Senior Member


Medals: 1
Projects: 1


Just a guy making some indie games :D


« Posted 2011-11-17 18:22:57 »

Hello,

We are using a FBO to draw our minimap and would like to obtain a JOGL texture object from it.  Currently the only way I know of for creating JOGL textures is this line in our texture loader:

TextureIO.newTexture(url, false, "png");

Where url is a URL object to the resource.

If we have a JOGL FBO, what steps can we take to obtain a com.jogamp.opengl.util.texture.Texture?

EDIT: A quick Google turned up this.  Any caveats to using this method?
1  
2  
TextureIO.newTexture(int target)
//Creates an OpenGL texture object associated with the given OpenGL texture target.

Blog for our project (Codenamed Lead Crystal): http://silvergoblet.tumblr.com
Offline lhkbob

JGO Knight


Medals: 32



« Reply #1 - Posted 2011-11-17 18:39:33 »

I think that might only create the texture id for the texture, but will not allocate any image data for (i.e. with a call to glTexImage2D()).  You need to have image data before you can attach the texture to an FBO to specify the width, height, and format of the texture.

Offline Rejechted

Senior Member


Medals: 1
Projects: 1


Just a guy making some indie games :D


« Reply #2 - Posted 2011-11-18 18:14:01 »

Yeah, the above didn't work.  Is there some way to obtain a TextureData by using glReadPixels?

Blog for our project (Codenamed Lead Crystal): http://silvergoblet.tumblr.com
Games published by our own members! Check 'em out!
Try the Free Demo of Droid Assault
Offline lhkbob

JGO Knight


Medals: 32



« Reply #3 - Posted 2011-11-18 18:32:52 »

What exactly didn't work?  It should work if you allocated image data of the correct dimensions and attached it to the FBO properly.

Alternatively, if you've already created the FBO (with attached textures) you can wrap the OpenGL texture id with a Texture instance by calling:
1  
2  
newTexture(int textureID, int target, int texWidth, int texHeight, int imgWidth, int imgHeight, boolean mustFlipVertically);
//Wraps an OpenGL texture ID from an external library and allows some of the base methods from the Texture class, such as binding and querying of texture coordinates, to be used with it.


There might be a problem with your FBO setup, could you post that code?

Offline theagentd
« Reply #4 - Posted 2011-11-18 18:45:31 »

The following code is for LWJGL, but the OpenGL commands should be exactly the same except for the GL11 part.
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
//Let OpenGL give us an ID.
IntBuffer id = BufferUtils.createIntBuffer(1);
GL11.glGenTextures(id);
int textureID = id.get();
GL11.glBindTexture(textureID);

//Setup parameters
GL11.glTexParameteri(id, GL11.GL_TEXTURE_MIN_FILTER, minFilter);
GL11.glTexParameteri(id, GL11.GL_TEXTURE_MAG_FILTER, magFilter);
... //Clamping, e.t.c.

//Allocate a texture. THIS TEXTURE WILL HAVE RANDOM DATA A LA C++ ALLOCATION.
//Be sure to glClear your FBO before using it (like you normally would when rendering to anything)!!!
GL11.glTexImage2D(GL11.GL_TEXTURE_2D, 0, GL11.GL_RGB, width, height, 0, GL11.GL_RGB, GL11.GL_UNSIGNED_BYTE, (ByteBuffer)null);

//You now have an allocated texture accessable using textureID. Wrap it in the method Ihkbob submitted or something.
return whereverThisMethodIs.newTexture(textureID, width, height, width, height, true); //Flip might be a good idea

Myomyomyo.
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Browse for soundtracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (34 views)
2013-05-17 21:29:12

alaslipknot (42 views)
2013-05-16 21:24:48

gouessej (72 views)
2013-05-16 00:53:38

gouessej (71 views)
2013-05-16 00:17:58

theagentd (79 views)
2013-05-15 15:01:13

theagentd (74 views)
2013-05-15 15:00:54

StreetDoggy (116 views)
2013-05-14 15:56:26

kutucuk (140 views)
2013-05-12 17:10:36

kutucuk (140 views)
2013-05-12 15:36:09

UnluckyDevil (149 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.149 seconds with 22 queries.