Temple of The Roguelike Forums
Development => Programming => Topic started by: reaver on July 22, 2014, 08:08:49 AM
-
Not sure if I'm missing something obvious, but I can't find any API whatsoever to help me with getting the pixels from a static texture, so that I can save them to file.
I can create a render target and copy the texture to the rendertarget, but then again I can't find any way to get the pitch which is needed to read the texture pixels. That's ludicrous! Never mind the fact that people have said that SDL_RenderReadPixels() has been buggy and only gets pixels from the window, even if you set the rendertarget to be a texture..
-
Maybe this will help: Stack Exchange - How do I access the pixels of an SDL 2 texture? (http://gamedev.stackexchange.com/questions/62705/how-do-i-access-the-pixels-of-an-sdl-2-texture)
-
Thanks, but nope :)
This solution requires the texture to be created as streaming and I do not want that.
-
I can't find any way to get the pitch which is needed to read the texture pixels.
A brief peek into SDL2 sources revealed that this pitch parameter tells SDL the width of a single line in your buffer, in bytes. SDL copies the data to your buffer line-by-line, incrementing the pointer by that value.
-
Ok, yeah, apparently the only sure way is copy to rendertarget and readpixels(), but readpixels() is broken and tries to use the backbuffer instead of the rendertarget. Awesome. Perhaps I need to ditch SDL2, if it can't do correctly something as basic as this.
UPDATE: ok, actually readpixels() works using the OpenGL driver instead of the default D3D9 one.
-
ok, actually readpixels() works using the OpenGL driver instead of the default D3D9 one.
Is this still true? I'm trying to save a piece of screen with SDL_RenderReadPixels, but it's crashing for some reason. In some cases saving the background is just a feature you need (if you have a window or menu pop on previous graphics).
-
Woow haven't used SDL for quite some time now. Didn't new there was 2.0.
-
Didn't new there was 2.0.
No, it's 2.0.4.