712#ifndef HIDDEN_FROM_DOC
731 T* setupPublicShaderStage(
const ShaderPosition stagePos,
const char* hiddenName, T* defaultShader)
733 T* fp = getCustomShader<T>(stagePos);
736 return setupPrivateShaderStage<T>(hiddenName,defaultShader);
738 removeHiddenShaderObject(hiddenName);
747 T* setupPublicShaderStage(
const ShaderPosition stagePos,
const char* hiddenName,
const SbString& shaderSource)
749 T* fp = getCustomShader<T>(stagePos);
752 return setupPrivateShaderStage<T>(hiddenName, shaderSource);
754 removeHiddenShaderObject(hiddenName);
763 T* setupPrivateShaderStageNoOverride(
const char* hiddenName,
const SbString& shaderSource)
765 T* fp = (T*) getHiddenShaderObject(hiddenName);
769 fp->sourceProgram.setValue(shaderSource);
770 setHiddenShaderObject(hiddenName, fp);
780 T* setupPublicShaderStageNoOverride(
const ShaderPosition stagePos,
const char* hiddenName,
const SbString& shaderSource)
782 T* fp = getCustomShader<T>(stagePos);
784 return setupPrivateShaderStageNoOverride<T>(hiddenName, shaderSource);
786 removeHiddenShaderObject(hiddenName);
793 bool isInternalFragment(SoFragmentShader* frag)
const;
798 bool isInternalShaderObject(SoShaderObject* obj)
const;
800 virtual void doAction(
SoAction *action);
805 virtual void GLRender( SoGLRenderAction *action );
810 void installShaderProgram( SoGLRenderAction *action );
812 virtual void doRendering(SoGLRenderAction *action);
815 static void initClass() ;
818 static void exitClass() ;
830 static void setTexCoordVolUniform(SoState*state, SoVolumeData* vd, SoNode* node);
832 static int getFirstUsedTextureUnit(SoGLRenderAction* action);
835 virtual void installTextures(SoGLRenderAction* ) {}
838 virtual SbBool isRaycastingEnabled(SoState* state)
const;
841 virtual SbBool isVolumeGroupEnabled(SoState* state)
const;
844 virtual void allocateTextureUnit(SoGLRenderAction *)
const {}
849 static SbBool isTextureArrayEXTSupported(SoState* state);
855 static bool isRaycastingDefault()
856 {
return s_forceRaycasting; };
861 void createRenderModeShaders(){}
865 virtual bool isInterpolationActive(SoGLRenderAction* action);
868 bool mustUseOrthoCamera( SoState* state );
873 virtual void notify(SoNotList *list);
878 void installJitteringTexture(SoGLRenderAction* action);
883 void uninstallJitteringTexture();
890 static SbString cleanUpFilePath(
const SbString&
string );
899 void updateShaderSlots( SoState* state );
904 static const float DEFAULT_GRADIENT_THRESHOLD;
906 static const float DEFAULT_EDGE_THRESHOLD;
908 static const float DEFAULT_BOUNDARY_THRESHOLD;
909 static const float DEFAULT_BOUNDARY_INTENSITY;
915SoINTERNAL
private:SoDEPRECATED
922 static const size_t JITTER_TEX_SIZE;
927 void createJitterTex();
933 bool hasToHandleFakeSoVolumeIsosurfaceStyle(SoState* state);
934 void handleFakeSoVolumeIsosurfaceStyle(SoGLRenderAction* action);
936 SoRef<SoGroup> m_jitterTextureGroup;
937 SoRef<SoTextureUnit> m_jitterTextureUnit;
938 SoRef<SoTexture2> m_jitterTexture;
941 SoVolumeDataDrawStyle* m_volumeDataDrawStyle;
943 static int s_texture_array_EXT_extensionID;
944 static bool s_forceRaycasting;
Abstract base class for texture mapping nodes.
virtual SoVertexShader * setVertexShader(int pos, const SbString &filenameOrSource, SoShaderObject::SourceType sourceType=SoShaderObject::FILENAME)
Creates a vertex shader with the given filename and adds it at the given pos.
virtual SoFragmentShader * setFragmentShader(int pos, const SbString &filenameOrSource, SoShaderObject::SourceType sourceType=SoShaderObject::FILENAME)
Creates a fragment shader with the given filename and add it at the given pos.