Having trouble initializing an SDL_Surface - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T08:39:46Zhttp://stackoverflow.com/feeds/question/508844http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/508844/having-trouble-initializing-an-sdlsurface1Having trouble initializing an SDL_SurfaceWilliam2009-02-03T20:47:20Z2009-10-03T12:22:01Z
<p>I'm trying to set up something in SDL [in C++] where I can draw a one pixel big rectangle. I've got everything in my code working except my second SDL_Surface called rectangle. I'm having trouble initializing it. Here's the line where I try to initialize it:</p>
<pre><code>rectangle = SDL_Surface(SDL_DOUBLEBUF | SDL_HWACCEL |
SDL_SRCALPHA | SDL_HWSURFACE,
screen->format, 1, 1, 16, NULL, clip_rect, 1);
</code></pre>
<p>Thank you for taking the time to read this and any answers you might choose to give.</p>
http://stackoverflow.com/questions/508844/having-trouble-initializing-an-sdlsurface/508891#5088913Answer by Jeff M for Having trouble initializing an SDL_SurfaceJeff M2009-02-03T21:04:10Z2009-02-03T21:04:10Z<p>I think that the main problem you are having is that there is no <code>SDL_Surface</code> function. To create a new surface, use <a href="http://www.libsdl.org/cgi/docwiki.cgi/SDL_CreateRGBSurface" rel="nofollow"><code>SDL_CreateRGBSurface</code></a>. Be sure to call <code>SDL_FreeSurface</code> on the returned surface after you are done with it or you will leak memory.</p>
<p>Additionally, I am not sure why you are creating a surface for the rectangle. A cleaner way of drawing a solid-color rectangle is <a href="http://www.libsdl.org/cgi/docwiki.cgi/SDL_FillRect" rel="nofollow"><code>SDL_FillRect</code></a> without creating a new surface.</p>