OGRE  1.10.12
Object-Oriented Graphics Rendering Engine
Compositor Scripts

The compositor framework is a subsection of the OGRE API that allows you to easily define full screen post-processing effects. Compositor scripts offer you the ability to define compositor effects in a script which can be reused and modified easily, rather than having to use the API to define them. You still need to use code to instantiate a compositor against one of your visible viewports, but this is a much simpler process than actually defining the compositor itself.

Compositor Fundamentals

Performing post-processing effects generally involves first rendering the scene to a texture, either in addition to or instead of the main window. Once the scene is in a texture, you can then pull the scene image into a fragment program and perform operations on it by rendering it through full screen quad. The target of this post processing render can be the main result (e.g. a window), or it can be another render texture so that you can perform multi-stage convolutions on the image. You can even ’ping-pong’ the render back and forth between a couple of render textures to perform convolutions which require many iterations, without using a separate texture for each stage. Eventually you’ll want to render the result to the final output, which you do with a full screen quad. This might replace the whole window (thus the main window doesn’t need to render the scene itself), or it might be a combinational effect.

So that we can discuss how to implement these techniques efficiently, a number of definitions are required:

Compositor

Definition of a fullscreen effect that can be applied to a user viewport. This is what you’re defining when writing compositor scripts as detailed in this section.

Compositor Instance

An instance of a compositor as applied to a single viewport. You create these based on compositor definitions, See Applying a Compositor.

Compositor Chain

It is possible to enable more than one compositor instance on a viewport at the same time, with one compositor taking the results of the previous one as input. This is known as a compositor chain. Every viewport which has at least one compositor attached to it has a compositor chain. See Applying a Compositor

Target

This is a RenderTarget, i.e. the place where the result of a series of render operations is sent. A target may be the final output (and this is implicit, you don’t have to declare it), or it may be an intermediate render texture, which you declare in your script with the texture line. A target which is not the output target has a defined size and pixel format which you can control.

Output Target

As Target, but this is the single final result of all operations. The size and pixel format of this target cannot be controlled by the compositor since it is defined by the application using it, thus you don’t declare it in your script. However, you do declare a Target Pass for it, see below.

Target Pass

A Target may be rendered to many times in the course of a composition effect. In particular if you ’ping pong’ a convolution between a couple of textures, you will have more than one Target Pass per Target. Target passes are declared in the script using a target or target_output line, the latter being the final output target pass, of which there can be only one.

Pass

Within a Target Pass, there are one or more individual passes, which perform a very specific action, such as rendering the original scene (or pulling the result from the previous compositor in the chain), rendering a fullscreen quad, or clearing one or more buffers. Typically within a single target pass you will use the either a ’render scene’ pass or a ’render quad’ pass, not both. Clear can be used with either type.

Loading scripts

Compositor scripts are loaded when resource groups are initialised: OGRE looks in all resource locations associated with the group (see Root::addResourceLocation) for files with the ’.compositor’ extension and parses them. If you want to parse files manually, use CompositorSerializer::parseScript.

Format

Several compositors may be defined in a single script. The script format is pseudo-C++, with sections delimited by curly braces (’{’, ’}’), and comments indicated by starting a line with ’//’ (note, no nested form comments allowed). The general format is shown below in the example below:

// Black and white effect
compositor B&W
{
technique
{
// Temporary textures
texture rt0 target_width target_height PF_A8R8G8B8
target rt0
{
// Render output from previous compositor (or original scene)
input previous
}
target_output
{
// Start with clear output
input none
// Draw a fullscreen quad with the black and white image
pass render_quad
{
// Renders a fullscreen quad with a material
material Ogre/Compositor/BlackAndWhite
input 0 rt0
}
}
}
}

Every compositor in the script must be given a name, which is the line ’compositor <name>’ before the first opening ’{’. This name must be globally unique. It can include path characters (as in the example) to logically divide up your compositors, and also to avoid duplicate names, but the engine does not treat the name as hierarchical, just as a string. Names can include spaces but must be surrounded by double quotes i.e. compositor "My Name".

The major components of a compositor are the techniques, the target passes and the passes, which are covered in detail in the following sections.

Techniques

A compositor technique is much like a material technique in that it describes one approach to achieving the effect you’re looking for. A compositor definition can have more than one technique if you wish to provide some fallback should the hardware not support the technique you’d prefer to use. Techniques are evaluated for hardware support based on 2 things:

Material support

All passes that render a fullscreen quad use a material; for the technique to be supported, all of the materials referenced must have at least one supported material technique. If they don’t, the compositor technique is marked as unsupported and won’t be used.

Texture format support

This one is slightly more complicated. When you request a texture in your technique, you request a pixel format. Not all formats are natively supported by hardware, especially the floating point formats. However, in this case the hardware will typically downgrade the texture format requested to one that the hardware does support - with compositor effects though, you might want to use a different approach if this is the case. So, when evaluating techniques, the compositor will first look for native support for the exact pixel format you’ve asked for, and will skip onto the next technique if it is not supported, thus allowing you to define other techniques with simpler pixel formats which use a different approach. If it doesn’t find any techniques which are natively supported, it tries again, this time allowing the hardware to downgrade the texture format and thus should find at least some support for what you’ve asked for.

As with material techniques, compositor techniques are evaluated in the order you define them in the script, so techniques declared first are preferred over those declared later.

Format: technique { }

Techniques can have the following nested elements:

texture

This declares a render texture for use in subsequent target passes.

Format: texture <Name> <Width> <Height> <Pixel Format> [<MRT Pixel Format2>] [<MRT Pixel FormatN>] [pooled] [gamma] [no_fsaa] [depth_pool <poolId>] [<scope>]

Here is a description of the parameters:

Name

A name to give the render texture, which must be unique within this compositor. This name is used to reference the texture in target passes, when the texture is rendered to, and in passes, when the texture is used as input to a material rendering a fullscreen quad.

Width, Height

The dimensions of the render texture. You can either specify a fixed width and height, or you can request that the texture is based on the physical dimensions of the viewport to which the compositor is attached. The options for the latter are ’target_width’, ’target_height’, ’target_width_scaled <factor>’ and ’target_height_scaled <factor>’ - where ’factor’ is the amount by which you wish to multiply the size of the main target to derive the dimensions.

Pixel Format

The pixel format of the render texture. This affects how much memory it will take, what colour channels will be available, and what precision you will have within those channels. The available options are PF_A8R8G8B8, PF_R8G8B8A8, PF_R8G8B8, PF_FLOAT16_RGBA, PF_FLOAT16_RGB, PF_FLOAT16_R, PF_FLOAT32_RGBA, PF_FLOAT32_RGB, and PF_FLOAT32_R.

pooled

If present, this directive makes this texture ’pooled’ among compositor instances, which can save some memory.

gamma

If present, this directive means that sRGB gamma correction will be enabled on writes to this texture. You should remember to include the opposite sRGB conversion when you read this texture back in another material, such as a quad. This option will automatically enabled if you use a render_scene pass on this texture and the viewport on which the compositor is based has sRGB write support enabled.

no_fsaa

If present, this directive disables the use of anti-aliasing on this texture. FSAA is only used if this texture is subject to a render_scene pass and FSAA was enabled on the original viewport on which this compositor is based; this option allows you to override it and disable the FSAA if you wish.

depth_pool

When present, this directive has to be followed by an integer. This directive is unrelated to the "pooled" directive. This one sets from which Depth buffer pool the depth buffer will be chosen from. All RTs from all compositors (including render windows if the render system API allows it) with the same pool ID share the same depth buffers (following the rules of the current render system APIs, (check RenderSystemCapabilities flags to find the rules). When the pool ID is 0, no depth buffer is used. This can be helpful for passes that don’t require a Depth buffer at all, potentially saving performance and memory. Default value is 1.

scope

If present, this directive sets the scope for the texture for being accessed by other compositors using the texture_ref directive. There are three options : ’local_scope’ (which is also the default) means that only the compositor defining the texture can access it. ’chain_scope’ means that the compositors after this compositor in the chain can reference its textures, and ’global_scope’ means that the entire application can access the texture. This directive also affects the creation of the textures (global textures are created once and thus can’t be used with the pooled directive, and can’t rely on viewport size).

Example: texture rt0 512 512 PF_R8G8B8A8
Example: texture rt1 target_width target_height PF_FLOAT32_RGB

You can in fact repeat this element if you wish. If you do so, that means that this render texture becomes a Multiple Render Target (MRT), when the GPU writes to multiple textures at once. It is imperative that if you use MRT that the shaders that render to it render to ALL the targets. Not doing so can cause undefined results. It is also important to note that although you can use different pixel formats for each target in a MRT, each one should have the same total bit depth since most cards do not support independent bit depths. If you try to use this feature on cards that do not support the number of MRTs you’ve asked for, the technique will be skipped (so you ought to write a fallback technique).

Example : texture mrt_output target_width target_height PF_FLOAT16_RGBA PF_FLOAT16_RGBA chain_scope

texture_ref

This declares a reference of a texture from another compositor to be used in this compositor.

Format: texture_ref <Local Name> <Reference Compositor> <Reference Texture Name>

Here is a description of the parameters:

Local Name

A name to give the referenced texture, which must be unique within this compositor. This name is used to reference the texture in target passes, when the texture is rendered to, and in passes, when the texture is used as input to a material rendering a fullscreen quad.

Reference Compositor

The name of the compositor that we are referencing a texture from

Reference Texture Name

The name of the texture in the compositor that we are referencing

Make sure that the texture being referenced is scoped accordingly (either chain or global scope) and placed accordingly during chain creation (if referencing a chain-scoped texture, the compositor must be present in the chain and placed before the compositor referencing it).

Example : texture_ref GBuffer GBufferCompositor mrt_output

scheme

This gives a compositor technique a scheme name, allowing you to manually switch between different techniques for this compositor when instantiated on a viewport by calling CompositorInstance::setScheme.

Format: material_scheme <Name>

compositor_logic

This connects between a compositor and code that it requires in order to function correctly. When an instance of this compositor will be created, the compositor logic will be notified and will have the chance to prepare the compositor’s operation (for example, adding a listener).

Format: compositor_logic <Name>

Registration of compositor logics is done by name through CompositorManager::registerCompositorLogic.

Target Passes

A target pass is the action of rendering to a given target, either a render texture or the final output. You can update the same render texture multiple times by adding more than one target pass to your compositor script - this is very useful for ’ping pong’ renders between a couple of render textures to perform complex convolutions that cannot be done in a single render, such as blurring.

There are two types of target pass, the sort that updates a render texture: Format: target <Name> { } ... and the sort that defines the final output render: Format: target_output { }

The contents of both are identical, the only real difference is that you can only have a single target_output entry, whilst you can have many target entries. Here are the attributes you can use in a ’target’ or ’target_output’ section of a .compositor script:

Attribute Descriptions

input

Sets input mode of the target, which tells the target pass what is pulled in before any of its own passes are rendered. Format: input (none | previous) Default: input none

none

The target will have nothing as input, all the contents of the target must be generated using its own passes. Note this does not mean the target will be empty, just no data will be pulled in. For it to truly be blank you’d need a ’clear’ pass within this target.

previous

The target will pull in the previous contents of the viewport. This will be either the original scene if this is the first compositor in the chain, or it will be the output from the previous compositor in the chain if the viewport has multiple compositors enabled.

only_initial

If set to on, this target pass will only execute once initially after the effect has been enabled. This could be useful to perform once-off renders, after which the static contents are used by the rest of the compositor. Format: only_initial (on | off) Default: only_initial off

visibility_mask

Sets the visibility mask for any render_scene passes performed in this target pass. This is a bitmask (although it must be specified as decimal, not hex) and maps to Viewport::setVisibilityMask. Format: visibility_mask <mask> Default: visibility_mask 4294967295

lod_bias

Set the scene LOD bias for any render_scene passes performed in this target pass. The default is 1.0, everything below that means lower quality, higher means higher quality. Format: lod_bias <lodbias> Default: lod_bias 1.0

shadows

Sets whether shadows should be rendered during any render_scene pass performed in this target pass. The default is ’on’. Format: shadows (on | off) Default: shadows on

material_scheme

If set, indicates the material scheme to use for any render_scene pass. Useful for performing special-case rendering effects. Format: material_scheme <scheme name> Default: None

Compositor Passes

A pass is a single rendering action to be performed in a target pass. Format: ’pass’ (render_quad | clear | stencil | render_scene | render_custom) [custom name] { }

There are four types of pass:

clear

This kind of pass sets the contents of one or more buffers in the target to a fixed value. So this could clear the colour buffer to a fixed colour, set the depth buffer to a certain set of contents, fill the stencil buffer with a value, or any combination of the above.

stencil

This kind of pass configures stencil operations for the subsequent passes. It can set the stencil compare function, operations and reference values for you to perform your own stencil effects.

render_scene

This kind of pass performs a regular rendering of the scene. It will use the visibility_mask, lod_bias, and material_scheme from the parent target pass.

render_quad

This kind of pass renders a quad over the entire render target, using a given material. You will undoubtedly want to pull in the results of other target passes into this operation to perform fullscreen effects.

render_custom

This kind of pass is just a callback to user code for the composition pass specified in the custom name (and registered via CompositorManager::registerCustomCompositionPass) and allows the user to create custom render operations for more advanced effects. This is the only pass type that requires the custom name parameter.

Here are the attributes you can use in a ’pass’ section of a .compositor script:

Available Pass Attributes

material

For passes of type ’render_quad’, sets the material used to render the quad. You will want to use shaders in this material to perform fullscreen effects, and use the input attribute to map other texture targets into the texture bindings needed by this material. Format: material <Name>

input

For passes of type ’render_quad’, this is how you map one or more local render textures (See compositor_texture) into the material you’re using to render the fullscreen quad. To bind more than one texture, repeat this attribute with different sampler indexes. Format: input <sampler> <Name> [<MRTIndex>]

sampler

The texture sampler to set, must be a number in the range [0, OGRE_MAX_TEXTURE_LAYERS-1].

Name

The name of the local render texture to bind, as declared in compositor_texture and rendered to in one or more target pass.

MRTIndex

If the local texture that you’re referencing is a Multiple Render Target (MRT), this identifies the surface from the MRT that you wish to reference (0 is the first surface, 1 the second etc).

Example: input 0 rt0

identifier

Associates a numeric identifier with the pass. This is useful for registering a listener with the compositor (CompositorInstance::addListener), and being able to identify which pass it is that’s being processed when you get events regarding it. Numbers between 0 and 2^32 are allowed. Format: identifier <number> Example: identifier 99945 Default: identifier 0

first_render_queue

For passes of type ’render_scene’, this sets the first render queue id that is included in the render. Defaults to the value of RENDER_QUEUE_SKIES_EARLY. Format: first_render_queue <id> Default: first_render_queue 0

last_render_queue

For passes of type ’render_scene’, this sets the last render queue id that is included in the render. Defaults to the value of RENDER_QUEUE_SKIES_LATE. Format: last_render_queue <id> Default: last_render_queue 95

material_scheme

If set, indicates the material scheme to use for this pass only. Useful for performing special-case rendering effects. This will overwrite the scheme if set at the target scope as well. Format: material_scheme <scheme name> Default: None

Clear Section

For passes of type ’clear’, this section defines the buffer clearing parameters. Format: clear { }

Here are the attributes you can use in a ’clear’ section of a .compositor script:

buffers

Sets the buffers cleared by this pass.

Format: buffers [colour] [depth] [stencil] Default: buffers colour depth

colour_value

Set the colour used to fill the colour buffer by this pass, if the colour buffer is being cleared (buffers). Format: colour_value <red> <green> <blue> <alpha> Default: colour_value 0 0 0 0

depth_value

Set the depth value used to fill the depth buffer by this pass, if the depth buffer is being cleared (buffers). Format: depth_value <depth> Default: depth_value 1.0

stencil_value

Set the stencil value used to fill the stencil buffer by this pass, if the stencil buffer is being cleared (buffers). Format: stencil_value <value> Default: stencil_value 0.0

Stencil Section

For passes of type ’stencil’, this section defines the stencil operation parameters.

Format: stencil { }

Here are the attributes you can use in a ’stencil’ section of a .compositor script:

check

Enables or disables the stencil check, thus enabling the use of the rest of the features in this section. The rest of the options in this section do nothing if the stencil check is off. Format: check (on | off)

comp_func

Sets the function used to perform the following comparison: (ref_value & mask) comp_func (Stencil Buffer Value & mask)

What happens as a result of this comparison will be one of 3 actions on the stencil buffer, depending on whether the test fails, succeeds but with the depth buffer check still failing, or succeeds with the depth buffer check passing too. You set the actions in the fail_op, depth_fail_op and pass_op respectively. If the stencil check fails, no colour or depth are written to the frame buffer. Format: comp_func (always_fail | always_pass | less | less_equal | not_equal | greater_equal | greater) Default: comp_func always_pass

ref_value

Sets the reference value used to compare with the stencil buffer as described in comp_func. Format: ref_value <value> Default: ref_value 0.0

mask

Sets the mask used to compare with the stencil buffer as described in comp_func. Format: mask <value> Default: mask 4294967295

fail_op

Sets what to do with the stencil buffer value if the result of the stencil comparison (comp_func) and depth comparison is that both fail. Format: fail_op (keep | zero | replace | increment | decrement | increment_wrap | decrement_wrap | invert) Default: depth_fail_op keep These actions mean:

keep

Leave the stencil buffer unchanged.

zero

Set the stencil value to zero.

replace

Set the stencil value to the reference value.

increment

Add one to the stencil value, clamping at the maximum value.

decrement

Subtract one from the stencil value, clamping at 0.

increment_wrap

Add one to the stencil value, wrapping back to 0 at the maximum.

decrement_wrap

Subtract one from the stencil value, wrapping to the maximum below 0.

invert

invert the stencil value.

depth_fail_op

Sets what to do with the stencil buffer value if the result of the stencil comparison (comp_func) passes but the depth comparison fails.

Format: depth_fail_op (keep | zero | replace | increment | decrement | increment_wrap | decrement_wrap | invert) Default: depth_fail_op keep

pass_op

Sets what to do with the stencil buffer value if the result of the stencil comparison (comp_func) and the depth comparison pass. Format: pass_op (keep | zero | replace | increment | decrement | increment_wrap | decrement_wrap | invert) Default: pass_op keep

two_sided

Enables or disables two-sided stencil operations, which means the inverse of the operations applies to back-facing polygons. Format: two_sided (on | off) Default: two_sided off

Applying a Compositor

Adding a compositor instance to a viewport is very simple. All you need to do is:

CompositorManager::getSingleton().addCompositor(viewport, compositorName);

Where viewport is a pointer to your viewport, and compositorName is the name of the compositor to create an instance of. By doing this, a new instance of a compositor will be added to a new compositor chain on that viewport. You can call the method multiple times to add further compositors to the chain on this viewport. By default, each compositor which is added is disabled, but you can change this state by calling:

CompositorManager::getSingleton().setCompositorEnabled(viewport, compositorName, enabledOrDisabled);

For more information on defining and using compositors, see Demo_Compositor in the Samples area, together with the Examples.compositor script in the media area.