VTK  9.3.20240419
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
vtkShaderProperty Class Referenceabstract

represent GPU shader properties More...

#include <vtkShaderProperty.h>

Inheritance diagram for vtkShaderProperty:
[legend]
Collaboration diagram for vtkShaderProperty:
[legend]

Public Types

typedef vtkObject Superclass
 

Public Member Functions

virtual vtkTypeBool IsA (const char *type)
 Return 1 if this class is the same type of (or a subclass of) the named class. More...
 
vtkShaderPropertyNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses. More...
 
void DeepCopy (vtkShaderProperty *p)
 Assign one property to another. More...
 
vtkMTimeType GetShaderMTime ()
 GetShaderMTime returns the last time a modification was made that affected the code of the shader (either code replacement was changed or one or more uniform variables were added or removed. More...
 
bool HasVertexShaderCode ()
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
bool HasFragmentShaderCode ()
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
bool HasGeometryShaderCode ()
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
bool HasTessControlShaderCode ()
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
bool HasTessEvalShaderCode ()
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
virtual void SetVertexShaderCode (const char *)
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
virtual char * GetVertexShaderCode ()
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
virtual void SetFragmentShaderCode (const char *)
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
virtual char * GetFragmentShaderCode ()
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
virtual void SetGeometryShaderCode (const char *)
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
virtual char * GetGeometryShaderCode ()
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
virtual void SetTessControlShaderCode (const char *)
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
virtual char * GetTessControlShaderCode ()
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
virtual void SetTessEvaluationShaderCode (const char *)
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
virtual char * GetTessEvaluationShaderCode ()
 Allow the program to set the shader codes used directly instead of using the built in templates. More...
 
virtual vtkUniformsGetFragmentCustomUniforms ()
 The Uniforms object allows to set custom uniform variables that are used in replacement shader code. More...
 
virtual vtkUniformsGetVertexCustomUniforms ()
 The Uniforms object allows to set custom uniform variables that are used in replacement shader code. More...
 
virtual vtkUniformsGetGeometryCustomUniforms ()
 The Uniforms object allows to set custom uniform variables that are used in replacement shader code. More...
 
virtual vtkUniformsGetTessControlCustomUniforms ()
 The Uniforms object allows to set custom uniform variables that are used in replacement shader code. More...
 
virtual vtkUniformsGetTessEvaluationCustomUniforms ()
 The Uniforms object allows to set custom uniform variables that are used in replacement shader code. More...
 
virtual void AddVertexShaderReplacement (const std::string &originalValue, bool replaceFirst, const std::string &replacementValue, bool replaceAll)=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void AddFragmentShaderReplacement (const std::string &originalValue, bool replaceFirst, const std::string &replacementValue, bool replaceAll)=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void AddGeometryShaderReplacement (const std::string &originalValue, bool replaceFirst, const std::string &replacementValue, bool replaceAll)=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void AddTessControlShaderReplacement (const std::string &originalValue, bool replaceFirst, const std::string &replacementValue, bool replaceAll)=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void AddTessEvaluationShaderReplacement (const std::string &originalValue, bool replaceFirst, const std::string &replacementValue, bool replaceAll)=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual int GetNumberOfShaderReplacements ()=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual std::string GetNthShaderReplacementTypeAsString (vtkIdType index)=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void GetNthShaderReplacement (vtkIdType index, std::string &name, bool &replaceFirst, std::string &replacementValue, bool &replaceAll)=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void ClearVertexShaderReplacement (const std::string &originalValue, bool replaceFirst)=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void ClearFragmentShaderReplacement (const std::string &originalValue, bool replaceFirst)=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void ClearGeometryShaderReplacement (const std::string &originalValue, bool replaceFirst)=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void ClearTessControlShaderReplacement (const std::string &originalValue, bool replaceFirst)=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void ClearTessEvaluationShaderReplacement (const std::string &originalValue, bool replaceFirst)=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void ClearAllVertexShaderReplacements ()=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void ClearAllFragmentShaderReplacements ()=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void ClearAllGeometryShaderReplacements ()=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void ClearAllTessControlShaderReplacements ()=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void ClearAllTessEvalShaderReplacements ()=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
virtual void ClearAllShaderReplacements ()=0
 This function enables you to apply your own substitutions to the shader creation process. More...
 
- Public Member Functions inherited from vtkObject
 vtkBaseTypeMacro (vtkObject, vtkObjectBase)
 
virtual void DebugOn ()
 Turn debugging output on. More...
 
virtual void DebugOff ()
 Turn debugging output off. More...
 
bool GetDebug ()
 Get the value of the debug flag. More...
 
void SetDebug (bool debugFlag)
 Set the value of the debug flag. More...
 
virtual void Modified ()
 Update the modification time for this object. More...
 
virtual vtkMTimeType GetMTime ()
 Return this object's modified time. More...
 
void RemoveObserver (unsigned long tag)
 
void RemoveObservers (unsigned long event)
 
void RemoveObservers (const char *event)
 
void RemoveAllObservers ()
 
vtkTypeBool HasObserver (unsigned long event)
 
vtkTypeBool HasObserver (const char *event)
 
vtkTypeBool InvokeEvent (unsigned long event)
 
vtkTypeBool InvokeEvent (const char *event)
 
std::string GetObjectDescription () const override
 The object description printed in messages and PrintSelf output. More...
 
unsigned long AddObserver (unsigned long event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
unsigned long AddObserver (const char *event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkCommandGetCommand (unsigned long tag)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObserver (vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObservers (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObservers (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkTypeBool HasObserver (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkTypeBool HasObserver (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f)
 Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 Allow user to set the AbortFlagOn() with the return value of the callback method. More...
 
vtkTypeBool InvokeEvent (unsigned long event, void *callData)
 This method invokes an event and return whether the event was aborted or not. More...
 
vtkTypeBool InvokeEvent (const char *event, void *callData)
 This method invokes an event and return whether the event was aborted or not. More...
 
virtual void SetObjectName (const std::string &objectName)
 Set/get the name of this object for reporting purposes. More...
 
virtual std::string GetObjectName () const
 Set/get the name of this object for reporting purposes. More...
 
- Public Member Functions inherited from vtkObjectBase
const char * GetClassName () const
 Return the class name as a string. More...
 
virtual vtkIdType GetNumberOfGenerationsFromBase (const char *name)
 Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). More...
 
virtual void Delete ()
 Delete a VTK object. More...
 
virtual void FastDelete ()
 Delete a reference to this object. More...
 
void InitializeObjectBase ()
 
void Print (ostream &os)
 Print an object to an ostream. More...
 
void Register (vtkObjectBase *o)
 Increase the reference count (mark as used by another object). More...
 
virtual void UnRegister (vtkObjectBase *o)
 Decrease the reference count (release by another object). More...
 
int GetReferenceCount ()
 Return the current reference count of this object. More...
 
void SetReferenceCount (int)
 Sets the reference count. More...
 
bool GetIsInMemkind () const
 A local state flag that remembers whether this object lives in the normal or extended memory space. More...
 
virtual void PrintHeader (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses. More...
 
virtual void PrintTrailer (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses. More...
 
virtual bool UsesGarbageCollector () const
 Indicate whether the class uses vtkGarbageCollector or not. More...
 

Static Public Member Functions

static vtkTypeBool IsTypeOf (const char *type)
 
static vtkShaderPropertySafeDownCast (vtkObjectBase *o)
 
static vtkShaderPropertyNew ()
 Construct object with no shader replacements. More...
 
- Static Public Member Functions inherited from vtkObject
static vtkObjectNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
 
static void BreakOnError ()
 This method is called when vtkErrorMacro executes. More...
 
static void SetGlobalWarningDisplay (vtkTypeBool val)
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static void GlobalWarningDisplayOn ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static void GlobalWarningDisplayOff ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static vtkTypeBool GetGlobalWarningDisplay ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
- Static Public Member Functions inherited from vtkObjectBase
static vtkTypeBool IsTypeOf (const char *name)
 Return 1 if this class type is the same type of (or a subclass of) the named class. More...
 
static vtkIdType GetNumberOfGenerationsFromBaseType (const char *name)
 Given a the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). More...
 
static vtkObjectBaseNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
 
static void SetMemkindDirectory (const char *directoryname)
 The name of a directory, ideally mounted -o dax, to memory map an extended memory space within. More...
 
static bool GetUsingMemkind ()
 A global state flag that controls whether vtkObjects are constructed in the usual way (the default) or within the extended memory space. More...
 

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 
 vtkShaderProperty ()
 
 ~vtkShaderProperty () override
 
- Protected Member Functions inherited from vtkObject
 vtkObject ()
 
 ~vtkObject () override
 
void RegisterInternal (vtkObjectBase *, vtkTypeBool check) override
 
void UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override
 
void InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr)
 These methods allow a command to exclusively grab all events. More...
 
void InternalReleaseFocus ()
 These methods allow a command to exclusively grab all events. More...
 
- Protected Member Functions inherited from vtkObjectBase
 vtkObjectBase ()
 
virtual ~vtkObjectBase ()
 
virtual void ReportReferences (vtkGarbageCollector *)
 
 vtkObjectBase (const vtkObjectBase &)
 
void operator= (const vtkObjectBase &)
 

Protected Attributes

char * VertexShaderCode
 
char * FragmentShaderCode
 
char * GeometryShaderCode
 
char * TessControlShaderCode
 
char * TessEvaluationShaderCode
 
vtkNew< vtkUniformsFragmentCustomUniforms
 
vtkNew< vtkUniformsVertexCustomUniforms
 
vtkNew< vtkUniformsGeometryCustomUniforms
 
vtkNew< vtkUniformsTessControlCustomUniforms
 
vtkNew< vtkUniformsTessEvaluationCustomUniforms
 
- Protected Attributes inherited from vtkObject
bool Debug
 
vtkTimeStamp MTime
 
vtkSubjectHelper * SubjectHelper
 
std::string ObjectName
 
- Protected Attributes inherited from vtkObjectBase
std::atomic< int32_t > ReferenceCount
 
vtkWeakPointerBase ** WeakPointers
 

Additional Inherited Members

- Static Protected Member Functions inherited from vtkObjectBase
static vtkMallocingFunction GetCurrentMallocFunction ()
 
static vtkReallocingFunction GetCurrentReallocFunction ()
 
static vtkFreeingFunction GetCurrentFreeFunction ()
 
static vtkFreeingFunction GetAlternateFreeFunction ()
 

Detailed Description

represent GPU shader properties

vtkShaderProperty is used to hold user-defined modifications of a GPU shader program used in a mapper.

See also
vtkVolume vtkOpenGLUniform
Thanks:
Developed by Simon Drouin (sdrou.nosp@m.in2@.nosp@m.bwh.h.nosp@m.arva.nosp@m.rd.ed.nosp@m.u) at Brigham and Women's Hospital.
Online Examples:

Tests:
vtkShaderProperty (Tests)

Definition at line 121 of file vtkShaderProperty.h.

Member Typedef Documentation

◆ Superclass

Definition at line 124 of file vtkShaderProperty.h.

Constructor & Destructor Documentation

◆ vtkShaderProperty()

vtkShaderProperty::vtkShaderProperty ( )
protected

◆ ~vtkShaderProperty()

vtkShaderProperty::~vtkShaderProperty ( )
overrideprotected

Member Function Documentation

◆ IsTypeOf()

static vtkTypeBool vtkShaderProperty::IsTypeOf ( const char *  type)
static

◆ IsA()

virtual vtkTypeBool vtkShaderProperty::IsA ( const char *  name)
virtual

Return 1 if this class is the same type of (or a subclass of) the named class.

Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkObjectBase.

Reimplemented in vtkOpenGLShaderProperty.

◆ SafeDownCast()

static vtkShaderProperty* vtkShaderProperty::SafeDownCast ( vtkObjectBase o)
static

◆ NewInstanceInternal()

virtual vtkObjectBase* vtkShaderProperty::NewInstanceInternal ( ) const
protectedvirtual

Reimplemented in vtkOpenGLShaderProperty.

◆ NewInstance()

vtkShaderProperty* vtkShaderProperty::NewInstance ( ) const

◆ PrintSelf()

void vtkShaderProperty::PrintSelf ( ostream &  os,
vtkIndent  indent 
)
overridevirtual

Methods invoked by print to print information about the object including superclasses.

Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from vtkObject.

Reimplemented in vtkOpenGLShaderProperty.

◆ New()

static vtkShaderProperty* vtkShaderProperty::New ( )
static

Construct object with no shader replacements.

◆ DeepCopy()

void vtkShaderProperty::DeepCopy ( vtkShaderProperty p)

Assign one property to another.

◆ GetShaderMTime()

vtkMTimeType vtkShaderProperty::GetShaderMTime ( )

GetShaderMTime returns the last time a modification was made that affected the code of the shader (either code replacement was changed or one or more uniform variables were added or removed.

This timestamp can be used by mappers to determine if the shader must be recompiled. Simply changing the value of an existing uniform variable doesn't affect this timestamp as it doesn't change the shader code.

Returns
timestamp of the last modification

◆ HasVertexShaderCode()

bool vtkShaderProperty::HasVertexShaderCode ( )

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ HasFragmentShaderCode()

bool vtkShaderProperty::HasFragmentShaderCode ( )

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ HasGeometryShaderCode()

bool vtkShaderProperty::HasGeometryShaderCode ( )

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ HasTessControlShaderCode()

bool vtkShaderProperty::HasTessControlShaderCode ( )

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ HasTessEvalShaderCode()

bool vtkShaderProperty::HasTessEvalShaderCode ( )

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ SetVertexShaderCode()

virtual void vtkShaderProperty::SetVertexShaderCode ( const char *  )
virtual

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ GetVertexShaderCode()

virtual char* vtkShaderProperty::GetVertexShaderCode ( )
virtual

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ SetFragmentShaderCode()

virtual void vtkShaderProperty::SetFragmentShaderCode ( const char *  )
virtual

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ GetFragmentShaderCode()

virtual char* vtkShaderProperty::GetFragmentShaderCode ( )
virtual

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ SetGeometryShaderCode()

virtual void vtkShaderProperty::SetGeometryShaderCode ( const char *  )
virtual

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ GetGeometryShaderCode()

virtual char* vtkShaderProperty::GetGeometryShaderCode ( )
virtual

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ SetTessControlShaderCode()

virtual void vtkShaderProperty::SetTessControlShaderCode ( const char *  )
virtual

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ GetTessControlShaderCode()

virtual char* vtkShaderProperty::GetTessControlShaderCode ( )
virtual

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ SetTessEvaluationShaderCode()

virtual void vtkShaderProperty::SetTessEvaluationShaderCode ( const char *  )
virtual

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ GetTessEvaluationShaderCode()

virtual char* vtkShaderProperty::GetTessEvaluationShaderCode ( )
virtual

Allow the program to set the shader codes used directly instead of using the built in templates.

Be aware, if set, this template will be used for all cases, primitive types, picking etc.

◆ GetFragmentCustomUniforms()

virtual vtkUniforms* vtkShaderProperty::GetFragmentCustomUniforms ( )
virtual

The Uniforms object allows to set custom uniform variables that are used in replacement shader code.

◆ GetVertexCustomUniforms()

virtual vtkUniforms* vtkShaderProperty::GetVertexCustomUniforms ( )
virtual

The Uniforms object allows to set custom uniform variables that are used in replacement shader code.

◆ GetGeometryCustomUniforms()

virtual vtkUniforms* vtkShaderProperty::GetGeometryCustomUniforms ( )
virtual

The Uniforms object allows to set custom uniform variables that are used in replacement shader code.

◆ GetTessControlCustomUniforms()

virtual vtkUniforms* vtkShaderProperty::GetTessControlCustomUniforms ( )
virtual

The Uniforms object allows to set custom uniform variables that are used in replacement shader code.

◆ GetTessEvaluationCustomUniforms()

virtual vtkUniforms* vtkShaderProperty::GetTessEvaluationCustomUniforms ( )
virtual

The Uniforms object allows to set custom uniform variables that are used in replacement shader code.

◆ AddVertexShaderReplacement()

virtual void vtkShaderProperty::AddVertexShaderReplacement ( const std::string &  originalValue,
bool  replaceFirst,
const std::string &  replacementValue,
bool  replaceAll 
)
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ AddFragmentShaderReplacement()

virtual void vtkShaderProperty::AddFragmentShaderReplacement ( const std::string &  originalValue,
bool  replaceFirst,
const std::string &  replacementValue,
bool  replaceAll 
)
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ AddGeometryShaderReplacement()

virtual void vtkShaderProperty::AddGeometryShaderReplacement ( const std::string &  originalValue,
bool  replaceFirst,
const std::string &  replacementValue,
bool  replaceAll 
)
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ AddTessControlShaderReplacement()

virtual void vtkShaderProperty::AddTessControlShaderReplacement ( const std::string &  originalValue,
bool  replaceFirst,
const std::string &  replacementValue,
bool  replaceAll 
)
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ AddTessEvaluationShaderReplacement()

virtual void vtkShaderProperty::AddTessEvaluationShaderReplacement ( const std::string &  originalValue,
bool  replaceFirst,
const std::string &  replacementValue,
bool  replaceAll 
)
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ GetNumberOfShaderReplacements()

virtual int vtkShaderProperty::GetNumberOfShaderReplacements ( )
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ GetNthShaderReplacementTypeAsString()

virtual std::string vtkShaderProperty::GetNthShaderReplacementTypeAsString ( vtkIdType  index)
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ GetNthShaderReplacement()

virtual void vtkShaderProperty::GetNthShaderReplacement ( vtkIdType  index,
std::string &  name,
bool &  replaceFirst,
std::string &  replacementValue,
bool &  replaceAll 
)
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ ClearVertexShaderReplacement()

virtual void vtkShaderProperty::ClearVertexShaderReplacement ( const std::string &  originalValue,
bool  replaceFirst 
)
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ ClearFragmentShaderReplacement()

virtual void vtkShaderProperty::ClearFragmentShaderReplacement ( const std::string &  originalValue,
bool  replaceFirst 
)
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ ClearGeometryShaderReplacement()

virtual void vtkShaderProperty::ClearGeometryShaderReplacement ( const std::string &  originalValue,
bool  replaceFirst 
)
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ ClearTessControlShaderReplacement()

virtual void vtkShaderProperty::ClearTessControlShaderReplacement ( const std::string &  originalValue,
bool  replaceFirst 
)
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ ClearTessEvaluationShaderReplacement()

virtual void vtkShaderProperty::ClearTessEvaluationShaderReplacement ( const std::string &  originalValue,
bool  replaceFirst 
)
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ ClearAllVertexShaderReplacements()

virtual void vtkShaderProperty::ClearAllVertexShaderReplacements ( )
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ ClearAllFragmentShaderReplacements()

virtual void vtkShaderProperty::ClearAllFragmentShaderReplacements ( )
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ ClearAllGeometryShaderReplacements()

virtual void vtkShaderProperty::ClearAllGeometryShaderReplacements ( )
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ ClearAllTessControlShaderReplacements()

virtual void vtkShaderProperty::ClearAllTessControlShaderReplacements ( )
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ ClearAllTessEvalShaderReplacements()

virtual void vtkShaderProperty::ClearAllTessEvalShaderReplacements ( )
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

◆ ClearAllShaderReplacements()

virtual void vtkShaderProperty::ClearAllShaderReplacements ( )
pure virtual

This function enables you to apply your own substitutions to the shader creation process.

The shader code in this class is created by applying a bunch of string replacements to a shader template. Using this function you can apply your own string replacements to add features you desire.

Implemented in vtkOpenGLShaderProperty.

Member Data Documentation

◆ VertexShaderCode

char* vtkShaderProperty::VertexShaderCode
protected

Definition at line 234 of file vtkShaderProperty.h.

◆ FragmentShaderCode

char* vtkShaderProperty::FragmentShaderCode
protected

Definition at line 235 of file vtkShaderProperty.h.

◆ GeometryShaderCode

char* vtkShaderProperty::GeometryShaderCode
protected

Definition at line 236 of file vtkShaderProperty.h.

◆ TessControlShaderCode

char* vtkShaderProperty::TessControlShaderCode
protected

Definition at line 237 of file vtkShaderProperty.h.

◆ TessEvaluationShaderCode

char* vtkShaderProperty::TessEvaluationShaderCode
protected

Definition at line 238 of file vtkShaderProperty.h.

◆ FragmentCustomUniforms

vtkNew<vtkUniforms> vtkShaderProperty::FragmentCustomUniforms
protected

Definition at line 240 of file vtkShaderProperty.h.

◆ VertexCustomUniforms

vtkNew<vtkUniforms> vtkShaderProperty::VertexCustomUniforms
protected

Definition at line 241 of file vtkShaderProperty.h.

◆ GeometryCustomUniforms

vtkNew<vtkUniforms> vtkShaderProperty::GeometryCustomUniforms
protected

Definition at line 242 of file vtkShaderProperty.h.

◆ TessControlCustomUniforms

vtkNew<vtkUniforms> vtkShaderProperty::TessControlCustomUniforms
protected

Definition at line 243 of file vtkShaderProperty.h.

◆ TessEvaluationCustomUniforms

vtkNew<vtkUniforms> vtkShaderProperty::TessEvaluationCustomUniforms
protected

Definition at line 244 of file vtkShaderProperty.h.


The documentation for this class was generated from the following file: