Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm developing an OpenGL 2D game for Mac and I'm having a trouble with a texture.
It's the 7th texture I load since the game starts, and by the time I load it, the game already displays content and everything looks fine. When I load this texture, all the sprites that use it looks as white squares, and a previously loaded texture gets broken and now shows parts of the texture I just loaded.

Can it be possible that the new texture is being written over the space memory of another texture that I'm still using?
I have no Idea of how to debug this, so anything may help.

EDIT: The thing is this code was already working on iphone. Now I'm porting it to mac and I'm seeing this issue. The code is really big and I wouldn't know what to post here. I think I'm binding the correct texture because that was the first thing I've checked and at the moment of binding that texture the glname is 7.

EDIT 2: Well, It may be a memory problem since I've crashed my mac 3 times now (!?). At startup after the crash, this is a part of the report:

0x6c8f3e98 : 0x210a3e (0xec98600 0x0 0x104e95b0 0x104e9b60) 
0x6c8f3ef8 : 0x216ca1 (0xec98600 0x0 0x0 0x0) 
0x6c8f3f78 : 0x295168 (0x96687e8 0x0 0x0 0x0) 
0x6c8f3fc8 : 0x2a149d (0x96687e4 0x0 0x10 0x96687e4) 
      Kernel Extensions in backtrace (with dependencies):
         com.apple.GeForce(6.2.6)@0xc55000->0xd0afff
            dependency: com.apple.NVDAResman(6.2.6)@0x967000
            dependency: com.apple.iokit.IONDRVSupport(2.2)@0x95a000
            dependency: com.apple.iokit.IOPCIFamily(2.6)@0x927000
            dependency: com.apple.iokit.IOGraphicsFamily(2.2)@0x938000

BSD process name corresponding to current thread: words-osx

So I guess is something related to OpenGL because it crashes in the GeForce driver if I get it right.
If it's a memory problem, how can I debug it?

enter image description here

share|improve this question
Sure sounds like a memory issue--you're not drawing from the back buffer are you? – Matt Phillips Apr 9 '11 at 4:05
Could you show some code? You might have issues with binding the correct textures and/or setting the correct texture coordinates. I doubt it's a memory issue unless you are doing something completely strange. – Thomas Apr 9 '11 at 6:33
@Thomas, I'll add the response to the question as I think might be useful for others. – Damian Apr 9 '11 at 13:47
you should post the code that you use to specify the new texture (image loading code and the call to glTexImage2D() or whatever). – the swine Feb 13 '12 at 13:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.