Hi!
I took it upon myself to finally start migrating from SDL to OpenGl in my project today. So far I've managed to (in isolated code) translate an SDL_Surface to an OpenGl texture which i then use to apply on polygons.
In my previous rendering method i used a lot of clips. Meaning I've got one image with maybe 3-5 images on it which i then clip before i render to get the desired image to show. I've managed to translate this over to OpenGl as well but it takes a bit of work and i need to know the loaded image dimensions before i do.
Just to clarify how the rendering process works now, so you get a better scope of my problem:
1. Loads image to an SDL_Surface
2. Saves it to an array
3. Something fetches the image memory location from the array
4. Converts the SDL_Surface to a OpenGl texture
5. Clips the texture
6. Renders it to QUADS
7. Destroys the texture
My Convert code is basically the same as this one here: http://content.gpwiki.org/index.php/SDL:Tutorials:Using_SDL_with_OpenGL
Question time:
1. I've noticed a sudden drop of FPS since the tryout change (only the tiles are being rendered at the moment since haven't made it global yet). The drop if from 400+ FPS to around 60 FPS after i use glDeleteTextures(); on the texture I've just drawn. Why is this? I suspect it's the conversion that drains the fps.
2. If it is the conversion that drains the FPS, then it is smarter to convert the image once just as it loads and save the texture in the array instead of the surface? Sounds like it... ![]()
3. Is there any reason for me to save the image as a SDL_Surface instead of loading it from OpenGL directly? Can i do that?
4. If there is no reason at all for me to involve SDL in the rendering process then how to i keep track of the loaded image width and height? Right now i use surface->w/surface->h. Is there similar ways in OpenGl?
I think that's all! Thanks for your time, i really appreciate answers!
// Tallkotten

Find content
Male