TinyGL 0.4.1 for MinGW
GLView.cpp
Go to the documentation of this file.
1#include "GLView.h"
2#include <stdio.h>
3#include <interface/Bitmap.h>
4
5BLocker BGLView::locker;
6
7BGLView::BGLView(BRect rect, char *name,
8 ulong resizingMode, ulong mode,
9 ulong options)
10 : BView(rect, name, resizingMode, mode|B_FRAME_EVENTS|B_WILL_DRAW)
11{
12#ifdef __INTEL__
13 color_space cs = B_RGB16_LITTLE;
14#else
15 color_space cs = B_RGB16_BIG;
16#endif
17 this->bitmaps[0] = new BBitmap(rect, cs, false, true);
18 this->bitmaps[1] = new BBitmap(rect, cs, false, true);
19
20 this->currBitmap = 0;
21 int w = this->bitmaps[0]->BytesPerRow() / 2;
22 int h = rect.Height() + 1;
23 void *buffers[2];
24 buffers[0] = this->bitmaps[0]->Bits();
25 buffers[1] = this->bitmaps[1]->Bits();
26 this->context = ostgl_create_context(w, h, 16, buffers, 2);
27 ostgl_make_current(this->context, 0);
28}
29
31{
32 ostgl_delete_context(this->context);
33 delete this->bitmaps[0];
34 delete this->bitmaps[1];
35}
36
37void
39{
40 BGLView::locker.Lock();
41 ostgl_make_current(this->context, this->currBitmap);
42}
43
44void
46{
47 BGLView::locker.Unlock();
48}
49
50void
52{
53 if (Window()->Lock()) {
54 DrawBitmap(this->bitmaps[this->currBitmap]);
55 Window()->Unlock();
56 this->currBitmap ^= 1;
57 }
58}
59
60/*
61BView *
62BGLView::EmbeddedView()
63{
64 return NULL;
65}
66
67status_t
68BGLView::CopyPixelsOut(BPoint source, BBitmap *dest)
69{
70 assert(0);
71 return 0;
72}
73
74status_t
75BGLView::CopyPixelsIn(BBitmap *source, BPoint dest)
76{
77 assert(0);
78 return 0;
79}
80*/
81
82void
84{
85}
86
87void
88BGLView::Draw(BRect rect)
89{
90 //fprintf(stderr, "GLView::Draw()");
91 DrawBitmap(this->bitmaps[this->currBitmap^1], rect, rect);
92}
93
94void
96{
97}
98
99void
101{
102}
103
104void
106{
107}
108
109void
111{
112}
113
114void
115BGLView::FrameResized(float w, float h)
116{
117 delete this->bitmaps[0];
118 delete this->bitmaps[1];
119#ifdef __INTEL__
120 color_space cs = B_RGB16_LITTLE;
121#else
122 color_space cs = B_RGB16_BIG;
123#endif
124 this->bitmaps[0] = new BBitmap(BRect(0,0, w-1, h-1),
125 cs, false, true);
126 this->bitmaps[1] = new BBitmap(BRect(0,0, w-1, h-1),
127 cs, false, true);
128 int w2 = this->bitmaps[0]->BytesPerRow() / 2;
129 void *buffers[2];
130 buffers[0] = this->bitmaps[0]->Bits();
131 buffers[1] = this->bitmaps[1]->Bits();
132 ostgl_resize(this->context, w2, h, buffers);
133}
134
135/*
136status_t
137BGLView::Perform(perform_code d, void *arg)
138{
139
140}
141*/
142
143//
144// the rest are pass-through functions
145//
146
147status_t
148BGLView::Archive(BMessage *data, bool deep) const
149{
150 return BView::Archive(data, deep);
151}
152
153void
155{
156 BView::MessageReceived(msg);
157}
158
159void
161{
162 BView::SetResizingMode(mode);
163}
164
165void
167{
168 BView::Show();
169}
170
171void
173{
174 BView::Hide();
175}
176
177BHandler *
178BGLView::ResolveSpecifier(BMessage *msg, int32 index,
179 BMessage *specifier, int32 form,
180 const char *property)
181{
182 return BView::ResolveSpecifier(msg, index, specifier, form, property);
183}
184
185status_t
187{
188 return BView::GetSupportedSuites(data);
189}
190
191/*
192void
193BGLView::DirectConnected( direct_buffer_info *info )
194{
195 BView::DirectConnected(info);
196}
197*/
198
199/*
200void
201BGLView::EnableDirectMode( bool enabled )
202{
203 BView::EnableDirectMode(enabled);
204}
205*/
virtual void Hide()
Definition: GLView.cpp:172
BGLView(BRect rect, char *name, ulong resizingMode, ulong mode, ulong options)
Definition: GLView.cpp:7
virtual void DetachedFromWindow()
Definition: GLView.cpp:105
virtual status_t GetSupportedSuites(BMessage *data)
Definition: GLView.cpp:186
virtual status_t Archive(BMessage *data, bool deep=true) const
Definition: GLView.cpp:148
void SwapBuffers()
Definition: GLView.cpp:51
void UnlockGL()
Definition: GLView.cpp:45
void LockGL()
Definition: GLView.cpp:38
virtual void SetResizingMode(uint32 mode)
Definition: GLView.cpp:160
virtual void Draw(BRect updateRect)
Definition: GLView.cpp:88
virtual ~BGLView()
Definition: GLView.cpp:30
virtual void MessageReceived(BMessage *msg)
Definition: GLView.cpp:154
virtual void ErrorCallback(GLenum errorCode)
Definition: GLView.cpp:83
virtual void AllDetached()
Definition: GLView.cpp:110
virtual void AttachedToWindow()
Definition: GLView.cpp:95
virtual void Show()
Definition: GLView.cpp:166
virtual BHandler * ResolveSpecifier(BMessage *msg, int32 index, BMessage *specifier, int32 form, const char *property)
Definition: GLView.cpp:178
virtual void AllAttached()
Definition: GLView.cpp:100
virtual void FrameResized(float width, float height)
Definition: GLView.cpp:115
int GLenum
Definition: gl.h:662
void ostgl_resize(ostgl_context *context, const int xsize, const int ysize, void **framebuffers)
Definition: oscontext.c:75
void ostgl_make_current(ostgl_context *context, const int index)
Definition: oscontext.c:67
void ostgl_delete_context(ostgl_context *context)
Definition: oscontext.c:51
ostgl_context * ostgl_create_context(const int xsize, const int ysize, const int depth, void **framebuffers, const int numbuffers)
Definition: oscontext.c:11