target-i386: Fix eflags.TF/#DB handling of syscall/sysret insns
[qemu/ar7.git] / ui / sdl_zoom.h
blob39696ddb08224524bc2551548a158b387cf0f40b
1 /*
2 * SDL_zoom - surface scaling
3 *
4 * Copyright (c) 2009 Citrix Systems, Inc.
6 * Derived from: SDL_rotozoom, LGPL (c) A. Schiffler from the SDL_gfx library.
7 * Modifications by Stefano Stabellini.
9 * This work is licensed under the terms of the GNU GPL version 2.
10 * See the COPYING file in the top-level directory.
14 #ifndef SDL_ZOOM_H
15 #define SDL_ZOOM_H
17 #include <SDL.h>
19 #define SMOOTHING_OFF 0
20 #define SMOOTHING_ON 1
22 int sdl_zoom_blit(SDL_Surface *src_sfc, SDL_Surface *dst_sfc,
23 int smooth, SDL_Rect *src_rect);
25 #endif /* SDL_ZOOM_H */