EDIT

Ok I added some changes to my texture rendering, and I'm now at a point that it doesn't look how I want it but before I try to change anything I just want to be sure I'm on the right path. The problem I'm trying to fix is: I have 180000 vertices. Each of them can be from one of 190 "classes". Each class can have a different color assigned at a different time. So I'm trying to create a texture with 190 colors, and for each of the 180000 vertexes have a textureCoord to the coresponding class. So for some code:

    self.bufferTextureIndex = glGenBuffersARB(1)
    glBindBufferARB(GL_ARRAY_BUFFER_ARB, self.bufferTextureIndex)
    glBufferDataARB(GL_ARRAY_BUFFER_ARB, ADT.arrayByteCount(textureIndexes), ADT.voidDataPointer(textureIndexes), GL_STATIC_DRAW_ARB)               

    self.texture = glGenTextures(1)
    glBindTexture(GL_TEXTURE_1D, self.texture)
    glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MAG_FILTER, GL_NEAREST)
    glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MIN_FILTER, GL_NEAREST)
    glTexImage1D(GL_TEXTURE_1D, 0, GL_RGB, 190, 0, GL_RGB , GL_FLOAT, textureArray)

So textureIndexes is an array of floats from [0..1]. len(textureIndexes) is the number of vertices I'm using (180000). For the texture, textureArray contains 190 * 3 floats coresponding to the RBG of the colors I want for each class.

The drawing part:

    glEnableClientState(GL_TEXTURE_COORD_ARRAY)
    glBindBufferARB(GL_ARRAY_BUFFER_ARB, self.bufferTextureIndex)
    glTexCoordPointer(1, GL_FLOAT, 0, None);
    glBindTexture(GL_TEXTURE_1D, self.texture)
    glEnable(GL_TEXTURE_1D)       
    if type == GL_POINTS:
        glDrawArrays( GL_POINTS, 0, len(self.vertices) / 3 ); 
    else: 
        glDrawElements(GL_TRIANGLES, len(self.triangles) , GL_UNSIGNED_SHORT, ADT.voidDataPointer(self.triangles))

So does this approach seem right ? The result isn't what I'm expecting but that might be for the color codification I chose and I cam further look on that if the main approach is a good one. I think that most likely the indexes are build wrong. To build them I have a file with a number between 0 and 190 corresponding to the class for each index. So my index building so far was just read index then index / 190 for each vertex to get a number in [0..1]

EDIT2 So I took your advice, did the index + 0.5 / 190 to generate my indexes. I'm printing the length and values of the indice array. It's 60000 and all are numbers between 0 and 1 , mostly between 0.3 and 0.95. But still all my vertices are of the same color. So the only thing I haven't checked is the 1D Texture generation. Maybe here is where I got it wrong:

    i = 0
    while i < 30:
        textureArray.append([1,0,0])
        i = i + 1
    while i < 60:
        textureArray.append([1,1,0])
        i = i + 1
    while i < 90:
        textureArray.append([1,1,1])
        i = i + 1
    while i < 120:
        textureArray.append([0,1,1])
        i = i + 1
    while i < 150:
        textureArray.append([0,0,1])
        i = i + 1
    while i < 190:
        i = i + 1 
        textureArray.append([0,0,0])

This is how I generate my texture array. This will not be the actual solution but for testing reasons. So my texture should be 1/6 red - 1/6 ... . The texture generation as above:

    self.texture = glGenTextures(1)
    glBindTexture(GL_TEXTURE_1D, self.texture)
    glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_WRAP_S, GL_REPEAT)
    glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_WRAP_T, GL_REPEAT)
    glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MAG_FILTER, GL_NEAREST)
    glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MIN_FILTER, GL_NEAREST)
    glTexImage1D(GL_TEXTURE_1D, 0, GL_RGB, 190, 0, GL_RGB , GL_FLOAT, textureArray)

Is this texture generating correct ? Because even though my indices range is like I mentioned before, all my vertices have the color of the very first color from the texture. Funny thing is that if I "omit" the glBindBufferARB(GL_ARRAY_BUFFER_ARB, self.bufferTextureIndex) form the drawing and let the normals take the place of the texture indices I do get some different colors, but textureIndexes seem to all point to the very first color from my texture. I've uploaded two sample files with the actual values of textureIndices and normals. No ideea why the first one doesn't work but the second seems to work(can't really verify if they are the correct colors but at least they are different). http://www.megafileupload.com/en/file/315895/textureIndices-txt.html http://www.megafileupload.com/en/file/315894/normalsTest-txt.html

EDIT3

So now my indices seems to work. Here is a sample image:

http://i.stack.imgur.com/yvlV3.png

However the odd part is that as you can see the borders are not defined properly. Could this be influenced in any way by some of the parameters I pass to the texture or should I triple check my textureIndex creation ?

link|improve this question

By the way, it should be i < 190 instead of 191. – Christian Rau Jun 8 '11 at 10:30
Thanks, edited. Is there any way to calculate which index should point to what color ? I mean something like: 0 - 29 = red so 0.5 / 190 - 29.5 / 190 = [2.631e-3, 0.1552 ] ? Is this correct ? If so how many decimals are considered ? – Bogdan Jun 8 '11 at 10:57
Remember that the computer doesn't know decimals. The precision of the texCoords should be sufficient. You also got nearest filtering, so it isn't that important to exactly hit the texel center. – Christian Rau Jun 8 '11 at 11:08
Thanks a lot. Got it working almost perfectly. There is still one issue that I can't get around. Will update post shortly. – Bogdan Jun 8 '11 at 12:00
Updated my answer. – Christian Rau Jun 8 '11 at 21:34
feedback

1 Answer

up vote 1 down vote accepted
  1. At the moment you use your normals as texture coordinates, because self.bufferNormals was bound when calling glTexCoordPointer. 1D textures aren't just per vertex colors. they are accessed by per-vertex texture coordinates, like 2D textures, otherwise they would be a useless substitute for per-vertex colors. Read some introductory material on OpenGL texturing or texturing in general if you don't uderstand that.

  2. As said above, definitely not.

EDIT: According to you newest question (the one with the screenshot), keep in mind, that when the vertices of a single triangle have different texture coordinates (in your case they would belong to different classes, which I suppose shouldn't happen), the texCoords are interpolated accross the triangle and then used to get the texture color. So you have to make sure all vertices of a triangle have the same texCoord if you don't want this to happen (which I suppose). So you have to duplicate vertices along the "material class" borders. Perhaps you could get a quick and dirty solution by just setting glShadeModel(GL_FLAT), but that would also flatten lighting and it is not determined to which class a border triangle belongs then.

link|improve this answer
Well it didn't seem right to me either :D. But I still don't understand why I do get only black,red,blue and green points just like I defined in my texture. My normals are really fuzzy data like x.xxx x.xxx x.xxx so I should be getting all kinds of colors shouldn't I ? – Bogdan May 31 '11 at 14:04
Oh I think I understand what I was misunderstanding. So in my code I defined a texture having black,red,blue and green. Now to know what color is assigned to each point I need to define an coordinate in my texture for each vertex right ? But if so, shouldn't these coordinates in my case be 0=black, 1=blue, 2=green, 3=red ? Why does it work with x.xxx values it takes from self.bufferNormals? – Bogdan May 31 '11 at 14:31
@Bogdan No, the texture coordinates should be between 0 (black) and 1 (red), but it depends also on the wrapping mode (GL_TEXTURE_WRAP_S) as it is GL_REAPEAT in your case, texCoord 0 is actually the same as 1, 2, ..., they are just taken modulo 1 (therefore only the fraction part matters). Remember 1D textures exactly behave like 2D textures, just 1 dimension less to take care of. – Christian Rau May 31 '11 at 15:21
But you're right, the behaviour of your normals being treated as texture coordinates (between -1 and 1) should with your current filtering GL_LINEAR really result in quite blended colors. But I don't know what happens if your texture coordinate array is much smaller (only 4 vertices) than the number of vertices you draw. This should result in an error or at least undefined behaviour. – Christian Rau May 31 '11 at 15:26
Hey, I changes my previous solution. Am I on the right track ? – Bogdan Jun 1 '11 at 10:43
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.