3#include <interface/Bitmap.h>
5BLocker BGLView::locker;
8 ulong resizingMode, ulong mode,
10 : BView(rect, name, resizingMode, mode|B_FRAME_EVENTS|B_WILL_DRAW)
13 color_space cs = B_RGB16_LITTLE;
15 color_space cs = B_RGB16_BIG;
17 this->bitmaps[0] =
new BBitmap(rect, cs,
false,
true);
18 this->bitmaps[1] =
new BBitmap(rect, cs,
false,
true);
21 int w = this->bitmaps[0]->BytesPerRow() / 2;
22 int h = rect.Height() + 1;
24 buffers[0] = this->bitmaps[0]->Bits();
25 buffers[1] = this->bitmaps[1]->Bits();
33 delete this->bitmaps[0];
34 delete this->bitmaps[1];
40 BGLView::locker.Lock();
47 BGLView::locker.Unlock();
53 if (Window()->Lock()) {
54 DrawBitmap(this->bitmaps[this->currBitmap]);
56 this->currBitmap ^= 1;
91 DrawBitmap(this->bitmaps[this->currBitmap^1], rect, rect);
117 delete this->bitmaps[0];
118 delete this->bitmaps[1];
120 color_space cs = B_RGB16_LITTLE;
122 color_space cs = B_RGB16_BIG;
124 this->bitmaps[0] =
new BBitmap(BRect(0,0, w-1, h-1),
126 this->bitmaps[1] =
new BBitmap(BRect(0,0, w-1, h-1),
128 int w2 = this->bitmaps[0]->BytesPerRow() / 2;
130 buffers[0] = this->bitmaps[0]->Bits();
131 buffers[1] = this->bitmaps[1]->Bits();
150 return BView::Archive(data, deep);
156 BView::MessageReceived(msg);
162 BView::SetResizingMode(mode);
179 BMessage *specifier, int32 form,
180 const char *property)
182 return BView::ResolveSpecifier(msg, index, specifier, form, property);
188 return BView::GetSupportedSuites(data);
BGLView(BRect rect, char *name, ulong resizingMode, ulong mode, ulong options)
virtual void DetachedFromWindow()
virtual status_t GetSupportedSuites(BMessage *data)
virtual status_t Archive(BMessage *data, bool deep=true) const
virtual void SetResizingMode(uint32 mode)
virtual void Draw(BRect updateRect)
virtual void MessageReceived(BMessage *msg)
virtual void ErrorCallback(GLenum errorCode)
virtual void AllDetached()
virtual void AttachedToWindow()
virtual BHandler * ResolveSpecifier(BMessage *msg, int32 index, BMessage *specifier, int32 form, const char *property)
virtual void AllAttached()
virtual void FrameResized(float width, float height)
void ostgl_resize(ostgl_context *context, const int xsize, const int ysize, void **framebuffers)
void ostgl_make_current(ostgl_context *context, const int index)
void ostgl_delete_context(ostgl_context *context)
ostgl_context * ostgl_create_context(const int xsize, const int ysize, const int depth, void **framebuffers, const int numbuffers)