From f3da42db0b3c3f01c2f65471c99f1678990c3063 Mon Sep 17 00:00:00 2001 From: Thibaut Mattern Date: Sun, 14 Sep 2003 15:39:23 +0000 Subject: New files of the "new" goom version. CVS patchset: 5377 CVS date: 2003/09/14 15:39:23 --- src/post/goom/surface.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 src/post/goom/surface.c (limited to 'src/post/goom/surface.c') diff --git a/src/post/goom/surface.c b/src/post/goom/surface.c new file mode 100755 index 000000000..2a452564b --- /dev/null +++ b/src/post/goom/surface.c @@ -0,0 +1,18 @@ +#include "surface.h" +#include + +Surface * surface_new (int w, int h) { + Surface * s = (Surface*)malloc(sizeof(Surface)); + s->realstart = (int*)malloc(w*h*4 + 128); + s->buf = (int*)((int)s->realstart + 128 - (((int)s->realstart) % 128)); + s->size = w*h; + s->width = w; + s->height = h; + return s; +} + +void surface_delete (Surface **s) { + free ((*s)->realstart); + free (*s); + *s = NULL; +} -- cgit v1.2.3