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?
