OGRE  2.2.4
Object-Oriented Graphics Rendering Engine
Ogre::GLSLESProgramCommon Class Referenceabstract

C++ encapsulation of GLSL ES Program Object. More...

#include <OgreGLSLESProgramCommon.h>

+ Inheritance diagram for Ogre::GLSLESProgramCommon:

Public Member Functions

 GLSLESProgramCommon (GLSLESShader *vertexProgram, GLSLESShader *fragmentProgram)
 Constructor should only be used by GLSLESLinkProgramManager and GLSLESProgramPipelineManager. More...
 
virtual ~GLSLESProgramCommon (void)
 
virtual void activate (void)=0
 Makes a program object active by making sure it is linked and then putting it in use. More...
 
virtual void extractLayoutQualifiers (void)
 Finds layout qualifiers in the shader source and sets attribute indices appropriately. More...
 
virtual GLint getAttributeIndex (VertexElementSemantic semantic, uint index)
 Get the index of a non-standard attribute bound in the linked code. More...
 
GLint getBaseInstanceLocation () const
 
GLSLESShadergetFragmentShader () const
 
GLuint getGLProgramHandle (void) const
 Get the GL Handle for the program object. More...
 
GLSLESShadergetVertexShader () const
 
bool isAttributeValid (VertexElementSemantic semantic, uint index)
 Is a non-standard attribute bound in the linked code? More...
 
bool isSkeletalAnimationIncluded (void) const
 Returns whether the linked program includes the required instructions to perform skeletal animation. More...
 
void setSkeletalAnimationIncluded (bool included)
 Sets whether the linked program includes the required instructions to perform skeletal animation. More...
 
virtual void updatePassIterationUniforms (GpuProgramParametersSharedPtr params)=0
 Updates program object uniforms using data from pass iteration GpuProgramParameters. More...
 
virtual void updateUniformBlocks (GpuProgramParametersSharedPtr params, uint16 mask, GpuProgramType fromProgType)=0
 Updates program object uniform blocks using data from GpuProgramParameters. More...
 
virtual void updateUniforms (GpuProgramParametersSharedPtr params, uint16 mask, GpuProgramType fromProgType)=0
 Updates program object uniforms using data from GpuProgramParameters. More...
 

Detailed Description

C++ encapsulation of GLSL ES Program Object.

Constructor & Destructor Documentation

◆ GLSLESProgramCommon()

Ogre::GLSLESProgramCommon::GLSLESProgramCommon ( GLSLESShader vertexProgram,
GLSLESShader fragmentProgram 
)

Constructor should only be used by GLSLESLinkProgramManager and GLSLESProgramPipelineManager.

◆ ~GLSLESProgramCommon()

virtual Ogre::GLSLESProgramCommon::~GLSLESProgramCommon ( void  )
virtual

Member Function Documentation

◆ activate()

virtual void Ogre::GLSLESProgramCommon::activate ( void  )
pure virtual

Makes a program object active by making sure it is linked and then putting it in use.

Implemented in Ogre::GLSLESProgramPipeline.

◆ extractLayoutQualifiers()

virtual void Ogre::GLSLESProgramCommon::extractLayoutQualifiers ( void  )
virtual

Finds layout qualifiers in the shader source and sets attribute indices appropriately.

◆ getAttributeIndex()

virtual GLint Ogre::GLSLESProgramCommon::getAttributeIndex ( VertexElementSemantic  semantic,
uint  index 
)
virtual

Get the index of a non-standard attribute bound in the linked code.

Reimplemented in Ogre::GLSLESProgramPipeline.

◆ getBaseInstanceLocation()

GLint Ogre::GLSLESProgramCommon::getBaseInstanceLocation ( ) const
inline

◆ getFragmentShader()

GLSLESShader* Ogre::GLSLESProgramCommon::getFragmentShader ( ) const
inline

◆ getGLProgramHandle()

GLuint Ogre::GLSLESProgramCommon::getGLProgramHandle ( void  ) const
inline

Get the GL Handle for the program object.

◆ getVertexShader()

GLSLESShader* Ogre::GLSLESProgramCommon::getVertexShader ( ) const
inline

◆ isAttributeValid()

bool Ogre::GLSLESProgramCommon::isAttributeValid ( VertexElementSemantic  semantic,
uint  index 
)

Is a non-standard attribute bound in the linked code?

◆ isSkeletalAnimationIncluded()

bool Ogre::GLSLESProgramCommon::isSkeletalAnimationIncluded ( void  ) const
inline

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

Remarks
If this returns true, OGRE will not blend the geometry according to skeletal animation, it will expect the vertex program to do it.

◆ setSkeletalAnimationIncluded()

void Ogre::GLSLESProgramCommon::setSkeletalAnimationIncluded ( bool  included)
inline

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

Remarks
If this is set to true, OGRE will not blend the geometry according to skeletal animation, it will expect the vertex program to do it.

◆ updatePassIterationUniforms()

virtual void Ogre::GLSLESProgramCommon::updatePassIterationUniforms ( GpuProgramParametersSharedPtr  params)
pure virtual

Updates program object uniforms using data from pass iteration GpuProgramParameters.

Normally called by GLSLESShader::bindMultiPassParameters() just before multi pass rendering occurs.

Implemented in Ogre::GLSLESProgramPipeline.

◆ updateUniformBlocks()

virtual void Ogre::GLSLESProgramCommon::updateUniformBlocks ( GpuProgramParametersSharedPtr  params,
uint16  mask,
GpuProgramType  fromProgType 
)
pure virtual

Updates program object uniform blocks using data from GpuProgramParameters.

Normally called by GLSLESShader::bindParameters() just before rendering occurs.

Implemented in Ogre::GLSLESProgramPipeline.

◆ updateUniforms()

virtual void Ogre::GLSLESProgramCommon::updateUniforms ( GpuProgramParametersSharedPtr  params,
uint16  mask,
GpuProgramType  fromProgType 
)
pure virtual

Updates program object uniforms using data from GpuProgramParameters.

Normally called by GLSLESShader::bindParameters() just before rendering occurs.

Implemented in Ogre::GLSLESProgramPipeline.


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