show/hide this revision's text 4 edited tags
show/hide this revision's text 3 code formatting

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:

rectangle = SDL_Surface(SDL_DOUBLEBUF | SDL_HWACCEL | 
                        SDL_SRCALPHA  | SDL_HWSURFACE,
                        screen->format, screen->format, 1, 1, 16, NULL, clip_rect, 1);

Thank you for taking the time to read this and any answers you might choose to give.

show/hide this revision's text 2 edited title

rectangle = SDL_Surface(SDL_DOUBLEBUF | SDL_HWACCEL | SDL_SRCALPHA | SDL_HWSURFACE, screen->format, 1, 1, 16, NULL, clip_rect, 1); Having trouble initializing an SDL_Surface

show/hide this revision's text 1