summaryrefslogtreecommitdiff
path: root/src/post/goom/surface.h
diff options
context:
space:
mode:
authorThibaut Mattern <tmattern@users.sourceforge.net>2003-09-14 15:39:23 +0000
committerThibaut Mattern <tmattern@users.sourceforge.net>2003-09-14 15:39:23 +0000
commitf3da42db0b3c3f01c2f65471c99f1678990c3063 (patch)
treeaa58468cad366b90b6d25f1d1eb7ac101af5f864 /src/post/goom/surface.h
parentf60312c6034431a59f0ef1bfb6a9b41f1c2eac99 (diff)
downloadxine-lib-f3da42db0b3c3f01c2f65471c99f1678990c3063.tar.gz
xine-lib-f3da42db0b3c3f01c2f65471c99f1678990c3063.tar.bz2
New files of the "new" goom version.
CVS patchset: 5377 CVS date: 2003/09/14 15:39:23
Diffstat (limited to 'src/post/goom/surface.h')
-rwxr-xr-xsrc/post/goom/surface.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/post/goom/surface.h b/src/post/goom/surface.h
new file mode 100755
index 000000000..61c73d19a
--- /dev/null
+++ b/src/post/goom/surface.h
@@ -0,0 +1,16 @@
+#ifndef _SURFACE_H
+#define _SURFACE_H
+
+typedef struct {
+ int * buf;
+ int width;
+ int height;
+ int size;
+
+ int * realstart;
+} Surface;
+
+Surface * surface_new (int w, int h) ;
+void surface_delete (Surface **s) ;
+
+#endif