Having trouble initializing an SDL_Surface - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T08:39:46Z http://stackoverflow.com/feeds/question/508844 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/508844/having-trouble-initializing-an-sdlsurface 1 Having trouble initializing an SDL_Surface William 2009-02-03T20:47:20Z 2009-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-&gt;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#508891 3 Answer by Jeff M for Having trouble initializing an SDL_Surface Jeff M 2009-02-03T21:04:10Z 2009-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>