2015-06-11 19:57:41 +00:00
|
|
|
#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:
|
2015-06-16 18:52:24 +00:00
|
|
|
HaikuGLView(BRect frame, uint32 type);
|
|
|
|
virtual void AttachedToWindow(void);
|
|
|
|
virtual void Draw(BRect updateRect);
|
2015-06-11 19:57:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|