Shows an image
[cascardo/movie.git] / movie.c
1 /*
2  *  Copyright (C) 2008  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19
20 #include <SDL.h>
21 #include <SDL_image.h>
22
23 int
24 main (int argc, char **argv)
25 {
26   SDL_Surface *image;
27   SDL_Surface *screen;
28   SDL_Event event;
29   SDL_Init (SDL_INIT_VIDEO | SDL_INIT_TIMER);
30   screen = SDL_SetVideoMode (800, 600, 32, SDL_HWSURFACE | SDL_DOUBLEBUF | SDL_FULLSCREEN);
31   image = IMG_Load ("/home/cascardo/fotos/debconf.jpg");
32   SDL_BlitSurface (image, NULL, screen, NULL);
33   SDL_UpdateRect (screen, 0, 0, 0, 0);
34   while (SDL_WaitEvent (&event))
35   {
36     if (event.type == SDL_KEYDOWN)
37       break;
38   }
39   SDL_FreeSurface (image);
40   SDL_Quit ();
41   return 0;
42 }