AuxBitplaneAttrib
-
class AuxBitplaneAttrib
Bases:
RenderAttrib
Modern frame buffers can have ‘aux’ bitplanes, which are additional bitplanes above and beyond the standard depth and color. This attrib controls what gets rendered into those additional bitplanes. It can also affect what goes into the alpha channel of the primary color buffer.
ABO_glow: copy the glow map into the alpha channel of the primary frame buffer. If there is no glow map, set it to zero. Caveat: it is not possible to write glow or depth values to the framebuffer alpha channel at the same time as using alpha blending or alpha testing. Any attempt to use transparency, blending, or alpha testing will cause this flag to be overridden.
ABO_aux_normal: put the camera-space normal into the into the R,G components of the first auxiliary bitplane.
ABO_aux_modelz: put the clip-space Z coordinate of the center of the model (after perspective divide) into the B channel of the first auxiliary bitplane.
ABO_aux_glow: put a copy of the glow map into the alpha channel of the first auxiliary bitplane. If there is no glow map, set it to zero.
AuxBitplaneAttrib is relevant only when shader generation is enabled. Otherwise, it has no effect.
Inheritance diagram
-
enum AuxBitplaneOutput
-
enumerator ABO_glow = 1
-
enumerator ABO_aux_normal = 2
-
enumerator ABO_aux_glow = 4
-
enumerator ABO_glow = 1
-
static int get_class_slot(void)
-
static TypeHandle get_class_type(void)
-
int get_outputs(void) const
Returns the
AuxBitplaneAttrib
output bits.
-
static ConstPointerTo<RenderAttrib> make(void)
-
static ConstPointerTo<RenderAttrib> make(int outputs)
Constructs a default
AuxBitplaneAttrib
object.Constructs a specified
AuxBitplaneAttrib
object.
-
static ConstPointerTo<RenderAttrib> make_default(void)
Returns a
RenderAttrib
that corresponds to whatever the standard default properties for render attributes of this type ought to be.
-
enum AuxBitplaneOutput