Public Member Functions | Static Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes | Static Protected Attributes | Private Types | Private Attributes | List of all members
Ogre::GLSLESProgramPipelineManager Class Reference

Ogre assumes that there are separate vertex and fragment programs to deal with but GLSL ES has one program pipeline object that represents the active vertex and fragment program objects during a rendering state. More...

#include <OgreGLSLESProgramPipelineManager.h>

Inheritance diagram for Ogre::GLSLESProgramPipelineManager:
Inheritance graph
[legend]

Public Member Functions

 GLSLESProgramPipelineManager (void)
 
 ~GLSLESProgramPipelineManager (void)
 
void extractConstantDefs (const String &src, GpuNamedConstants &constantDefs, const String &filename)
 Populate a list of uniforms based on GLSL ES source. More...
 
void extractUniforms (GLuint programObject, const GpuConstantDefinitionMap *vertexConstantDefs, const GpuConstantDefinitionMap *fragmentConstantDefs, GLUniformReferenceList &list, GLUniformBufferList &sharedList)
 Populate a list of uniforms based on a program object. More...
 
GLSLESProgramPipelinegetActiveProgramPipeline (void)
 Get the program object that links the two active program objects together. More...
 
void optimiseShaderSource (GLSLESGpuProgram *gpuProgram)
 
void setActiveFragmentLinkProgram (GLSLESGpuProgram *fragmentGpuProgram)
 
void setActiveVertexLinkProgram (GLSLESGpuProgram *vertexGpuProgram)
 Set the active vertex and fragment link programs for the next rendering state. More...
 

Static Public Member Functions

static GLSLESProgramPipelineManagergetSingleton (void)
 
static GLSLESProgramPipelineManagergetSingletonPtr (void)
 

Protected Types

typedef map< String, GLenum >::type StringToEnumMap
 

Protected Member Functions

void completeDefInfo (GLenum gltype, GpuConstantDefinition &defToUpdate)
 Use type to complete other information. More...
 
bool completeParamSource (const String &paramName, const GpuConstantDefinitionMap *vertexConstantDefs, const GpuConstantDefinitionMap *fragmentConstantDefs, GLUniformReference &refToUpdate)
 Find where the data for a specific uniform should come from, populate. More...
 
void parseIndividualConstant (const String &src, GpuNamedConstants &defs, String::size_type currPos, const String &filename, GpuSharedParametersPtr sharedParams)
 

Protected Attributes

GLSLESGpuProgrammActiveFragmentGpuProgram
 
GLSLESGpuProgrammActiveVertexGpuProgram
 Active objects defining the active rendering gpu state. More...
 
struct glslopt_ctx * mGLSLOptimiserContext
 
StringToEnumMap mTypeEnumMap
 

Static Protected Attributes

static GLSLESProgramPipelineManagermsSingleton
 

Private Types

typedef ProgramPipelineMap::iterator ProgramPipelineIterator
 
typedef map< uint64, GLSLESProgramPipeline * >::type ProgramPipelineMap
 

Private Attributes

GLSLESProgramPipelinemActiveProgramPipeline
 Active objects defining the active rendering gpu state. More...
 
ProgramPipelineMap mProgramPipelines
 Container holding previously created program pipeline objects. More...
 

Detailed Description

Ogre assumes that there are separate vertex and fragment programs to deal with but GLSL ES has one program pipeline object that represents the active vertex and fragment program objects during a rendering state.

GLSL vertex and fragment program objects are compiled separately and then attached to a program object and then the program pipeline object is linked. Since Ogre can only handle one vertex program stage and one fragment program stage being active in a pass, the GLSL ES Program Pipeline Manager does the same. The GLSL ES Program Pipeline Manager acts as a state machine and activates a pipeline object based on the active vertex and fragment program. Previously created pipeline objects are stored along with a unique key in a hash_map for quick retrieval the next time the pipeline object is required.

Definition at line 48 of file OgreGLSLESProgramPipelineManager.h.

Member Typedef Documentation

◆ ProgramPipelineIterator

typedef ProgramPipelineMap::iterator Ogre::GLSLESProgramPipelineManager::ProgramPipelineIterator
private

Definition at line 53 of file OgreGLSLESProgramPipelineManager.h.

◆ ProgramPipelineMap

Definition at line 52 of file OgreGLSLESProgramPipelineManager.h.

◆ StringToEnumMap

typedef map<String, GLenum>::type Ogre::GLSLESProgramManagerCommon::StringToEnumMap
protectedinherited

Definition at line 61 of file OgreGLSLESProgramManagerCommon.h.

Constructor & Destructor Documentation

◆ GLSLESProgramPipelineManager()

Ogre::GLSLESProgramPipelineManager::GLSLESProgramPipelineManager ( void  )

◆ ~GLSLESProgramPipelineManager()

Ogre::GLSLESProgramPipelineManager::~GLSLESProgramPipelineManager ( void  )

Member Function Documentation

◆ completeDefInfo()

void Ogre::GLSLESProgramManagerCommon::completeDefInfo ( GLenum  gltype,
GpuConstantDefinition defToUpdate 
)
protectedinherited

Use type to complete other information.

◆ completeParamSource()

bool Ogre::GLSLESProgramManagerCommon::completeParamSource ( const String paramName,
const GpuConstantDefinitionMap vertexConstantDefs,
const GpuConstantDefinitionMap fragmentConstantDefs,
GLUniformReference refToUpdate 
)
protectedinherited

Find where the data for a specific uniform should come from, populate.

◆ extractConstantDefs()

void Ogre::GLSLESProgramManagerCommon::extractConstantDefs ( const String src,
GpuNamedConstants constantDefs,
const String filename 
)
inherited

Populate a list of uniforms based on GLSL ES source.

Parameters
srcReference to the source code
constantDefsThe defs to populate (will not be cleared before adding, clear it yourself before calling this if that's what you want).
filenameThe file name this came from, for logging errors.

◆ extractUniforms()

void Ogre::GLSLESProgramManagerCommon::extractUniforms ( GLuint  programObject,
const GpuConstantDefinitionMap vertexConstantDefs,
const GpuConstantDefinitionMap fragmentConstantDefs,
GLUniformReferenceList list,
GLUniformBufferList sharedList 
)
inherited

Populate a list of uniforms based on a program object.

Parameters
programObjectHandle to the program object to query
vertexConstantDefsDefinition of the constants extracted from the vertex program, used to match up physical buffer indexes with program uniforms. May be null if there is no vertex program.
fragmentConstantDefsDefinition of the constants extracted from the fragment program, used to match up physical buffer indexes with program uniforms. May be null if there is no fragment program.
listThe list to populate (will not be cleared before adding, clear it yourself before calling this if that's what you want).

◆ getActiveProgramPipeline()

GLSLESProgramPipeline* Ogre::GLSLESProgramPipelineManager::getActiveProgramPipeline ( void  )

Get the program object that links the two active program objects together.

If a program pipeline object was not already created and linked a new one is created and linked.

◆ getSingleton()

static GLSLESProgramPipelineManager& Ogre::GLSLESProgramPipelineManager::getSingleton ( void  )
static

◆ getSingletonPtr()

static GLSLESProgramPipelineManager* Ogre::GLSLESProgramPipelineManager::getSingletonPtr ( void  )
static

◆ optimiseShaderSource()

void Ogre::GLSLESProgramManagerCommon::optimiseShaderSource ( GLSLESGpuProgram gpuProgram)
inherited

◆ parseIndividualConstant()

void Ogre::GLSLESProgramManagerCommon::parseIndividualConstant ( const String src,
GpuNamedConstants defs,
String::size_type  currPos,
const String filename,
GpuSharedParametersPtr  sharedParams 
)
protectedinherited

◆ setActiveFragmentLinkProgram()

void Ogre::GLSLESProgramPipelineManager::setActiveFragmentLinkProgram ( GLSLESGpuProgram fragmentGpuProgram)

◆ setActiveVertexLinkProgram()

void Ogre::GLSLESProgramPipelineManager::setActiveVertexLinkProgram ( GLSLESGpuProgram vertexGpuProgram)

Set the active vertex and fragment link programs for the next rendering state.

The active program pipeline object will be cleared. Normally called from the GLSLESGpuProgram::bindProgram and unbindProgram methods

Member Data Documentation

◆ mActiveFragmentGpuProgram

GLSLESGpuProgram* Ogre::GLSLESProgramManagerCommon::mActiveFragmentGpuProgram
protectedinherited

Definition at line 59 of file OgreGLSLESProgramManagerCommon.h.

◆ mActiveProgramPipeline

GLSLESProgramPipeline* Ogre::GLSLESProgramPipelineManager::mActiveProgramPipeline
private

Active objects defining the active rendering gpu state.

Definition at line 59 of file OgreGLSLESProgramPipelineManager.h.

◆ mActiveVertexGpuProgram

GLSLESGpuProgram* Ogre::GLSLESProgramManagerCommon::mActiveVertexGpuProgram
protectedinherited

Active objects defining the active rendering gpu state.

Definition at line 58 of file OgreGLSLESProgramManagerCommon.h.

◆ mGLSLOptimiserContext

struct glslopt_ctx* Ogre::GLSLESProgramManagerCommon::mGLSLOptimiserContext
protectedinherited

Definition at line 64 of file OgreGLSLESProgramManagerCommon.h.

◆ mProgramPipelines

ProgramPipelineMap Ogre::GLSLESProgramPipelineManager::mProgramPipelines
private

Container holding previously created program pipeline objects.

Definition at line 56 of file OgreGLSLESProgramPipelineManager.h.

◆ msSingleton

Definition at line 75 of file OgreSingleton.h.

◆ mTypeEnumMap

StringToEnumMap Ogre::GLSLESProgramManagerCommon::mTypeEnumMap
protectedinherited

Definition at line 62 of file OgreGLSLESProgramManagerCommon.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 Sun Oct 22 2017 04:04:15