0022779: Pixel format should be chosen to support stencil buffer
[occt.git] / src / OpenGl / OpenGl_GraphicDriver_7.cxx
CommitLineData
b311480e 1// Created on: 2011-10-20
2// Created by: Sergey ZERCHANINOV
3// Copyright (c) 2011-2012 OPEN CASCADE SAS
4//
5// The content of this file is subject to the Open CASCADE Technology Public
6// License Version 6.5 (the "License"). You may not use the content of this file
7// except in compliance with the License. Please obtain a copy of the License
8// at http://www.opencascade.org and read it completely before using this file.
9//
10// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
11// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
12//
13// The Original Code and all software distributed under the License is
14// distributed on an "AS IS" basis, without warranty of any kind, and the
15// Initial Developer hereby disclaims all such warranties, including without
16// limitation, any warranties of merchantability, fitness for a particular
17// purpose or non-infringement. Please see the License for the specific terms
18// and conditions governing the rights and limitations under the License.
19
7fd59977 20
2166f0fa 21#include <OpenGl_GraphicDriver.hxx>
7fd59977 22
7fd59977 23#include <OpenGl_FrameBuffer.hxx>
24
2166f0fa
SK
25#include <OpenGl_Structure.hxx>
26#include <OpenGl_CView.hxx>
27#include <OpenGl_Display.hxx>
7fd59977 28
2166f0fa 29/*----------------------------------------------------------------------*/
7fd59977 30
2166f0fa
SK
31void OpenGl_GraphicDriver::ActivateView (const Graphic3d_CView& ACView)
32{
33 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
34 if (aCView)
35 aCView->WS->SetActiveView(aCView->View);
7fd59977 36}
37
2166f0fa
SK
38void OpenGl_GraphicDriver::AntiAliasing (const Graphic3d_CView& ACView, const Standard_Boolean AFlag)
39{
40 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
41 if (aCView)
42 aCView->View->SetAntiAliasing(AFlag);
7fd59977 43}
44
2166f0fa
SK
45void OpenGl_GraphicDriver::Background (const Graphic3d_CView& ACView)
46{
47 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
48 if (aCView)
49 {
50 aCView->WS->SetBackgroundColor(ACView.DefWindow.Background.r,ACView.DefWindow.Background.g,ACView.DefWindow.Background.b);
7fd59977 51 }
7fd59977 52}
53
2166f0fa 54void OpenGl_GraphicDriver::GradientBackground (const Graphic3d_CView& ACView,
7fd59977 55 const Quantity_Color& AColor1,
56 const Quantity_Color& AColor2,
2166f0fa
SK
57 const Aspect_GradientFillMethod AType)
58{
59 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
60 if (aCView)
61 {
62 aCView->View->SetBackgroundGradient(AColor1,AColor2,AType);
7fd59977 63 }
7fd59977 64}
65
2166f0fa
SK
66void OpenGl_GraphicDriver::Blink (const Graphic3d_CStructure &, const Standard_Boolean)
67{
68 // Do nothing
7fd59977 69}
70
5e27df78 71void OpenGl_GraphicDriver::BoundaryBox (const Graphic3d_CStructure& theCStructure,
72 const Standard_Boolean toCreate)
2166f0fa 73{
5e27df78 74 OpenGl_Structure* aStructure = (OpenGl_Structure* )theCStructure.ptrStructure;
75 if (aStructure == NULL)
2166f0fa 76 return;
7fd59977 77
5e27df78 78 if (toCreate)
79 aStructure->SetHighlightBox (GetSharedContext(), theCStructure.BoundBox);
2166f0fa 80 else
5e27df78 81 aStructure->ClearHighlightBox (GetSharedContext());
7fd59977 82}
83
5e27df78 84void OpenGl_GraphicDriver::HighlightColor (const Graphic3d_CStructure& theCStructure,
85 const Standard_ShortReal R,
86 const Standard_ShortReal G,
87 const Standard_ShortReal B,
88 const Standard_Boolean toCreate)
2166f0fa 89{
5e27df78 90 OpenGl_Structure* aStructure = (OpenGl_Structure* )theCStructure.ptrStructure;
91 if (aStructure == NULL)
2166f0fa 92 return;
7fd59977 93
5e27df78 94 if (toCreate)
95 aStructure->SetHighlightColor (GetSharedContext(), R, G, B);
2166f0fa 96 else
5e27df78 97 aStructure->ClearHighlightColor (GetSharedContext());
7fd59977 98}
99
2166f0fa
SK
100void OpenGl_GraphicDriver::NameSetStructure (const Graphic3d_CStructure& ACStructure)
101{
102 OpenGl_Structure *astructure = (OpenGl_Structure *)ACStructure.ptrStructure;
103 if (astructure)
104 {
105 Standard_Integer aStatus = 0;
106 if (ACStructure.highlight) aStatus |= OPENGL_NS_HIGHLIGHT;
107 if (!ACStructure.visible) aStatus |= OPENGL_NS_HIDE;
2166f0fa 108 astructure->SetNamedStatus( aStatus );
7fd59977 109 }
7fd59977 110}
111
2166f0fa
SK
112void OpenGl_GraphicDriver::ClipLimit (const Graphic3d_CView& ACView, const Standard_Boolean AWait)
113{
114 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
115 if (aCView)
116 {
117 aCView->View->SetClipLimit(ACView);
529afc1a 118 if (!AWait)
2166f0fa
SK
119 {
120 aCView->WS->Resize(ACView.DefWindow);
2166f0fa 121 }
7fd59977 122 }
7fd59977 123}
124
2166f0fa
SK
125void OpenGl_GraphicDriver::DeactivateView (const Graphic3d_CView& ACView)
126{
127 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
128 if (aCView)
129 {
130 const Handle(OpenGl_View) aDummyView;
131 aCView->WS->SetActiveView(aDummyView);
7fd59977 132 }
7fd59977 133}
134
2166f0fa
SK
135void OpenGl_GraphicDriver::DepthCueing (const Graphic3d_CView& ACView, const Standard_Boolean AFlag)
136{
137 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
138 if (aCView)
139 aCView->View->SetFog(ACView, AFlag);
7fd59977 140}
141
2166f0fa
SK
142Standard_Boolean OpenGl_GraphicDriver::ProjectRaster (const Graphic3d_CView& ACView, const Standard_ShortReal AX, const Standard_ShortReal AY, const Standard_ShortReal AZ, Standard_Integer& AU, Standard_Integer& AV)
143{
144 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
145 if (!aCView)
146 return Standard_False;
7fd59977 147
2166f0fa
SK
148 Standard_Integer aWidth = aCView->WS->Width();
149 Standard_Integer aHeight = aCView->WS->Height();
2166f0fa
SK
150 Standard_ShortReal xr, yr;
151 if (aCView->View->ProjectObjectToRaster(aWidth, aHeight, AX, AY, AZ, xr, yr))
152 {
153 AU = (Standard_Integer) xr;
154 AV = aHeight - (Standard_Integer) yr;
155 return Standard_True;
7fd59977 156 }
157
2166f0fa 158 return Standard_False;
7fd59977 159}
160
2166f0fa
SK
161Standard_Boolean OpenGl_GraphicDriver::UnProjectRaster (const Graphic3d_CView& ACView, const Standard_Integer Axm, const Standard_Integer Aym, const Standard_Integer AXM, const Standard_Integer AYM, const Standard_Integer AU, const Standard_Integer AV, Standard_ShortReal& Ax, Standard_ShortReal& Ay, Standard_ShortReal& Az)
162{
163 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
164 if (!aCView)
165 return Standard_False;
7fd59977 166
2166f0fa
SK
167 const Standard_Integer aWidth = aCView->WS->Width();
168 const Standard_Integer aHeight = aCView->WS->Height();
7fd59977 169
2166f0fa
SK
170 /*
171 Patched by P.Dolbey: the window pixel height decreased by one
172 in order for yr to remain within valid coordinate range [0; Ym -1]
173 where Ym means window pixel height.
174 */
175 return aCView->View->ProjectRasterToObject( aWidth, aHeight, AU, (AYM-1)-Aym-AV, Ax, Ay, Az );
7fd59977 176}
177
2166f0fa
SK
178Standard_Boolean OpenGl_GraphicDriver::UnProjectRasterWithRay (const Graphic3d_CView& ACView, const Standard_Integer Axm, const Standard_Integer Aym, const Standard_Integer AXM, const Standard_Integer AYM, const Standard_Integer AU, const Standard_Integer AV, Standard_ShortReal& Ax, Standard_ShortReal& Ay, Standard_ShortReal& Az, Standard_ShortReal& Dx, Standard_ShortReal& Dy, Standard_ShortReal& Dz)
179{
180 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
181 if (!aCView)
182 return Standard_False;
7fd59977 183
2166f0fa
SK
184 const Standard_Integer aWidth = aCView->WS->Width();
185 const Standard_Integer aHeight = aCView->WS->Height();
7fd59977 186
2166f0fa 187 return aCView->View->ProjectRasterToObjectWithRay( aWidth, aHeight, AU, AYM-Aym-AV, Ax, Ay, Az, Dx, Dy, Dz );
7fd59977 188}
189
529afc1a 190void OpenGl_GraphicDriver::RatioWindow (const Graphic3d_CView& theCView)
2166f0fa 191{
529afc1a
K
192 const OpenGl_CView* aCView = (const OpenGl_CView* )theCView.ptrView;
193 if (aCView != NULL)
194 aCView->WS->Resize (theCView.DefWindow);
2166f0fa 195}
7fd59977 196
2166f0fa
SK
197void OpenGl_GraphicDriver::Redraw (const Graphic3d_CView& ACView, const Aspect_CLayer2d& ACUnderLayer, const Aspect_CLayer2d& ACOverLayer, const Standard_Integer x, const Standard_Integer y, const Standard_Integer width, const Standard_Integer height)
198{
199 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
200 if (aCView)
201 {
202 /*if( width <= 0 || height <= 0 )
203 aCView->WS->Redraw(ACView, ACUnderLayer, ACOverLayer);
204 else
205 aCView->WS->RedrawArea(ACView, ACUnderLayer, ACOverLayer, x, y, width, height);*/
206 // Always do full redraw
207 aCView->WS->Redraw(ACView, ACUnderLayer, ACOverLayer);
7fd59977 208 }
7fd59977 209}
210
2166f0fa
SK
211Graphic3d_PtrFrameBuffer OpenGl_GraphicDriver::FBOCreate (const Graphic3d_CView& ACView, const Standard_Integer theWidth, const Standard_Integer theHeight)
212{
213 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
214 if (aCView)
215 return aCView->WS->FBOCreate(theWidth, theHeight);
216 return (Graphic3d_PtrFrameBuffer)NULL;
7fd59977 217}
218
2166f0fa
SK
219Graphic3d_PtrFrameBuffer OpenGl_Workspace::FBOCreate (const Standard_Integer theWidth, const Standard_Integer theHeight)
220{
7fd59977 221 // activate OpenGL context
2166f0fa 222 if (!Activate())
7fd59977 223 return NULL;
2166f0fa 224
7fd59977 225 // create the FBO
226 OpenGl_FrameBuffer* aFrameBuffer = new OpenGl_FrameBuffer();
2166f0fa 227 if (!aFrameBuffer->Init (GetGlContext(), theWidth, theHeight))
7fd59977 228 {
229 delete aFrameBuffer;
230 return NULL;
231 }
232 return (Graphic3d_PtrFrameBuffer )aFrameBuffer;
233}
234
2166f0fa 235void OpenGl_GraphicDriver::FBORelease (const Graphic3d_CView& ACView, Graphic3d_PtrFrameBuffer& theFBOPtr)
7fd59977 236{
237 if (theFBOPtr == NULL)
7fd59977 238 return;
2166f0fa
SK
239 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
240 if (aCView)
241 {
242 aCView->WS->FBORelease(theFBOPtr);
243 theFBOPtr = NULL;
7fd59977 244 }
2166f0fa
SK
245}
246
247void OpenGl_Workspace::FBORelease (Graphic3d_PtrFrameBuffer theFBOPtr)
248{
7fd59977 249 // activate OpenGL context
2166f0fa 250 if (!Activate())
7fd59977 251 return;
2166f0fa 252
7fd59977 253 // release the object
2166f0fa
SK
254 OpenGl_FrameBuffer* aFrameBuffer = (OpenGl_FrameBuffer*)theFBOPtr;
255 aFrameBuffer->Release (GetGlContext());
7fd59977 256 delete aFrameBuffer;
7fd59977 257}
258
259void OpenGl_GraphicDriver::FBOGetDimensions (const Graphic3d_CView& ,
260 const Graphic3d_PtrFrameBuffer theFBOPtr,
261 Standard_Integer& theWidth, Standard_Integer& theHeight,
262 Standard_Integer& theWidthMax, Standard_Integer& theHeightMax)
263{
264 if (theFBOPtr == NULL)
265 {
266 return;
267 }
268 const OpenGl_FrameBuffer* aFrameBuffer = (const OpenGl_FrameBuffer* )theFBOPtr;
269 theWidth = aFrameBuffer->GetVPSizeX(); // current viewport size
270 theHeight = aFrameBuffer->GetVPSizeY();
271 theWidthMax = aFrameBuffer->GetSizeX(); // texture size
272 theHeightMax = aFrameBuffer->GetSizeY();
273}
274
275void OpenGl_GraphicDriver::FBOChangeViewport (const Graphic3d_CView& ,
276 Graphic3d_PtrFrameBuffer& theFBOPtr,
277 const Standard_Integer theWidth, const Standard_Integer theHeight)
278{
279 if (theFBOPtr == NULL)
280 {
281 return;
282 }
283 OpenGl_FrameBuffer* aFrameBuffer = (OpenGl_FrameBuffer* )theFBOPtr;
284 aFrameBuffer->ChangeViewport (theWidth, theHeight);
285}
286
692613e5 287inline bool getDataFormat (const Image_PixMap& theData,
288 GLenum& thePixelFormat,
289 GLenum& theDataType)
7fd59977 290{
692613e5 291 thePixelFormat = GL_RGB;
292 theDataType = GL_UNSIGNED_BYTE;
293 switch (theData.Format())
7fd59977 294 {
692613e5 295 case Image_PixMap::ImgGray:
296 thePixelFormat = GL_DEPTH_COMPONENT;
297 theDataType = GL_UNSIGNED_BYTE;
298 return true;
299 case Image_PixMap::ImgRGB:
300 thePixelFormat = GL_RGB;
301 theDataType = GL_UNSIGNED_BYTE;
302 return true;
303 case Image_PixMap::ImgBGR:
304 thePixelFormat = GL_BGR;
305 theDataType = GL_UNSIGNED_BYTE;
306 return true;
307 case Image_PixMap::ImgRGBA:
308 case Image_PixMap::ImgRGB32:
309 thePixelFormat = GL_RGBA;
310 theDataType = GL_UNSIGNED_BYTE;
311 return true;
312 case Image_PixMap::ImgBGRA:
313 case Image_PixMap::ImgBGR32:
314 thePixelFormat = GL_BGRA;
315 theDataType = GL_UNSIGNED_BYTE;
316 return true;
317 case Image_PixMap::ImgGrayF:
318 thePixelFormat = GL_DEPTH_COMPONENT;
319 theDataType = GL_FLOAT;
320 return true;
321 case Image_PixMap::ImgRGBF:
322 thePixelFormat = GL_RGB;
323 theDataType = GL_FLOAT;
324 return true;
325 case Image_PixMap::ImgBGRF:
326 thePixelFormat = GL_BGR;
327 theDataType = GL_FLOAT;
328 return true;
329 case Image_PixMap::ImgRGBAF:
330 thePixelFormat = GL_RGBA;
331 theDataType = GL_FLOAT;
332 return true;
333 case Image_PixMap::ImgBGRAF:
334 thePixelFormat = GL_BGRA;
335 theDataType = GL_FLOAT;
336 return true;
337 default:
338 return false;
7fd59977 339 }
340}
341
692613e5 342Standard_Boolean OpenGl_GraphicDriver::BufferDump (const Graphic3d_CView& theCView,
343 Image_PixMap& theImage,
344 const Graphic3d_BufferType& theBufferType)
7fd59977 345{
692613e5 346 const OpenGl_CView* aCView = (const OpenGl_CView* )theCView.ptrView;
347 return (aCView != NULL) && aCView->WS->BufferDump ((OpenGl_FrameBuffer* )theCView.ptrFBO, theImage, theBufferType);
2166f0fa
SK
348 return Standard_False;
349}
350
692613e5 351Standard_Boolean OpenGl_Workspace::BufferDump (OpenGl_FrameBuffer* theFBOPtr,
352 Image_PixMap& theImage,
353 const Graphic3d_BufferType& theBufferType)
7fd59977 354{
692613e5 355 GLenum aFormat, aType;
356 if (theImage.IsEmpty()
357 || !getDataFormat (theImage, aFormat, aType)
358 || ((theBufferType == Graphic3d_BT_Depth) && (aFormat != GL_DEPTH_COMPONENT))
359 || !Activate())
7fd59977 360 {
361 return Standard_False;
362 }
363
7fd59977 364 // bind FBO if used
7fd59977 365 GLint aReadBufferPrev = GL_BACK;
692613e5 366 if (theFBOPtr != NULL && theFBOPtr->IsValid())
7fd59977 367 {
692613e5 368 theFBOPtr->BindBuffer (GetGlContext());
7fd59977 369 }
370 else
371 {
372 glGetIntegerv (GL_READ_BUFFER, &aReadBufferPrev);
373 GLint aDrawBufferPrev = GL_BACK;
374 glGetIntegerv (GL_DRAW_BUFFER, &aDrawBufferPrev);
375 glReadBuffer (aDrawBufferPrev);
376 }
377
378 GLint anAlignBack = 1;
379 glGetIntegerv (GL_PACK_ALIGNMENT, &anAlignBack);
692613e5 380 GLint anExtraBytes = (GLint )theImage.RowExtraBytes();
381 GLint anAligment = Min (GLint(theImage.MaxRowAligmentBytes()), 8); // limit to 8 bytes for OpenGL
382 glPixelStorei (GL_PACK_ALIGNMENT, anAligment);
383
384 if (anExtraBytes >= anAligment)
385 {
386 // copy row by row
387 for (Standard_Size aRow = 0; aRow < theImage.SizeY(); ++aRow)
388 {
389 glReadPixels (0, GLint(aRow), GLsizei (theImage.SizeX()), 1, aFormat, aType, theImage.ChangeRow (aRow));
390 }
391 }
392 else
7fd59977 393 {
692613e5 394 // read pixels
395 glReadPixels (0, 0, GLsizei (theImage.SizeX()), GLsizei (theImage.SizeY()), aFormat, aType, theImage.ChangeData());
396 theImage.SetTopDown (false); // image bottom-up in OpenGL
7fd59977 397 }
7fd59977 398
7fd59977 399 glPixelStorei (GL_PACK_ALIGNMENT, anAlignBack);
400
692613e5 401 if (theFBOPtr != NULL && theFBOPtr->IsValid())
7fd59977 402 {
692613e5 403 theFBOPtr->UnbindBuffer (GetGlContext());
7fd59977 404 }
405 else
406 {
407 glReadBuffer (aReadBufferPrev);
408 }
409 return Standard_True;
410}
411
dd8a4ce9 412void OpenGl_GraphicDriver::RemoveView (const Graphic3d_CView& theCView)
2166f0fa 413{
dd8a4ce9 414 Handle(OpenGl_Context) aShareCtx = GetSharedContext();
415 if (myMapOfView.IsBound (theCView.ViewId))
416 myMapOfView.UnBind (theCView.ViewId);
7fd59977 417
dd8a4ce9 418 if (myMapOfWS.IsBound (theCView.WsId))
419 myMapOfWS.UnBind (theCView.WsId);
7fd59977 420
dd8a4ce9 421 if (myMapOfWS.IsEmpty() && !myMapOfStructure.IsEmpty())
422 {
423 // The last view removed but some objects still present.
424 // Release GL resources now without object destruction.
425 for (NCollection_DataMap<Standard_Integer, OpenGl_Structure*>::Iterator aStructIt (myMapOfStructure);
426 aStructIt.More (); aStructIt.Next())
427 {
428 OpenGl_Structure* aStruct = aStructIt.ChangeValue();
429 aStruct->ReleaseGlResources (aShareCtx);
430 }
431 }
432
433 OpenGl_CView *aCView = (OpenGl_CView *)theCView.ptrView;
2166f0fa 434 delete aCView;
dd8a4ce9 435 ((Graphic3d_CView *)&theCView)->ptrView = NULL;
7fd59977 436}
437
2166f0fa
SK
438void OpenGl_GraphicDriver::SetLight (const Graphic3d_CView& ACView)
439{
440 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
441 if (aCView)
442 aCView->View->SetLights(ACView.Context);
7fd59977 443}
444
2166f0fa
SK
445void OpenGl_GraphicDriver::SetPlane (const Graphic3d_CView& ACView)
446{
447 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
448 if (aCView)
449 aCView->View->SetClippingPlanes(ACView.Context);
7fd59977 450}
451
2166f0fa
SK
452void OpenGl_GraphicDriver::SetVisualisation (const Graphic3d_CView& ACView)
453{
454 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
455 if (aCView)
456 {
457 aCView->View->SetVisualisation(ACView.Context);
458 aCView->WS->UseZBuffer() = ( ACView.Context.Visualization == 0? (ACView.Context.ZBufferActivity == 1) : (ACView.Context.ZBufferActivity != 0) );
7fd59977 459 }
7fd59977 460}
461
2166f0fa
SK
462void OpenGl_GraphicDriver::TransformStructure (const Graphic3d_CStructure& ACStructure)
463{
464 OpenGl_Structure *astructure = (OpenGl_Structure *)ACStructure.ptrStructure;
465 if (astructure)
466 astructure->SetTransformation(&(ACStructure.Transformation[0][0]));
7fd59977 467}
468
2166f0fa
SK
469void OpenGl_GraphicDriver::DegenerateStructure (const Graphic3d_CStructure& ACStructure)
470{
471 OpenGl_Structure *astructure = (OpenGl_Structure *)ACStructure.ptrStructure;
472 if (astructure)
473 astructure->SetDegenerateModel( ACStructure.ContextFillArea.DegenerationMode, ACStructure.ContextFillArea.SkipRatio );
474}
7fd59977 475
2166f0fa
SK
476void OpenGl_GraphicDriver::Transparency (const Graphic3d_CView& ACView, const Standard_Boolean AFlag)
477{
478 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
479 if (aCView)
480 aCView->WS->UseTransparency(AFlag);
481}
7fd59977 482
2166f0fa
SK
483void OpenGl_GraphicDriver::Update (const Graphic3d_CView& ACView, const Aspect_CLayer2d& ACUnderLayer, const Aspect_CLayer2d& ACOverLayer)
484{
485 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
486 if (aCView)
487 aCView->WS->Update(ACView,ACUnderLayer,ACOverLayer);
488}
7fd59977 489
5e27df78 490Standard_Boolean OpenGl_GraphicDriver::View (Graphic3d_CView& theCView)
2166f0fa
SK
491{
492 if (openglDisplay.IsNull())
493 return Standard_False;
7fd59977 494
5e27df78 495 if (myMapOfView.IsBound (theCView.ViewId))
496 myMapOfView.UnBind (theCView.ViewId);
7fd59977 497
5e27df78 498 if (myMapOfWS.IsBound (theCView.WsId))
499 myMapOfWS.UnBind (theCView.WsId);
7fd59977 500
5e27df78 501 Handle(OpenGl_Workspace) aWS = Handle(OpenGl_Workspace)::DownCast(openglDisplay->GetWindow (theCView.DefWindow.XWindow));
502 if (aWS.IsNull())
2166f0fa 503 {
5e27df78 504 Handle(OpenGl_Context) aShareCtx = GetSharedContext();
505 aWS = new OpenGl_Workspace (openglDisplay, theCView.DefWindow, theCView.GContext, aShareCtx);
506 openglDisplay->SetWindow (theCView.DefWindow.XWindow, aWS);
7fd59977 507 }
508
5e27df78 509 myMapOfWS.Bind (theCView.WsId, aWS);
7fd59977 510
5e27df78 511 Handle(OpenGl_View) aView = new OpenGl_View (theCView.Context);
512 myMapOfView.Bind (theCView.ViewId, aView);
7fd59977 513
5e27df78 514 OpenGl_CView* aCView = new OpenGl_CView();
2166f0fa
SK
515 aCView->View = aView;
516 aCView->WS = aWS;
5e27df78 517 theCView.ptrView = aCView;
7fd59977 518
2166f0fa
SK
519 return Standard_True;
520}
7fd59977 521
2166f0fa
SK
522void OpenGl_GraphicDriver::ViewMapping (const Graphic3d_CView& ACView, const Standard_Boolean AWait)
523{
524 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
525 if (aCView)
526 {
527 aCView->View->SetMapping(ACView);
529afc1a 528 if (!AWait)
2166f0fa
SK
529 {
530 aCView->WS->Resize(ACView.DefWindow);
7fd59977 531 }
7fd59977 532 }
2166f0fa 533}
7fd59977 534
2166f0fa
SK
535void OpenGl_GraphicDriver::ViewOrientation (const Graphic3d_CView& ACView, const Standard_Boolean AWait)
536{
537 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
538 if (aCView)
539 {
540 aCView->View->SetOrientation(ACView);
529afc1a 541 if (!AWait)
2166f0fa
SK
542 {
543 aCView->WS->Resize(ACView.DefWindow);
7fd59977 544 }
7fd59977 545 }
2166f0fa 546}
7fd59977 547
2166f0fa
SK
548void OpenGl_GraphicDriver::SetBackFacingModel (const Graphic3d_CView& ACView)
549{
550 const OpenGl_CView *aCView = (const OpenGl_CView *)ACView.ptrView;
551 if (aCView)
552 aCView->View->SetBackfacing(ACView.Backfacing);
553}
59f45b7c 554
555//=======================================================================
556//function : AddZLayer
557//purpose :
558//=======================================================================
559
560void OpenGl_GraphicDriver::AddZLayer (const Graphic3d_CView& theCView,
561 const Standard_Integer theLayerId)
562{
563 const OpenGl_CView *aCView = (const OpenGl_CView *)theCView.ptrView;
564 if (aCView)
565 aCView->View->AddZLayer (theLayerId);
566}
567
568//=======================================================================
569//function : RemoveZLayer
570//purpose :
571//=======================================================================
572
573void OpenGl_GraphicDriver::RemoveZLayer (const Graphic3d_CView& theCView,
574 const Standard_Integer theLayerId)
575{
576 const OpenGl_CView* aCView = (const OpenGl_CView *)theCView.ptrView;
577 if (aCView)
578 aCView->View->RemoveZLayer (theLayerId);
579}