summaryrefslogtreecommitdiff
path: root/libs/canvas/canvas/nsglview.h
blob: e18a0f68abcef9d7f5b3e602a3e304f0bf253f01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __CANVAS_NSGLVIEW_H__
#define __CANVAS_NSGLVIEW_H__

#include <gdk/gdk.h>

namespace ArdourCanvas
{
	class GtkCanvas;

	void* nsglview_create (GtkCanvas*);
	void  nsglview_overlay (void*, GdkWindow*);
	void  nsglview_resize (void*, int x, int y, int w, int h);
	void  nsglview_queue_draw (void*, int x, int y, int w, int h);
}
#endif