Renderable::GetRenderableFlags
Defined in: C4Renderable.h
Returns the miscellaneous renderable flags.
Prototype
unsigned long GetRenderableFlags(void) const;
Description
The GetRenderableFlags function returns the miscellaneous renderable flags, which can be a combination (through logical OR) of the following bit flags.
kRenderableCameraTransformInhibit |
Do not apply the world-space to camera-space transformation.
|
kRenderableStructureBufferInhibit |
Do not render into the structure buffer at all.
|
kRenderableStructureVelocityZero |
Always render zero as the velocity in the structure buffer.
|
kRenderableStructureDepthZero |
Always render zero as the depth in the structure buffer. kRenderableStructureVelocityZero must also be set.
|
kRenderableMotionBlurGradient |
Account for the depth gradient when rendering motion blur.
|
kRenderableFogInhibit |
Do not render with fog.
|
By default, none of a renderable object's miscellaneous renderable flags are set.
See Also
Renderable::SetRenderableFlags
|