OGRE  1.9
Object-Oriented Graphics Rendering Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Ogre::RTShader::Function Class Reference

A class that represents a shader based program function. More...

#include <OgreShaderFunction.h>

+ Inheritance diagram for Ogre::RTShader::Function:
+ Collaboration diagram for Ogre::RTShader::Function:

Public Types

enum  FunctionType { FFT_INTERNAL, FFT_VS_MAIN, FFT_PS_MAIN }
 

Public Member Functions

void addAtomInstance (FunctionAtom *atomInstance)
 Add a function atom instance to this function. More...
 
void addInputParameter (ParameterPtr parameter)
 Add input parameter to this function. More...
 
void addOutputParameter (ParameterPtr parameter)
 Add output parameter to this function. More...
 
void deleteAllInputParameters ()
 Delete all input parameters from this function. More...
 
void deleteAllOutputParameters ()
 Delete all output parameters from this function. More...
 
bool deleteAtomInstance (FunctionAtom *atomInstance)
 Delete a function atom instance from this function. More...
 
void deleteInputParameter (ParameterPtr parameter)
 Delete input parameter from this function. More...
 
void deleteOutputParameter (ParameterPtr parameter)
 Delete output parameter from this function. More...
 
FunctionAtomInstanceListgetAtomInstances ()
 Return list of atom instances composing this function. More...
 
const FunctionAtomInstanceListgetAtomInstances () const
 Return list of atom instances composing this function. More...
 
const StringgetDescription () const
 Get the description of this function. More...
 
FunctionType getFunctionType () const
 get function type. More...
 
const ShaderParameterListgetInputParameters () const
 Return a list of input parameters. More...
 
const ShaderParameterListgetLocalParameters () const
 Return a list of local parameters. More...
 
const StringgetName () const
 Get the name of this function. More...
 
const ShaderParameterListgetOutputParameters () const
 Return a list of output parameters. More...
 
ParameterPtr getParameterByContent (const ShaderParameterList &parameterList, const Parameter::Content content, GpuConstantType type)
 Get parameter by a given content and type from the given parameter list. More...
 
void operator delete (void *ptr)
 
void operator delete (void *ptr, void *)
 
void operator delete (void *ptr, const char *, int, const char *)
 
void operator delete[] (void *ptr)
 
void operator delete[] (void *ptr, const char *, int, const char *)
 
void * operator new (size_t sz, const char *file, int line, const char *func)
 operator new, with debug line info More...
 
void * operator new (size_t sz)
 
void * operator new (size_t sz, void *ptr)
 placement operator new More...
 
void * operator new[] (size_t sz, const char *file, int line, const char *func)
 array operator new, with debug line info More...
 
void * operator new[] (size_t sz)
 
ParameterPtr resolveInputParameter (Parameter::Semantic semantic, int index, const Parameter::Content content, GpuConstantType type)
 Resolve input parameter of this function. More...
 
ParameterPtr resolveLocalParameter (Parameter::Semantic semantic, int index, const String &name, GpuConstantType type)
 Resolve local parameter of this function. More...
 
ParameterPtr resolveLocalParameter (Parameter::Semantic semantic, int index, const Parameter::Content content, GpuConstantType type)
 Resolve local parameter of this function. More...
 
ParameterPtr resolveOutputParameter (Parameter::Semantic semantic, int index, const Parameter::Content content, GpuConstantType type)
 Resolve output parameter of this function. More...
 
void sortAtomInstances ()
 Sort all atom instances of this function. More...
 

Static Public Member Functions

static ParameterPtr getParameterByName (const ShaderParameterList &parameterList, const String &name)
 Get parameter by a given name from the given parameter list. More...
 
static ParameterPtr getParameterBySemantic (const ShaderParameterList &parameterList, const Parameter::Semantic semantic, int index)
 Get parameter by a given semantic and index from the given parameter list. More...
 

Protected Member Functions

 Function (const String &name, const String &desc, const FunctionType functionType)
 Class constructor. More...
 
 ~Function ()
 Class destructor. More...
 
void addParameter (ShaderParameterList &parameterList, ParameterPtr parameter)
 Add parameter to given list. More...
 
void deleteParameter (ShaderParameterList &parameterList, ParameterPtr parameter)
 Delete parameter from a given list. More...
 

Protected Attributes

FunctionAtomInstanceList mAtomInstances
 
String mDescription
 
FunctionType mFunctionType
 
ShaderParameterList mInputParameters
 
ShaderParameterList mLocalParameters
 
String mName
 
ShaderParameterList mOutputParameters
 

Friends

class Program
 

Detailed Description

A class that represents a shader based program function.

Definition at line 46 of file OgreShaderFunction.h.

Member Enumeration Documentation

Enumerator
FFT_INTERNAL 
FFT_VS_MAIN 
FFT_PS_MAIN 

Definition at line 50 of file OgreShaderFunction.h.

Constructor & Destructor Documentation

Ogre::RTShader::Function::Function ( const String name,
const String desc,
const FunctionType  functionType 
)
protected

Class constructor.

Parameters
nameThe name of this function.
descThe description of this function.
Remarks
This class is allocated via an instance of Program class.
Ogre::RTShader::Function::~Function ( )
protected

Class destructor.

Member Function Documentation

void Ogre::RTShader::Function::addAtomInstance ( FunctionAtom atomInstance)

Add a function atom instance to this function.

Parameters
atomInstanceThe atom instance to add.
void Ogre::RTShader::Function::addInputParameter ( ParameterPtr  parameter)

Add input parameter to this function.

void Ogre::RTShader::Function::addOutputParameter ( ParameterPtr  parameter)

Add output parameter to this function.

void Ogre::RTShader::Function::addParameter ( ShaderParameterList parameterList,
ParameterPtr  parameter 
)
protected

Add parameter to given list.

void Ogre::RTShader::Function::deleteAllInputParameters ( )

Delete all input parameters from this function.

void Ogre::RTShader::Function::deleteAllOutputParameters ( )

Delete all output parameters from this function.

bool Ogre::RTShader::Function::deleteAtomInstance ( FunctionAtom atomInstance)

Delete a function atom instance from this function.

Parameters
atomInstanceThe atom instance to OGRE_DELETE.
void Ogre::RTShader::Function::deleteInputParameter ( ParameterPtr  parameter)

Delete input parameter from this function.

void Ogre::RTShader::Function::deleteOutputParameter ( ParameterPtr  parameter)

Delete output parameter from this function.

void Ogre::RTShader::Function::deleteParameter ( ShaderParameterList parameterList,
ParameterPtr  parameter 
)
protected

Delete parameter from a given list.

FunctionAtomInstanceList& Ogre::RTShader::Function::getAtomInstances ( )
inline

Return list of atom instances composing this function.

Definition at line 156 of file OgreShaderFunction.h.

const FunctionAtomInstanceList& Ogre::RTShader::Function::getAtomInstances ( ) const
inline

Return list of atom instances composing this function.

(Const version)

Definition at line 159 of file OgreShaderFunction.h.

const String& Ogre::RTShader::Function::getDescription ( void  ) const
inline

Get the description of this function.

Definition at line 64 of file OgreShaderFunction.h.

FunctionType Ogre::RTShader::Function::getFunctionType ( ) const

get function type.

const ShaderParameterList& Ogre::RTShader::Function::getInputParameters ( ) const
inline

Return a list of input parameters.

Definition at line 134 of file OgreShaderFunction.h.

const ShaderParameterList& Ogre::RTShader::Function::getLocalParameters ( ) const
inline

Return a list of local parameters.

Definition at line 140 of file OgreShaderFunction.h.

const String& Ogre::RTShader::Function::getName ( void  ) const
inline

Get the name of this function.

Definition at line 61 of file OgreShaderFunction.h.

const ShaderParameterList& Ogre::RTShader::Function::getOutputParameters ( ) const
inline

Return a list of output parameters.

Definition at line 137 of file OgreShaderFunction.h.

ParameterPtr Ogre::RTShader::Function::getParameterByContent ( const ShaderParameterList parameterList,
const Parameter::Content  content,
GpuConstantType  type 
)

Get parameter by a given content and type from the given parameter list.

Parameters
parameterListThe parameters list to look in.
contentThe content of the parameter to search in the list.
typeThe type of the parameter to search in the list.
Remarks
Return NULL if no matching parameter found.
static ParameterPtr Ogre::RTShader::Function::getParameterByName ( const ShaderParameterList parameterList,
const String name 
)
static

Get parameter by a given name from the given parameter list.

Parameters
parameterListThe parameters list to look in.
nameThe name of the parameter to search in the list.
Remarks
Return NULL if no matching parameter found.
static ParameterPtr Ogre::RTShader::Function::getParameterBySemantic ( const ShaderParameterList parameterList,
const Parameter::Semantic  semantic,
int  index 
)
static

Get parameter by a given semantic and index from the given parameter list.

Parameters
parameterListThe parameters list to look in.
semanticThe semantic of the parameter to search in the list.
indexThe index of the parameter to search in the list.
Remarks
Return NULL if no matching parameter found.
template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr)
inlineinherited

Definition at line 96 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr,
void *   
)
inlineinherited

Definition at line 102 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr,
const char *  ,
int  ,
const char *   
)
inlineinherited

Definition at line 108 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete[] ( void *  ptr)
inlineinherited

Definition at line 113 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete[] ( void *  ptr,
const char *  ,
int  ,
const char *   
)
inlineinherited

Definition at line 119 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz,
const char *  file,
int  line,
const char *  func 
)
inlineinherited

operator new, with debug line info

Definition at line 68 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz)
inlineinherited

Definition at line 73 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz,
void *  ptr 
)
inlineinherited

placement operator new

Definition at line 79 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new[] ( size_t  sz,
const char *  file,
int  line,
const char *  func 
)
inlineinherited

array operator new, with debug line info

Definition at line 86 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new[] ( size_t  sz)
inlineinherited

Definition at line 91 of file OgreMemoryAllocatedObject.h.

ParameterPtr Ogre::RTShader::Function::resolveInputParameter ( Parameter::Semantic  semantic,
int  index,
const Parameter::Content  content,
GpuConstantType  type 
)

Resolve input parameter of this function.

Parameters
semanticThe desired parameter semantic.
indexThe index of the desired parameter.
contentThe content of the parameter.
typeThe type of the desired parameter. Return parameter instance in case of that resolve operation succeeded.
Remarks
Pass -1 as index parameter to create a new parameter with the desired semantic and type.
ParameterPtr Ogre::RTShader::Function::resolveLocalParameter ( Parameter::Semantic  semantic,
int  index,
const String name,
GpuConstantType  type 
)

Resolve local parameter of this function.

Parameters
semanticThe desired parameter semantic.
indexThe index of the desired parameter.
nameThe name of the parameter.
typeThe type of the desired parameter. Return parameter instance in case of that resolve operation succeeded.
ParameterPtr Ogre::RTShader::Function::resolveLocalParameter ( Parameter::Semantic  semantic,
int  index,
const Parameter::Content  content,
GpuConstantType  type 
)

Resolve local parameter of this function.

Parameters
semanticThe desired parameter semantic.
indexThe index of the desired parameter.
contentThe content of the parameter.
typeThe type of the desired parameter. Return parameter instance in case of that resolve operation succeeded.
ParameterPtr Ogre::RTShader::Function::resolveOutputParameter ( Parameter::Semantic  semantic,
int  index,
const Parameter::Content  content,
GpuConstantType  type 
)

Resolve output parameter of this function.

Parameters
semanticThe desired parameter semantic.
indexThe index of the desired parameter.
contentThe content of the parameter.
typeThe type of the desired parameter. Return parameter instance in case of that resolve operation succeeded.
Remarks
Pass -1 as index parameter to create a new parameter with the desired semantic and type.
void Ogre::RTShader::Function::sortAtomInstances ( )

Sort all atom instances of this function.

Friends And Related Function Documentation

friend class Program
friend

Definition at line 218 of file OgreShaderFunction.h.

Member Data Documentation

FunctionAtomInstanceList Ogre::RTShader::Function::mAtomInstances
protected

Definition at line 213 of file OgreShaderFunction.h.

String Ogre::RTShader::Function::mDescription
protected

Definition at line 205 of file OgreShaderFunction.h.

FunctionType Ogre::RTShader::Function::mFunctionType
protected

Definition at line 215 of file OgreShaderFunction.h.

ShaderParameterList Ogre::RTShader::Function::mInputParameters
protected

Definition at line 207 of file OgreShaderFunction.h.

ShaderParameterList Ogre::RTShader::Function::mLocalParameters
protected

Definition at line 211 of file OgreShaderFunction.h.

String Ogre::RTShader::Function::mName
protected

Definition at line 203 of file OgreShaderFunction.h.

ShaderParameterList Ogre::RTShader::Function::mOutputParameters
protected

Definition at line 209 of file OgreShaderFunction.h.


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