Do that thing again!

Or

All sorts of pass properties


Here it comes

Other than defining a vertex and pixel program, your passes have all sorts of other functions they can perform. These properties are also called ”render states” or “pass attributes”. While each of these properties is potentially its own subject, they are hard to separate to individual chapters, and are better left tide to each other. Other than that, you can create multiple passes in each technique, allowing you to achieve more complex results.

In this chapter, we will overview some of the most commonly used properties and see how we can use them to enhance our rendering output.

The subjects

  1. Culling
  2. Color channels (color buffer)
  3. Blending (alpha and color)
  4. Z buffer (depth buffer)
  5. Multi-pass techniques and example usage (next chapter)


Most of the example usage is in the next chapter, so don’t be alarmed if you get confused; you might as well open the next chapter and read them simultaneously so you wont fall asleep while reading all the technical stuff.

Culling

Culling is the process of determining whether or not a polygon is visible or not when projected onto the screen before drawing it. In doing so, you can save GPU work and filter unwanted results while rendering.

When culling, you define which direction is “front” facing: clock-wise or counter clock-wise.
Whichever you choose, the other will be defined as the facing backwards. All polygons with that winding will fail the culling test, and thus will not be drawn.

We’ll take a sphere affected by Phong. If we choose that our cull mode is clock-wise, we will see what we usually would:
Image

What you can’t see, is that the polygons in the other side of the sphere were not drawn, since they have a counter clock-wise winding.

If we define cull mode as counter clock-wise, the result will be:
Image

Notice we can see the grid? This means that we are actually looking inside the sphere.

Code

As default culling is deactivated (By default cullMode = NONE)
If you want to activate it, add one of the following to your pass:

cullMode = cw;
//Or
cullMode = ccw;

In OGRE

Within your OGRE material script, you can set both hardware and software culling, read about them in the OGRE manual:

cull_hardware <clockwise | anticlockwise | none>
cull_software <clockwise | anticlockwise | none>


Color channels

This is an easy to understand, short and unsigned int... Wait no…Subject.
During a pass, we can control whether or not to write into the color buffer, and in which channel. Disabling color writing is usually not an operation you will do on regular basic, but at times, it can be of great use.

To control what channel we wish to write in, we call

colorWriteEnable = [value];


The values follow the color circle:
Image
Did you notice some of the diameters in the picture are not actually strait? I forgot I can draw the lines from side to side, and drew each radius alone. Looking at the bigger picture has never been my best quality.
Get it? Picture?

0 Off
1 Red
2 Green
3 Yellow
4 Blue
5 Purple
6 Light Blue
7 All on (white)

In OGRE

In an OGRE script, you can only command the colour_write on or off.
In fact, these are the only two values that you’ll ever use, but have a laugh, render a demon in pink in FXC.

colour_write <on|off>


And that’s it…
Usually, you will use this when you need to place things in the depth buffer but don’t wish to render at that particular pass.

Blending

What is?

Blending allows you to control how your pixel renders to the screen, in relation to pixels positioned behind it. As default, your pixel will overwrite the pixel behind it, which means it is completely opaque.

When blending, we use the following equation:

Color = sourcePixelColor x srcBlend + destPixelColor x DestBlend


The source is the pixel in the object we are blending with the scene (the one using this material)
The destination is the background it is blending with.
Both srcBlend and destBlend range from 1 (opaque) to 0 (transparent), normally, you will want the sum of srcBlend and destBlend to be 1 (each one will have a certain weight in the final color)

While in order to activate blending you use the “AlphaBlendEnable = true;” directive, you can blend either alpha channel or color channel.

Alpha blend vs color blend

So what is the difference between blending alpha and blending color? When you blend using alpha, the result will keep the original colors, but give each one a certain weight – effectively, mimicking transparency with different strengths. When you blend color, the result will be a different color.

If one of your pixels is green, and other is red, the resulting pixel will be yellow when color blending.

Values

Both source and destination can accept any of the following values:

ZERO Value of 0 – no weight in blending
ONE Value of 1 – the src/dest will be given full weight
SRCCOLOR The color channel of the source pixel
INVSRCCOLOR (1 – srcColor)
SRCALPHA Alpha channel of the source pixel
INVSRCALPHA Use ( 1 – srcAlpha)
DESTALPHA Alpha channel of the destination pixel
INVDESTALPHA ( 1 – destAlpha )
DESTCOLOR Color channel of the destination pixel
INVDESTCOLOR ( 1 – destColor)

To use blending in a pass, we need to add these 3 properties:

AlphaBlendEnable = true;
srcBlend = one;
destBlend = zero;



By default, the above example is how your pixel is rendered to the screen (in ‘as if’, not literal; by default no blending check occurs). When the source pixel receives 1 and the destination receives 0, the source pixel is completely opaque.
Image

Let’s use these values in the equation and see why:

Color 	= sourcePixelColor x srcBlend 	+ destPixelColor x DestBlend
Red	= Red 	 	    x 1		+ White		  X 0


Say our current pixel is red, and the destination pixel is white;

As you can see, white color from the destination pixel has no weight in the final output.

Let’s see other simple examples:

Completely transparent

If you swap the values of the default, your source will disappear completely from the scene, because it has no blending weight:

srcBlend = zero;
destBlend = one;

Image
It’s there, I swear it.

Blackness

If you give both src and dest zero value, the result will be a black silhouette of the src object, since if none of the two receive weight; the result will be 0, and 0 means black.

srcBlend = zero;
destBlend = zero;

Image
I can swallow your sun. Seriously

I want it all!

If you give both src and dest value of one, the result will be an additive blend.

srcBlend = one;
destBlend = one;

Image

By the way, I culled. If I hadn’t, I would have got:
Image

See the ugly Artifact in the bottom? Culling has a practical use you can actually see!

Common blending techniques

Now that we played a little with the values to get a better sense of what they mean, let’s blend like adults.

Pure alpha blending

In order to create an alpha blending we will give the source pixel its own alpha weight, and give the destination pixel the inverse of the source alpha.

srcBlend = srcAlpha;
destBlend = invSrcAlpha;

Image

In this example, my diffuse and specular both have alpha of one, making them opaque, while the ambient has an alpha of 0.5, making it half transparent in regions effected by ambient alone.

Why not give each one its own alpha value? Because we want the destination pixel to be obscured by the source pixel. If we were to give it its own weight, we would end up with a sort of multiplicative blend.
If we use this:

srcBlend = srcAlpha;
destBlend = destAlpha;

The result will be:
Image

By giving the destination pixel the opposite value of the source alpha, we make the two “complete” each other (unlike the second example), allowing us to control how opaque or transparent the source pixel is by changing its alpha. The more we lower the source’s alpha, the higher the destination’s become, and vice versa.

Pure color blending

Pure color blending works the same as alpha blending, but uses the color channels instead.

srcBlend = srcColor;
destBlend = invSrcColor;


Image
Pure color blend when ambient is complete black.

Image
…Same but with red ambient color. Notice how the color turns yellow in blended part.

Multiplicative and 2X multiplicative blending

One way multiplicative is defined as either:

srcBlend = zero;
destBlend = srcColor;

Or

srcBlend = destColor;
destBlend = zero;

The second one is the proper one, but the first one gives the same result.

In this method we use the ‘intensity’ of the source pixel, modulated by the destination pixel’s color.
Image

2X multiplicative is defined as:

srcBlend = destColor;
destBlend = srcColor;


In 2X we combine the intensity and the color of both source and destination.
Image

Of course, there are all sorts of different combinations, some completely illogical, others just not very useful. Play with the values; see what you can come up with.

If you use

srcblend = destalpha;
destblend = srcalpha;


The result will be one of my favorite stupidities:
Image

Blend in OGRE scripts

In OGRE, blend is also part of your pass. It works somewhat the same, but a few differences.

First thing: it’s called “Scene Blend”.

Your first options are the automated values:

scene_blend <add|modulate|alpha_blend|colour_blend>


These 4 options have an automated behavior for source and destination. 3 of them you already know (add, alpha_blend and colour_blend).
The fourth – modulate – is setup as follows:

srcblend = destColor;
destblend = zero;

And gives the following result:
Image

the OGRE manual wrote:

Generally colours and darkens the scene,
good for smoked glass,
semi-transparent objects
etc


Your second option is setting the equation manually, like we did in FXC:
scene_blend <src_factor> <dest_factor>

The values are spelled differently, but shouldn’t be foreign to you:

one
zero
dest_colour
src_colour
one_minus_dest_colour
one_minus_src_colour
dest_alpha
src_alpha
one_minus_dest_alpha
one_minus_src_alpha


If your logic organ is not operational, ‘one minus’ means inverse.

Depth buffer

What is?

The depth buffer is, in a simplified description, is where all pixels in the same spot in the view queue in line, for the renderer to pick the closest one to it. By default, all pixels both write themselves to the buffer, and test themselves against the rest of the queue when the frame is being prepared or rendered.

Control

The depth buffer has four control methods:
ZEnable = (true/false);
Whether or not the current pass will ignore the depth buffer or not, by default true. If false the pixel will always be rendered on top of all others (used in unit icons placed on billboards in many games). None of the other methods will take effect unless this method’s value is true.

ZWriteEnable = (true/false);
Whether or not the pixel will be written to the depth buffer for other pixels to test against
The result will usually not defer from ’ZEnable = false’ in first glance, but don’t be fooled, it’s very different.

DepthBias = (number);
This method provides the means to prevent Z fighting. Pixels affected by bias will “make way”. Used in most cases to ensure proper rendering of things such as shadows, projective decals or particle systems.


ZFunc = (options);
This method allows you to control in what manner the Z testing will behave. You can command it to which condition is the “win”: farther from the one you are testing, closer, or equal.

Less means closer to you
Greater farther away
Equal guess
NotEqual either less or greater…
Always I’m not answering you
Never the last statement did not change
LessEqual
GreaterEqual

It’s hard to explain their effect without examples, try each value, and see how it affects the scene. In multi-pass techniques (in the next chapter) we will see a practical implementation.

Depth in OGRE

The difference is almost negligible, text from the OGRE manual:

Methods

depth_check (on|off)
The ZEnable of OGRE. Actually, in most cases it is called z test or check.

depth_write (on|off)

depth_bias <constant_bias> <slopescale_bias>
The second one is optional. I’m not getting farther in for now, read about it in the manual if you like.

depth_func (func)
depth_func values, shouldn’t be foreign to you:

always_fail
always_pass
less
less_equal
equal
not_equal
greater_equal
greater
<HR>
Creative Commons Copyright -- Some rights reserved.


THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.

BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.

1. Definitions

  • "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.
  • "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License.
  • "Licensor" means the individual or entity that offers the Work under the terms of this License.
  • "Original Author" means the individual or entity who created the Work.
  • "Work" means the copyrightable work of authorship offered under the terms of this License.
  • "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.
  • "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike.

2. Fair Use Rights

Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.

3. License Grant

Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:

  • to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;
  • to create and reproduce Derivative Works;
  • to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;
  • to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works.
  • For the avoidance of doubt, where the work is a musical composition:
    • Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work.
    • Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions).
    • Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).


The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.

4. Restrictions

The license granted in Section 3 above is expressly made subject to and limited by the following restrictions:

  • You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(c), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(c), as requested.
  • You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-ShareAlike 2.5 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License.
  • If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit.

5. Representations, Warranties and Disclaimer

UNLESS OTHERWISE AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.

6. Limitation on Liability.

EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

7. Termination

  • This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License.
  • Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above.

8. Miscellaneous

  • Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License.
  • Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License.
  • If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable.
  • No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent.
  • This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You.