Public Member Functions | Protected Member Functions | Protected Attributes | Friends
Ogre::RTShader::Program Class Reference

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

#include <OgreShaderProgram.h>

Inheritance diagram for Ogre::RTShader::Program:
Inheritance graph
[legend]

List of all members.

Public Member Functions

void addDependency (const String &libFileName)
 Add dependency for this program.
FunctioncreateFunction (const String &name, const String &desc, const Function::FunctionType functionType)
 Create new function in this program.
const StringgetDependency (unsigned int index) const
 Get the library name of the given index dependency.
size_t getDependencyCount () const
 Get the number of external libs this program depends on.
FunctiongetEntryPointFunction ()
 Get the entry point function of this program.
FunctiongetFunctionByName (const String &name)
 Get a function by a given name.
const ShaderFunctionListgetFunctions () const
 Get the function list of this program.
UniformParameterPtr getParameterByAutoType (GpuProgramParameters::AutoConstantType autoType)
 Get parameter by a given auto constant type.
UniformParameterPtr getParameterByName (const String &name)
 Get parameter by a given name.
UniformParameterPtr getParameterByType (GpuConstantType type, int index)
 Get parameter by a given type and index.
const UniformParameterListgetParameters () const
 Get the list of uniform parameters of this program.
bool getSkeletalAnimationIncluded () const
 Returns whether a vertex program includes the required instructions to perform skeletal animation.
GpuProgramType getType () const
 Get the type of this program.
bool getUseColumnMajorMatrices () const
 Returns whether Ogre will pass auto-bound matrices as column-major.
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
void * operator new (size_t sz)
void * operator new (size_t sz, void *ptr)
 placement operator new
void * operator new[] (size_t sz, const char *file, int line, const char *func)
 array operator new, with debug line info
void * operator new[] (size_t sz)
UniformParameterPtr resolveAutoParameterInt (GpuProgramParameters::AutoConstantType autoType, size_t data, size_t size=0)
 Resolve uniform auto constant parameter with associated int data of this program.
UniformParameterPtr resolveAutoParameterInt (GpuProgramParameters::AutoConstantType autoType, GpuConstantType type, size_t data, size_t size=0)
 Resolve uniform auto constant parameter with associated int data of this program.
UniformParameterPtr resolveAutoParameterReal (GpuProgramParameters::AutoConstantType autoType, Real data, size_t size=0)
 Resolve uniform auto constant parameter with associated real data of this program.
UniformParameterPtr resolveAutoParameterReal (GpuProgramParameters::AutoConstantType autoType, GpuConstantType type, Real data, size_t size=0)
 Resolve uniform auto constant parameter with associated real data of this program.
UniformParameterPtr resolveParameter (GpuConstantType type, int index, uint16 variability, const String &suggestedName, size_t size=0)
 Resolve uniform parameter of this program.
void setEntryPointFunction (Function *function)
 Set the entry point function.
void setSkeletalAnimationIncluded (bool value)
 Sets whether a vertex program includes the required instructions to perform skeletal animation.
void setUseColumnMajorMatrices (bool value)
 Tells Ogre whether auto-bound matrices should be sent in column or row-major order.

Protected Member Functions

 Program (GpuProgramType type)
 Class constructor.
 ~Program ()
 Class destructor.
void addParameter (UniformParameterPtr parameter)
 Add parameter to this program.
void destroyFunctions ()
 Destroy all functions of this program.
void destroyParameters ()
 Destroy all parameters of this program.
void removeParameter (UniformParameterPtr parameter)
 Remove parameter from this program.

Protected Attributes

bool mColumnMajorMatrices
StringVector mDependencies
FunctionmEntryPointFunction
ShaderFunctionList mFunctions
UniformParameterList mParameters
bool mSkeletalAnimation
GpuProgramType mType

Friends

class ProgramManager

Detailed Description

A class that represents a shader based program.

Definition at line 50 of file OgreShaderProgram.h.


Constructor & Destructor Documentation

Class constructor.

Parameters:
typeThe type of this program.

Class destructor.


Member Function Documentation

void Ogre::RTShader::Program::addDependency ( const String libFileName)

Add dependency for this program.

Basically a filename that will be included in this program and provide predefined shader functions code. One should verify that the given library file he provides can be reached by the resource manager. This step can be achieved using the ResourceGroupManager::addResourceLocation method.

Add parameter to this program.

Function* Ogre::RTShader::Program::createFunction ( const String name,
const String desc,
const Function::FunctionType  functionType 
)

Create new function in this program.

Return the newly created function instance.

Parameters:
nameThe name of the function to create.
descThe description of the function.

Destroy all functions of this program.

Destroy all parameters of this program.

const String& Ogre::RTShader::Program::getDependency ( unsigned int  index) const

Get the library name of the given index dependency.

Parameters:
indexThe index of the dependecy.

Get the number of external libs this program depends on.

Get the entry point function of this program.

Definition at line 147 of file OgreShaderProgram.h.

Get a function by a given name.

Return NULL if no matching function found.

Parameters:
nameThe name of the function to search for.

Get the function list of this program.

Definition at line 139 of file OgreShaderProgram.h.

Get parameter by a given auto constant type.

Parameters:
autoTypeThe auto type of the parameter to search for.
Remarks:
Return NULL if no matching parameter found.

Get parameter by a given name.

Parameters:
nameThe name of the parameter to search for.
Remarks:
Return NULL if no matching parameter found.

Get parameter by a given type and index.

Parameters:
typeThe type of the parameter to search for.
indexThe index of the parameter to search for.
Remarks:
Return NULL if no matching parameter found.

Get the list of uniform parameters of this program.

Definition at line 124 of file OgreShaderProgram.h.

Returns whether a vertex program includes the required instructions to perform skeletal animation.

Definition at line 173 of file OgreShaderProgram.h.

Get the type of this program.

Returns whether Ogre will pass auto-bound matrices as column-major.

Returns:
true, when the matrices will be passed in column-major order, false, when they will be passed as row-major.

Definition at line 192 of file OgreShaderProgram.h.

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

Definition at line 96 of file OgreMemoryAllocatedObject.h.

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

Definition at line 102 of file OgreMemoryAllocatedObject.h.

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

Definition at line 108 of file OgreMemoryAllocatedObject.h.

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

Definition at line 113 of file OgreMemoryAllocatedObject.h.

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

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 
) [inherited]

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) [inherited]

Definition at line 73 of file OgreMemoryAllocatedObject.h.

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

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 
) [inherited]

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) [inherited]

Definition at line 91 of file OgreMemoryAllocatedObject.h.

Remove parameter from this program.

Resolve uniform auto constant parameter with associated int data of this program.

Parameters:
autoTypeThe auto type of the desired parameter.
dataThe data to associate with the auto parameter.
sizenumber of elements in the parameter. Return parameter instance in case of that resolve operation succeeded.

Resolve uniform auto constant parameter with associated int data of this program.

Parameters:
autoTypeThe auto type of the desired parameter.
typeThe desired data type of the auto parameter.
dataThe data to associate with the auto parameter.
sizenumber of elements in the parameter. Return parameter instance in case of that resolve operation succeeded.

Resolve uniform auto constant parameter with associated real data of this program.

Parameters:
autoTypeThe auto type of the desired parameter.
dataThe data to associate with the auto parameter.
sizenumber of elements in the parameter. Return parameter instance in case of that resolve operation succeeded.

Resolve uniform auto constant parameter with associated real data of this program.

Parameters:
autoTypeThe auto type of the desired parameter.
typeThe desired data type of the auto parameter.
dataThe data to associate with the auto parameter.
sizenumber of elements in the parameter. Return parameter instance in case of that resolve operation succeeded.
UniformParameterPtr Ogre::RTShader::Program::resolveParameter ( GpuConstantType  type,
int  index,
uint16  variability,
const String suggestedName,
size_t  size = 0 
)

Resolve uniform parameter of this program.

Parameters:
typeThe type of the desired parameter.
indexThe index of the desired parameter.
suggestedNameThe suggested name for the parameter in case new one should be create.
variabilityHow this parameter varies (bitwise combination of GpuProgramVariability).
sizenumber of elements in the 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 type and index.

Set the entry point function.

Parameters:
functionThe function that will use as entry point of this program.

Definition at line 144 of file OgreShaderProgram.h.

Sets whether a vertex program includes the required instructions to perform skeletal animation.

Definition at line 168 of file OgreShaderProgram.h.

Tells Ogre whether auto-bound matrices should be sent in column or row-major order.

Remarks:
This method has the same effect as column_major_matrices option used when declaring manually written hlsl program. You want to use this method only when you use float3x4 type in a shader, e.g. for bone matrices. In mentioned case you should call this method with false as parameter.
For more detail see OGRE Manual, section 3.1.6 DirectX9 HLSL.
Note:
This setting has any effect only when the target language is HLSL.
Parameters:
valueShould Ogre pass auto-bound matrices as column-major? The default is true.

Definition at line 186 of file OgreShaderProgram.h.


Friends And Related Function Documentation

friend class ProgramManager [friend]

Definition at line 235 of file OgreShaderProgram.h.


Member Data Documentation

Definition at line 233 of file OgreShaderProgram.h.

Definition at line 229 of file OgreShaderProgram.h.

Definition at line 227 of file OgreShaderProgram.h.

Definition at line 225 of file OgreShaderProgram.h.

Definition at line 223 of file OgreShaderProgram.h.

Definition at line 231 of file OgreShaderProgram.h.

Definition at line 221 of file OgreShaderProgram.h.


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

Copyright © 2012 Torus Knot Software Ltd
Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
Last modified Mon Jul 27 2020 13:41:50