mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-01 18:28:00 +02:00
26 lines
547 B
C
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
|