102class SoXtGLWidget :
public SoXtComponent
300 void setRemoteRenderPbufferEnable(
SbBool enable ) { m_remoteRenderPbufferEnable = enable; }
301 SbBool isRemoteRenderPbufferEnable()
const {
return m_remoteRenderPbufferEnable; }
303 float getLowResPercent() {
return m_lowResPercent; }
311 void syncFromCurrentConfig();
314 void syncToCurrentConfigTemplate( XVisualInfo* newvis );
316 SbBool currentGraphicConfigTemplateIsUsed;
317 SoGLGraphicConfigTemplate currentGraphicConfigTemplate;
320 SoGLGraphicDevice* getGraphicDevice();
323 SoGLGraphicConfig* getGraphicConfig();
325 SbBool isFsaaSupportHighQuality();
326 SbBool isFsaaHighQuality();
328 SoGuiGLWidget* getGuiGLWidget()
const;
331 int getDisplayListShareGroup( SoGLContext* ctx );
339 static SbBool swapNormalBuffersCB(
void *data);
340 static SbBool bindNormalCurrentCB(
void *data);
341 static SbBool unbindNormalCurrentCB(
void *data);
342 static void* getNormalWindowCB(
void *data);
343 static void* getCurrentDisplayCB(
void *data);
353 void updateCurrentDeviceAndConfig( Display* display );
355 SbBool currentGraphicConfigIsUsed;
356 SoGLGraphicConfig* currentGraphicConfig;
357 SbBool currentGraphicDeviceIsUsed;
358 SoGLGraphicDevice* currentGraphicDevice;
364 SoXtGLWidget( SoWidget parent = NULL,
365 const char* name = NULL,
366 SbBool buildInsideParent = TRUE,
367 int glModes = SO_GLX_RGB | SO_GLX_ZBUFFER | SO_GLX_STENCIL,
370 SoXtGLWidget( SoWidget parent,
376 SoGuiGLWidget* guiGLWidget );
378 virtual ~SoXtGLWidget();
382 virtual void redraw() = 0;
383 virtual void processEvent( XAnyEvent* anyevent );
390 virtual void initGraphic();
391 virtual void sizeChanged(
const SbVec2s& );
392 virtual void posChanged(
const SbVec2i32&,
const SbVec2i32& );
393 virtual void widgetChanged( SoWidget newWidget );
399 void setGlxSize( SbVec2s newSize );
400 const SbVec2s& getGlxSize()
const {
return m_guiGLWidget->getGlxSize(); }
404 static void eventHandler( SoWidget w, SoXtGLWidget* p, XAnyEvent* xe, Boolean* b );
409 void setStereoBuffer(
SbBool flag );
410 SbBool isStereoBuffer() {
return (m_guiGLWidget->getGLModes() & SO_GLX_STEREO); }
413 SbBool isRGBMode() {
return (m_guiGLWidget->getGLModes() & SO_GLX_RGB); }
415#if defined(__linux__)
416 void allocCell( Display *display, Colormap cmap, XColor *colorcells,
int ncolors,
int colorMapSize );
420 Colormap getColorMap()
const
421 {
return m_guiGLWidget->getColorMap(); }
427 SoWidget buildWidget( SoWidget parent );
428 SoWidget getGlxMgrWidget() {
return mgrWidget; }
431 enum RemoteRenderEnabled
437 RemoteRenderEnabled m_remoteRenderMode;
439 SoXtRemoteRenderInfo* m_remoteRenderInfo;
440 SbBool m_remoteRenderPbufferEnable;
442 float m_lowResLowPercent;
443 float m_lowResHighPercent;
444 float m_lowResPercent;
446 void remoteRenderInit();
447 void remoteRenderCleanup();
448 void remoteRenderGinitCB( SoWidget w );
450 void remoteRenderResizeCB();
451 void remoteRenderSendImage();
452 void remoteRenderSendLowResRender();
453 XVisualInfo* remoteRenderChooseVisual();
454 void remoteRenderFatalError(
const char* methodName,
const char* message );
456 void setLowResLowPercent(
float percent ) { m_lowResLowPercent = percent;}
457 void setLowResHighPercent(
float percent ) { m_lowResHighPercent = percent;}
458 float getLowResLowPercent()
const {
return m_lowResLowPercent;}
459 float getLowResHighPercent()
const {
return m_lowResHighPercent;}
461 virtual void setLowResPercent(
float newLowres ) {m_lowResPercent = newLowres;}
464 SbThreadId_t dwThreadId;
465 SbThreadId_t getThreadId() {
return dwThreadId; };
466 void setThreadId( SbThreadId_t
id ) { dwThreadId=id; };
468 virtual void onExpose();
473 SoWidget m_widgetNormal;
475 SoRef<SoGLContext> m_contextNormal;
489 void buildNormalGLXWidget( XVisualInfo* vis = NULL );
490 void destroyNormalWindows(
SbBool normalCall=TRUE);
491 void destroyGLXWidget( SoWidget& w, SoRef<SoGLContext>& ctx,
SbBool normalWindow );
493 SoWidget createWindow( SoGLFormat* format );
494 void destroyWindow( SoWidget widget );
496 static SbBool onGLFormatChangeCallback( SoGLFormat& format,
void* userData );
499 static void ginitCB( SoWidget w, SoXtGLWidget* v, XtPointer p );
500 static void exposeCB( SoWidget w, SoXtGLWidget* v, XtPointer p );
501 static void resizeCB( SoWidget glx, SoXtGLWidget* p, XtPointer pt );
506 bool m_stereoActiveDelayed;
507 bool m_stereoBufferFlag;
509 SbBool m_singleBufferExpected;
511 SoGuiGLWidget* m_guiGLWidget;
513 void constructorCommon(
int glModes,
SbBool buildNow );
515 SbBool remoteRenderGinitCB_pbuffer( SoWidget w );
<a href="IconLegend.html"><img src="extTGS.gif" alt="VSG extension" border="0"></a> OpenGL context m...