summaryrefslogtreecommitdiff
path: root/platform/haiku/haiku_gl_view.cpp
blob: 481d6098a755bb3aca1641bac3172e44c0a2305d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "main/main.h"
#include "haiku_gl_view.h"

HaikuGLView::HaikuGLView(BRect frame, uint32 type)
   : BGLView(frame, "GodotGLView", B_FOLLOW_ALL_SIDES, 0, type)
{
}

void HaikuGLView::AttachedToWindow(void) {
	LockGL();
	BGLView::AttachedToWindow();
	UnlockGL();
	MakeFocus();
}

void HaikuGLView::Draw(BRect updateRect) {
	Main::force_redraw();
}