Yes. Yes it is.qpHalcy0n wrote:The reason this happens is because on a resize, minimize, or mode switch, SDL *literally* makes an entirely new window, which is just stupendously silly.

Well instead of doing your hack my last resort is to use lists and have my 'LoadTexture()' function add a pointer to the texture in the list then have a 'ReloadTextures()' function to iterate through all the pointers reload and rebind each one. I have implemented that but am now getting a link error:
Code: Select all
video.obj : error LNK2019: unresolved external symbol __imp___CrtDbgReportW referenced in function "public: struct GLtexture2d * const & __thiscall std::list<struct GLtexture2d *,class std::allocator<struct GLtexture2d *> >::_Const_iterator<1>::operator*(void)const " (??D?$_Const_iterator@$00@?$list@PAUGLtexture2d@@V?$allocator@PAUGLtexture2d@@@std@@@std@@QBEABQAUGLtexture2d@@XZ)
However in regards to the hack I tried not using SDL_SetVideoMode but nothing happened...
The program was running but there wasn't a window. So yeah.