cairo/test/cairo-test-beos.h

26 lines
547 B
C

#ifndef CAIRO_TEST_BEOS_H_
#define CAIRO_TEST_BEOS_H_
/* Two functions: One for a real window, one for a bitmap */
#include <cairo.h>
CAIRO_BEGIN_DECLS
extern cairo_surface_t *
create_beos_surface (cairo_test_t* test, cairo_content_t content,
void **closure);
extern void
cleanup_beos (void* closure);
extern cairo_surface_t *
create_beos_bitmap_surface (cairo_test_t* test, cairo_content_t content,
void **closure);
extern void
cleanup_beos_bitmap (void* closure);
CAIRO_END_DECLS
#endif