summaryrefslogtreecommitdiff
path: root/libcore/imagecreator.h
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2014-12-06 10:15:25 +0100
committerlouis <louis.braun@gmx.de>2014-12-06 10:15:25 +0100
commit997ab6c06c5cc06f2778a7a609a4268660ae4a51 (patch)
tree72d58f21af30170c65d269bc1f9d7c640b13dbe7 /libcore/imagecreator.h
parent974ca74366af7ab022c1fb79c4d36e1e0b4e4d14 (diff)
downloadvdr-plugin-skindesigner-997ab6c06c5cc06f2778a7a609a4268660ae4a51.tar.gz
vdr-plugin-skindesigner-997ab6c06c5cc06f2778a7a609a4268660ae4a51.tar.bz2
Revert "drawing ellipses antialiased with Cairo"
This reverts commit 7ce445025e10bf4eb0c4066907e588039c09f1ad.
Diffstat (limited to 'libcore/imagecreator.h')
-rw-r--r--libcore/imagecreator.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/libcore/imagecreator.h b/libcore/imagecreator.h
deleted file mode 100644
index b877a3f..0000000
--- a/libcore/imagecreator.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef __IMAGECREATOR_H
-#define __IMAGECREATOR_H
-
-#include <cairo.h>
-#include <vdr/osd.h>
-#include <string>
-#include <sstream>
-
-using namespace std;
-
-class cImageCreator {
-private:
- int width;
- int height;
- cairo_surface_t *surface;
- cairo_t *cr;
- void SetColor(tColor color);
-public:
- cImageCreator(void);
- virtual ~cImageCreator();
- bool InitCairoImage(int width, int height);
- void DrawEllipse(tColor color, int quadrants = 0);
- cImage *GetImage(void);
-};
-
-#endif //__IMAGECREATOR_H