summaryrefslogtreecommitdiff
path: root/platform/haiku/haiku_gl_view.h
blob: f44b6d4325bd3c75356ec1e0ec06a735305e7e5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef HAIKU_GL_VIEW_H
#define HAIKU_GL_VIEW_H

#include <kernel/image.h> // needed for image_id
#include <GLView.h>

class HaikuGLView : public BGLView
{
public:
	HaikuGLView(BRect frame, uint32 type);
	virtual void AttachedToWindow(void);
	virtual void Draw(BRect updateRect);
};

#endif