Mercurial > sdl-ios-xcode
diff src/video/cybergfx/SDL_cgxyuv.c @ 1336:3692456e7b0f
Use SDL_ prefixed versions of C library functions.
FIXME:
Change #include <stdlib.h> to #include "SDL_stdlib.h"
Change #include <string.h> to #include "SDL_string.h"
Make sure nothing else broke because of this...
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 07 Feb 2006 06:59:48 +0000 |
parents | c9b51268668f |
children | 604d73db6802 |
line wrap: on
line diff
--- a/src/video/cybergfx/SDL_cgxyuv.c Mon Feb 06 17:28:04 2006 +0000 +++ b/src/video/cybergfx/SDL_cgxyuv.c Tue Feb 07 06:59:48 2006 +0000 @@ -89,12 +89,12 @@ } /* Create the overlay structure */ - overlay = (SDL_Overlay *)malloc(sizeof *overlay); + overlay = (SDL_Overlay *)SDL_malloc(sizeof *overlay); if ( overlay == NULL ) { SDL_OutOfMemory(); return(NULL); } - memset(overlay, 0, (sizeof *overlay)); + SDL_memset(overlay, 0, (sizeof *overlay)); /* Fill in the basic members */ overlay->format = format; @@ -105,7 +105,7 @@ overlay->hwfuncs = &x11_yuvfuncs; /* Create the pixel data and lookup tables */ - hwdata = (struct private_yuvhwdata *)malloc(sizeof *hwdata); + hwdata = (struct private_yuvhwdata *)SDL_malloc(sizeof *hwdata); overlay->hwdata = hwdata; if ( hwdata == NULL ) { SDL_OutOfMemory(); @@ -113,7 +113,7 @@ return(NULL); } yuvshm = &hwdata->yuvshm; - memset(yuvshm, 0, sizeof(*yuvshm)); + SDL_memset(yuvshm, 0, sizeof(*yuvshm)); hwdata->port = xv_port; hwdata->image = XvShmCreateImage(GFX_Display, xv_port, format, 0, width, height, yuvshm); @@ -179,7 +179,7 @@ if ( hwdata->image ) { XFree(hwdata->image); } - free(hwdata); + SDL_free(hwdata); } }