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