libc3: Deleted
[simavr] / examples / shared / libc3 / src / c3cairo.h
diff --git a/examples/shared/libc3/src/c3cairo.h b/examples/shared/libc3/src/c3cairo.h
deleted file mode 100644 (file)
index 04a53c8..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
-       c3cairo.h
-
-       Copyright 2008-2012 Michel Pollet <buserror@gmail.com>
-
-       This file is part of libc3.
-
-       libc3 is free software: you can redistribute it and/or modify
-       it under the terms of the GNU General Public License as published by
-       the Free Software Foundation, either version 3 of the License, or
-       (at your option) any later version.
-
-       libc3 is distributed in the hope that it will be useful,
-       but WITHOUT ANY WARRANTY; without even the implied warranty of
-       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-       GNU General Public License for more details.
-
-       You should have received a copy of the GNU General Public License
-       along with libc3.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-
-#ifndef __C3CAIRO_H___
-#define __C3CAIRO_H___
-
-#include "c3config.h"
-#include "c3texture.h"
-#include "c3pixels.h"
-
-#if CONFIG_C3_CAIRO
-#include <pango/pangocairo.h>
-
-typedef struct c3cairo_t {
-       c3texture_t     tex;
-       cairo_t *       cr;
-       cairo_surface_t * surface;
-} c3cairo_t, *c3cairo_p;
-
-c3cairo_p
-c3cairo_new(
-               struct c3object_t * parent /* = NULL */);
-
-c3cairo_p
-c3cairo_init(
-               c3cairo_p o,
-               struct c3object_t * parent /* = NULL */);
-
-c3cairo_p
-c3cairo_new_offscreen(
-               struct c3object_t * parent /* = NULL */,
-               int w, int h);
-
-#endif // CONFIG_C3_CAIRO
-
-#endif /* __C3CAIRO_H___ */