Prepare NSView/OpenGL Canvas (to speed up rendering on [mac]OS[X]
[ardour.git] / libs / canvas / canvas / nsglview.h
1 #ifndef __CANVAS_NSGLVIEW_H__
2 #define __CANVAS_NSGLVIEW_H__
3
4 #include <gdk/gdk.h>
5
6 namespace ArdourCanvas
7 {
8         class GtkCanvas;
9
10         void* nsglview_create (GtkCanvas*);
11         void  nsglview_overlay (void*, GdkWindow*);
12         void  nsglview_resize (void*, int x, int y, int w, int h);
13         void  nsglview_queue_draw (void*, int x, int y, int w, int h);
14 }
15 #endif