MythTV  master
surface.h
Go to the documentation of this file.
1 #ifndef _SURFACE_H
2 #define _SURFACE_H
3 
4 struct Surface {
5  int * buf;
6  int width;
7  int height;
8  int size;
9 
10  int * realstart;
11 };
12 
13 Surface * surface_new (int w, int h) ;
14 void surface_delete (Surface **s) ;
15 
16 #endif
Surface::height
int height
Definition: surface.h:7
Surface::width
int width
Definition: surface.h:6
Surface
Definition: surface.h:4
Surface::size
int size
Definition: surface.h:8
surface_delete
void surface_delete(Surface **s)
Definition: surface.cpp:15
surface_new
Surface * surface_new(int w, int h)
Definition: surface.cpp:5
Surface::buf
int * buf
Definition: surface.h:5
Surface::realstart
int * realstart
Definition: surface.h:10