OGRE  1.12.5
Object-Oriented Graphics Rendering Engine
Ogre::GLSLMonolithicProgram Class Reference

Model of OpenGL program object created using the glLinkProgram method of linking. More...

#include <OgreGLSLMonolithicProgram.h>

+ Inheritance diagram for Ogre::GLSLMonolithicProgram:

Public Member Functions

 GLSLMonolithicProgram (const GLShaderList &shaders)
 Constructor should only be used by GLSLMonolithicProgramManager. More...
 
 ~GLSLMonolithicProgram (void)
 
void activate (void)
 Makes a program object active by making sure it is linked and then putting it in use. More...
 
void extractLayoutQualifiers (void)
 
uint getGLProgramHandle (void) const
 Get the GL Handle for the program object. More...
 
bool isUsingShader (GLSLShaderCommon *shader) const
 query if the program is using the given shader More...
 
void setTransformFeedbackVaryings (const std::vector< String > &nameStrings)
 
void updateAtomicCounters (GpuProgramParametersSharedPtr params, uint16 mask, GpuProgramType fromProgType)
 
void updateUniforms (GpuProgramParametersSharedPtr params, uint16 mask, GpuProgramType fromProgType)
 Updates program object uniforms using data from GpuProgramParameters. More...
 

Static Public Member Functions

static void bindFixedAttributes (GLuint program)
 
static int32 getFixedAttributeIndex (VertexElementSemantic semantic, uint index)
 Get the fixed attribute bindings normally used by GL for a semantic. More...
 
static bool getMicrocodeFromCache (uint32 id, GLuint programHandle)
 Get the the binary data of a program from the microcode cache. More...
 
static void useTightAttributeLayout ()
 use alternate vertex attribute layout using only 8 vertex attributes More...
 
static void writeMicrocodeToCache (uint32 id, GLuint programHandle)
 add the microcode to the cache More...
 

Detailed Description

Model of OpenGL program object created using the glLinkProgram method of linking.

Linking using glLinkProgram is supported by OpenGL 2.0 and up, but does not allow hot-swapping shaders without recompiling the program object like GLSLSeparableProgram can. Hence the name 'monolithic'.

Constructor & Destructor Documentation

◆ GLSLMonolithicProgram()

Ogre::GLSLMonolithicProgram::GLSLMonolithicProgram ( const GLShaderList shaders)
explicit

Constructor should only be used by GLSLMonolithicProgramManager.

◆ ~GLSLMonolithicProgram()

Ogre::GLSLMonolithicProgram::~GLSLMonolithicProgram ( void  )

Member Function Documentation

◆ activate()

void Ogre::GLSLMonolithicProgram::activate ( void  )
virtual

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

Implements Ogre::GLSLProgramCommon.

◆ updateUniforms()

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

Updates program object uniforms using data from GpuProgramParameters.

normally called by GLSLShader::bindParameters() just before rendering occurs.

Implements Ogre::GLSLProgramCommon.

◆ updateAtomicCounters()

void Ogre::GLSLMonolithicProgram::updateAtomicCounters ( GpuProgramParametersSharedPtr  params,
uint16  mask,
GpuProgramType  fromProgType 
)
inlinevirtual

Implements Ogre::GLSLProgram.

◆ bindFixedAttributes()

static void Ogre::GLSLProgram::bindFixedAttributes ( GLuint  program)
staticinherited

◆ getMicrocodeFromCache()

static bool Ogre::GLSLProgram::getMicrocodeFromCache ( uint32  id,
GLuint  programHandle 
)
staticinherited

Get the the binary data of a program from the microcode cache.

◆ writeMicrocodeToCache()

static void Ogre::GLSLProgram::writeMicrocodeToCache ( uint32  id,
GLuint  programHandle 
)
staticinherited

add the microcode to the cache

◆ setTransformFeedbackVaryings()

void Ogre::GLSLProgram::setTransformFeedbackVaryings ( const std::vector< String > &  nameStrings)
inherited

◆ extractLayoutQualifiers()

void Ogre::GLSLProgramCommon::extractLayoutQualifiers ( void  )
inherited

◆ getGLProgramHandle()

uint Ogre::GLSLProgramCommon::getGLProgramHandle ( void  ) const
inlineinherited

Get the GL Handle for the program object.

◆ isUsingShader()

bool Ogre::GLSLProgramCommon::isUsingShader ( GLSLShaderCommon shader) const
inlineinherited

query if the program is using the given shader

References Ogre::GpuProgram::getType().

◆ getFixedAttributeIndex()

static int32 Ogre::GLSLProgramCommon::getFixedAttributeIndex ( VertexElementSemantic  semantic,
uint  index 
)
staticinherited

Get the fixed attribute bindings normally used by GL for a semantic.

◆ useTightAttributeLayout()

static void Ogre::GLSLProgramCommon::useTightAttributeLayout ( )
staticinherited

use alternate vertex attribute layout using only 8 vertex attributes

For "Vivante GC1000" and "VideoCore IV" (notably in Raspberry Pi) on GLES2


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