Open Inventor Release 2025.1.0
 
Loading...
Searching...
No Matches
SoGLContext.h
1/*=======================================================================
2 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), ***
3 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. ***
4 *** ***
5 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS ***
6 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR ***
7 *** WRITTEN AUTHORIZATION OF FEI S.A.S. ***
8 *** ***
9 *** RESTRICTED RIGHTS LEGEND ***
10 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS ***
11 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN ***
12 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT ***
13 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN ***
14 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. ***
15 *** ***
16 *** COPYRIGHT (C) 1996-2025 BY FEI S.A.S, ***
17 *** BORDEAUX, FRANCE ***
18 *** ALL RIGHTS RESERVED ***
19**=======================================================================*/
20/*=======================================================================
21** Author : VSG (MMM YYYY)
22**=======================================================================*/
23#if !defined SOGLCONTEXT_H
24#define SOGLCONTEXT_H
25
26#include <Inventor/devices/SoDeviceContext.h>
27#include <Inventor/devices/SoGLFormat.h>
28#include <Inventor/devices/SoGLGlew.h>
29#include <Inventor/STL/vector>
30#include <Inventor/STL/list>
31#include <Inventor/STL/map>
32#include <Inventor/helpers/SbGlContextHelper.h>
33#include <Inventor/threads/SbThreadLocalStorage.h>
34#include <Inventor/threads/SbThreadSpinlock.h>
35#include <Inventor/errors/SoError.h>
36#include <Inventor/image/SbRasterImage.h>
37#include <Inventor/threads/SbThreadLocalStorage.h>
38
39
40#include <Inventor/SbPList.h> // For SbStringList
41#include <Inventor/STL/stack>
42
43#include <Inventor/helpers/SbGPUCapabilities.h>
44
45#if defined(_WIN32)
46#include <windows.h>
47#endif
48
49
50#ifdef _MSC_VER
51#pragma warning( push )
52#pragma warning(disable:4251)
53#endif
54
55class SbThreadMutex;
56struct GLEWContextStruct;
57
59class FunctionRedirector;
61
181{
182public:
183
210
220 SoGLContext( bool shared );
221
237
248
256 SoGLContext( const SoGLFormat& format, SbGlContextHelper::Drawable drawable = 0 );
257
281 bool shared = true );
282
289 SoGLContext( SoGLContext* context, bool shared );
290
299 SoGLContext( SoGLContext* context, const SoGLFormat& format, SbGlContextHelper::Drawable drawable = 0 );
300
305 virtual void bind();
306
307
312 virtual bool tryBind();
313
317 virtual void unbind();
318
324 bool isSharedWith( const SoDeviceContext* context ) const;
325
327 virtual bool isValid() const;
328
335
342 int getId() const;
343
353 virtual bool isCompatible( SoDeviceContext* context ) const;
354
359 virtual bool isCurrent() const;
360
376 static SoGLContext* getCurrent( bool checkGLState = false );
377
384
391
397#if defined(_WIN32)
398 typedef int SharedGroupDescription;
399#else
401#endif
403
410
417
423
424 const SoGLFormat& getFormat() const;
425
432 static SoGLContext* getContextFromId( int id );
433
440 static SoGLContext* getContextFromSharedId( int sharedIdGroup );
441
446 bool isValidForCurrent() const;
447
451 void assertContext() const;
452
457
467
470
477 void setNoGLContextDelete() { m_noOGLContextDelete = true; }
478
484
490
491private:
492
493 SB_THREAD_TLS_HEADER();
494
495 static void initClass();
496 static void exitClass();
497
499 enum GPUVendorType
500 {
501 GPU_TYPE_NOT_INITIALIZED = -1,
502 GPU_NVIDIA = 0,
503 GPU_ATI = 1,
504 GPU_INTEL = 2,
505 GPU_FIREPRO_MAC = 3
506 };
507
508 /* Returns the GPU vendor type */
509 static GPUVendorType getGPUVendorType();
510
522 static SoGLContext* getActualCurrentContext( SoGLContext* supposedContext );
523
527 void setUserData( void* data )
528 { m_userData = data; }
529
531 void* getUserData() const
532 { return m_userData; }
533
536 bool setSharedWith( SoGLContext* sharedContext );
537
538 // internally used by PBuffer to change the display.
539 void forceDisplay( const SbGlContextHelper::Display& display );
540
541 // Used internally in remote to update the drawable (Linux only)
542 void forceDrawable( const SbGlContextHelper::Drawable& drawable );
543
544 // Used internally to avoid the destruction of the context
545 // in some cases, like Qt because Qt destroy the context.
546 void forceContext( const SbGlContextHelper::GLContext& context )
547 { m_context = context; }
548
549 //Allow to change the no delete flag since the public method is one way only
550 inline void forceNoGLContextDelete(bool flag) { m_noOGLContextDelete = flag; }
551
552 // Used internally to get the drawable of this context
553 const SbGlContextHelper::Drawable& getDrawable() const
554 { return m_drawable;}
555
556 virtual SbString getInfos();
557
558 //Provides the name of the graphic card used by the context.
559 SbString getDeviceName() const;
560
564 void printInformation();
565
569 static void printCurrentContextInformation();
570
574 static void printContextsInformation();
575
581 static void invalidateDrawable(SbGlContextHelper::Drawable drawable);
582
588 static void invalidateDisplay(SbGlContextHelper::Display display);
589
608 bool setVSyncEnabled(bool SO_UNUSED_PARAM(on));
609
615 bool isVSyncEnabled();
616
618 bool isBinded();
619
620 static GLEWContextStruct* glewGetCurrentContext();
621 static SoGLGlew::GlewContextNative* glewGetCurrentContextNative();
622
623private:
627 virtual ~SoGLContext();
628
634 void removeSharedObjects();
635
636private:
637
639 void checkRefCount() const;
640
641 virtual bool setSharedWith( SoDeviceContext* sourceCtx );
642
648 void setSwapInterval(int interval);
649
650 // Class static thread local storage
651 struct MTstruct
652 {
653 typedef std::vector<SoGLContext*> ContextVec;
655 ContextVec* m_bindedContexts;
656 };
657
658 bool initContext( SoGLContext* sourceContext, bool shared );
659 void preInitContext();
660 bool postInitContext();
661
662 void checkContextParameters( const char* function );
663
665
666 typedef std::list< SoGLContext* > SoGLContextList;
667
669 static SoGLContextList s_contexts;
670
672 static int s_firstAvailableId;
673
675 static SbThreadSpinlock s_contextsMutex;
676
678 int m_id;
679
682
687 SbGlContextHelper::GLContext m_savedContextForDelete;
688
689 SoGLFormat m_format;
690
691 void* m_userData;
692
693 static GPUVendorType m_GpuVendorType;
694
695 bool m_noOGLContextDelete;
696
697 bool m_drawableIsValid;
698 bool m_displayIsValid;
699
700 static int s_checkContext;
701
702 static int s_oivCompatibilityMode;
703
705 static SharedGroupPolicy s_sharedGroupPolicy;
706
707 // True if all content of shared group is removed.
708 bool m_sharedObjectsRemoved;
709
711 bool m_displayWarning;
712
713 static SoGLContext* findSoGLContext(SbGlContextHelper::GLContext ctx);
714 void pushInBindedList();
715 static void updateBindedList();
716 static void updateBindedList(SbGlContextHelper::Display display, SbGlContextHelper::Drawable drawable, SbGlContextHelper::GLContext context);
717 static SoGLContext* popBindedList();
718
719 bool m_thirdPartyContext;
720 bool m_isBeingDestroyed;
721 SbGPUCapabilities* m_graphicCapabilities;
722 static FunctionRedirector s_deleteContextRedirector;
723
724 static bool callOriginalDeleteContext(SbGlContextHelper::Display display, SbGlContextHelper::GLContext context, int& returnValue);
725 static int commonDeleteContextHook(SbGlContextHelper::Display dpy, SbGlContextHelper::GLContext ctx);
726
727#if defined(WIN32)
728 static int _stdcall deleteContextHook(SbGlContextHelper::GLContext context);
729#elif defined(__APPLE__)
730 static int deleteContextHook(SbGlContextHelper::GLContext context);
731#else
732 static int deleteContextHook(SbGlContextHelper::Display dpy, SbGlContextHelper::GLContext ctx);
733#endif
734
735 static MTstruct::ContextVec& getBindedContextsList();
736};
737
738#ifdef _MSC_VER
739#pragma warning( pop )
740#endif
741
742
743#endif //SOGLCONTEXT_H
744
List of common graphics capabilities of the device used by a SoGLContext.
Maintains a list of pointers to SbString instances.
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> Portable mutex c...
SoDeviceContext()
Default constructor.
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> OpenGL context m...
virtual void bind()
Bind the OpenGL context to the current thread.
virtual bool isValid() const
Returns true if this context is valid.
virtual bool tryBind()
Try to bind the OpenGL context to the current thread.
bool isValidForCurrent() const
Returns true if the context is the current active context or if it is shared with the current active ...
SharedGroupPolicy
Sharing Policy.
@ CONSERVATIVE
Conservative sharing (not available on Unix) Only add context to a share group containing contexts ...
@ AGGRESSIVE
Aggressive sharing (default) Tries to share contexts, independent of their sharing constraint.
@ DISABLED
Disables context sharing (same behavior as v2.6 and older)
virtual bool isCurrent() const
Returns true if this context is valid and currently active.
SoGLContext(SoGLContext *context, bool shared)
Constructor which creates an SoGLContext based on the attributes of the specified context.
int getId() const
Returns the internal id for this context.
static SoGLContext * getContextFromId(int id)
Returns the context corresponding to an internal id.
static SoGLContext * findGLContext(SbGlContextHelper::GLContext)
Returns the first SoGLContext associated with the specified OpenGL context.
void invalidate()
Set this context as invalid so it won't be used anymore.
static const SbGPUCapabilities & getGraphicsCapabilities()
Retrieve graphics capabilities from the current bound context, if any.
static SoGLContext * getCurrent(bool checkGLState=false)
Returns the current active OpenGL context (if any).
SbGlContextHelper::Display SharedGroupDescription
Returns an SoGLContext that matches the specified SharedGroupDescription.
SoGLContext(SbGlContextHelper::Display dpy, SbGlContextHelper::VisualInfo vis, SbGlContextHelper::Drawable drawable, SbGlContextHelper::GLContext ctx)
Constructor which creates an SoGLContext based on the specifed parameters.
bool swapBuffers()
Swaps the buffers with the value stored in the SoGLFormat, which is set to the main plane by default.
const SbGlContextHelper::VisualInfo & getVisualInfo() const
Returns the VisualInfo of this SoGLContext.
void setNoGLContextDelete()
Prevent deletion of the native OpenGL context by SoGLContext.
const SbGlContextHelper::GLContext & getGLContext() const
Returns the OpenGL rendering context of this SoGLContext.
SoGLContext(SoGLContext *context, const SoGLFormat &format, SbGlContextHelper::Drawable drawable=0)
Constructor which creates a SoGLContext shared with a specific context, but attached to the display s...
bool isSharedWith(const SoDeviceContext *context) const
Returns true if the specified context and this context are shared.
const SbGlContextHelper::Display & getDisplay() const
Returns the Display of this SoGLContext.
const SbGPUCapabilities & getContextGraphicsCapabilities()
Retrieve graphics capabilities from this context.
SoGLContext(SbGlContextHelper::Display dpy, SbGlContextHelper::VisualInfo vis, SbGlContextHelper::Drawable drawable, bool shared=true)
Constructor which creates a SoGLContext based on the specified parameters.
const SoGLFormat & getFormat() const
Returns the SoGLFormat associated to the SoGLContext.
SoGLContext(bool shared)
Constructor which creates an SoGLContext based on the attributes of the current context.
static SharedGroupPolicy getSharedGroupPolicy()
Returns the current sharedGroupPolicy.
virtual bool isCompatible(SoDeviceContext *context) const
Returns true if the specified context and this one are compatible.
virtual void unbind()
Unbind the OpenGL context from the current thread.
SoGLContext(const SoGLFormat &format, SbGlContextHelper::Drawable drawable=0)
Constructor which creates a SoGLContext based on the specifed format.
void assertContext() const
Assert this context and the current active context are the same.
static SoGLContext * getContextFromSharedId(int sharedIdGroup)
Returns the first context that belongs to the specified sharedIdGroup.
SoGLContext(const SoGLFormat &format, SbGlContextHelper::GLContext ctx, SbGlContextHelper::Drawable drawable=0)
Constructor which creates a SoGLContext based on the specified parameters.
SbStringList getSupportedExtensions()
Returns an SbString containing the supported extensions for this context.
static SoGLContext * findSharedContext(SharedGroupDescription)
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> OpenGL pixel for...
Definition SoGLFormat.h:55