![]() |
OGRE
13.0
Object-Oriented Graphics Rendering Engine
|
A factory that enables creation of GBuffer instances. More...
#include <OgreShaderExWBOIT.h>
Public Member Functions | |
SubRenderState * | createInstance (ScriptCompiler *compiler, PropertyAbstractNode *prop, Pass *pass, SGScriptTranslator *translator) override |
Create an instance of the SubRenderState based on script properties. More... | |
const String & | getType () const override |
Get the type of this sub render state factory. More... | |
void | writeInstance (MaterialSerializer *ser, SubRenderState *subRenderState, Pass *srcPass, Pass *dstPass) override |
Write the given sub-render state instance using the material serializer. More... | |
![]() | |
SubRenderStateFactory () | |
virtual | ~SubRenderStateFactory () |
virtual SubRenderState * | createInstance () |
Create an instance of the SubRenderState sub class it suppose to create. More... | |
virtual SubRenderState * | createInstance (ScriptCompiler *compiler, PropertyAbstractNode *prop, TextureUnitState *texState, SGScriptTranslator *translator) |
Create an instance of the SubRenderState based on script properties. More... | |
virtual SubRenderState * | createOrRetrieveInstance (SGScriptTranslator *translator) |
Retrieve the previous instance the SRS in the script translator or create a new instance if not found. More... | |
virtual void | destroyAllInstances () |
Destroy all the instances that created by this factory. More... | |
virtual void | destroyInstance (SubRenderState *subRenderState) |
Destroy the given instance. More... | |
virtual void | writeInstance (MaterialSerializer *ser, SubRenderState *subRenderState, const TextureUnitState *srcTextureUnit, const TextureUnitState *dstTextureUnit) |
Write the given sub-render state instance using the material serializer. More... | |
A factory that enables creation of GBuffer instances.
|
overridevirtual |
Get the type of this sub render state factory.
Implements Ogre::RTShader::SubRenderStateFactory.
|
overridevirtual |
Create an instance of the SubRenderState based on script properties.
This method is called in the context of script parsing and let this factory the opportunity to create custom SubRenderState instances based on extended script properties.
compiler | The compiler instance. |
prop | The abstract property node. |
pass | The pass that is the parent context of this node. |
translator | The translator instance holding existing scripts. |
Reimplemented from Ogre::RTShader::SubRenderStateFactory.
|
overridevirtual |
Write the given sub-render state instance using the material serializer.
This method is called in the context of material serialization. It is useful for integrating into bigger context of material exporters from various environment that want to take advantage of the RT Shader System. Sub classes of this interface should override in case they need to write custom properties into the script context.
ser | The material serializer instance. |
subRenderState | The sub render state instance to write down. |
srcPass | The source pass. |
dstPass | The generated shader based pass. |
Reimplemented from Ogre::RTShader::SubRenderStateFactory.