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 (406)
games submitted by our members
Games in WIP (293)
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  
  A bug in Wiki-LWJGL tutorial?  (Read 2250 times)
0 Members and 1 Guest are viewing this topic.
Offline preshel

Senior Newbie





« Posted 2007-02-26 23:52:16 »

Hi,

I've checked out the speedy VBO in
http://lwjgl.org/wiki/doku.php/lwjgl/tutorials/opengl/speedyvbo#interleaving_a_vbo

and I've notived that:
 
1  
2  
// texture coordinates offset = (3 + 3 + 2) * 4;
GL11.glTexCoordPointer(2, GL_FLOAT, stride, offset);


Looks a little bit strange... shouldn't it be offset = (3 + 3 + 4) * 4 instead?

Anyway, i've solved my bug problems... it was all due to an unupdated driver of my laptop, and apperantly, now i DO have VBO supported... yey!
Offline darkprophet

Senior Member




Go Go Gadget Arms


« Reply #1 - Posted 2007-02-27 00:49:11 »

I wrote that tutorial, im glad it helped.

Lets regard each "component" as a unit. So the x component of the vertex is 1 unit. That means each vertex has 3 units, each normal has 3 units and 2d texture coordinates have 2 units (remember its just ST coordinates). Thats the reason behind the 3 + 3 + 2 offset. The * 4 is to change that to be in terms of bytes.

DP Smiley


Friends don't let friends make MMORPGs.

Blog | Volatile-Engine
Offline preshel

Senior Newbie





« Reply #2 - Posted 2007-02-27 12:03:05 »

yes, i understand what the x4 means, but if u decided that the interleaved structure is like this:
V[xyz]N[xyz]C[rgba]T1[st]

then the offset for the starting of the texture should be (3+3+4)*4 and not (3+3+2)*4, since the color have rgba channels = 4 channel..., and it comes before the texture channels...

btw - i already implemented it, and its 3+3+4.
please check ur tutorial again (it really helped me, though !).
Games published by our own members! Check 'em out!
Try the Free Demo of Revenge of the Titans
Offline darkprophet

Senior Member




Go Go Gadget Arms


« Reply #3 - Posted 2007-02-27 12:51:43 »

no, since the offset for vertices is 0 not 3

And Ive implemented the 3+3+2 successfully in a game engine a very long while back

DP

Friends don't let friends make MMORPGs.

Blog | Volatile-Engine
Offline preshel

Senior Newbie





« Reply #4 - Posted 2007-03-01 12:20:05 »

sorry, but i insist Smiley

the structure should be
V[3*4byte]N[3*4byte]C[4*4byte]T1[2*byte]

so if i need the texture (s,t) , i need to do :
1  
2  
intlvdarr[4*(3+3+4)+0] = texture_s;
intlvdarr[4*(3+3+4)+1] = texture_t;


the texture offset WOULD be 3+3+2 for the following structure:
V[3*4byte]N[3*4byte]T1[2*byte]C[4*4byte]

please check it again Wink thanks.

Offline preshel

Senior Newbie





« Reply #5 - Posted 2007-03-01 12:20:59 »

sorry, it would be 4*(3+3).

in any case it should not be (3+3+2) ....
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 (70 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (180 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.1 seconds with 21 queries.