comparison src/video/directfb/SDL_DirectFB_yuv.h @ 1895:c121d94672cb

SDL 1.2 is moving to a branch, and SDL 1.3 is becoming the head.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 10 Jul 2006 21:04:37 +0000
parents 51038e80ae59
children
comparison
equal deleted inserted replaced
1894:c69cee13dd76 1895:c121d94672cb
24 /* This is the DirectFB implementation of YUV video overlays */ 24 /* This is the DirectFB implementation of YUV video overlays */
25 25
26 #include "SDL_video.h" 26 #include "SDL_video.h"
27 #include "SDL_DirectFB_video.h" 27 #include "SDL_DirectFB_video.h"
28 28
29 extern SDL_Overlay *DirectFB_CreateYUVOverlay(_THIS, int width, int height, Uint32 format, SDL_Surface *display); 29 extern SDL_Overlay *DirectFB_CreateYUVOverlay(_THIS, int width, int height,
30 Uint32 format,
31 SDL_Surface * display);
30 32
31 extern int DirectFB_LockYUVOverlay(_THIS, SDL_Overlay *overlay); 33 extern int DirectFB_LockYUVOverlay(_THIS, SDL_Overlay * overlay);
32 34
33 extern void DirectFB_UnlockYUVOverlay(_THIS, SDL_Overlay *overlay); 35 extern void DirectFB_UnlockYUVOverlay(_THIS, SDL_Overlay * overlay);
34 36
35 extern int DirectFB_DisplayYUVOverlay(_THIS, SDL_Overlay *overlay, SDL_Rect *src, SDL_Rect *dst); 37 extern int DirectFB_DisplayYUVOverlay(_THIS, SDL_Overlay * overlay,
38 SDL_Rect * src, SDL_Rect * dst);
36 39
37 extern void DirectFB_FreeYUVOverlay(_THIS, SDL_Overlay *overlay); 40 extern void DirectFB_FreeYUVOverlay(_THIS, SDL_Overlay * overlay);
38 41 /* vi: set ts=4 sw=4 expandtab: */