]> git.proxmox.com Git - mirror_qemu.git/blobdiff - ui/sdl_zoom.c
hw/ppc/spapr: Move code related to "ibm,pa-features" to a separate function
[mirror_qemu.git] / ui / sdl_zoom.c
index 122027cb365d53367ef02bc8552245a22d9eb481..b96196bac53452ceb2bcfa362f892347ec575fbd 100644 (file)
  *
  */
 
-#include "sdl_zoom.h"
 #include "qemu/osdep.h"
-#include <stdint.h>
-#include <stdio.h>
+#include "sdl_zoom.h"
 
-static int sdl_zoom_rgb16(SDL_Surface *src, SDL_Surface *dst, int smooth,
-                          SDL_Rect *dst_rect);
-static int sdl_zoom_rgb32(SDL_Surface *src, SDL_Surface *dst, int smooth,
-                          SDL_Rect *dst_rect);
+static void sdl_zoom_rgb16(SDL_Surface *src, SDL_Surface *dst, int smooth,
+                           SDL_Rect *dst_rect);
+static void sdl_zoom_rgb32(SDL_Surface *src, SDL_Surface *dst, int smooth,
+                           SDL_Rect *dst_rect);
 
 #define BPP 32
 #include  "sdl_zoom_template.h"