15 #ifndef DEPTHOFFSETATTRIB_H
16 #define DEPTHOFFSETATTRIB_H
18 #include "pandabase.h"
20 #include "renderAttrib.h"
61 INLINE
DepthOffsetAttrib(
int offset, PN_stdfloat min_value, PN_stdfloat max_value);
65 static CPT(
RenderAttrib) make(
int offset, PN_stdfloat min_value, PN_stdfloat max_value);
68 INLINE
int get_offset()
const;
69 INLINE PN_stdfloat get_min_value()
const;
70 INLINE PN_stdfloat get_max_value()
const;
73 virtual void output(ostream &out)
const;
76 virtual int compare_to_impl(
const RenderAttrib *other)
const;
77 virtual size_t get_hash_impl()
const;
83 PN_stdfloat _min_value;
84 PN_stdfloat _max_value;
87 static int get_class_slot() {
90 virtual int get_slot()
const {
91 return get_class_slot();
95 static void register_with_read_factory();
106 static void init_type() {
107 RenderAttrib::init_type();
108 register_type(_type_handle,
"DepthOffsetAttrib",
109 RenderAttrib::get_class_type());
110 _attrib_slot =
register_slot(_type_handle, 100, make_default);
113 return get_class_type();
115 virtual TypeHandle force_init_type() {init_type();
return get_class_type();}
119 static int _attrib_slot;
122 #include "depthOffsetAttrib.I"
static int register_slot(TypeHandle type_handle, int sort, RenderAttribRegistry::MakeDefaultFunc *make_default_func)
Adds the indicated TypeHandle to the registry, if it is not there already, and returns a unique slot ...
This is the base class for a number of render attributes (other than transform) that may be set on sc...
This is the fundamental interface for extracting binary objects from a Bam file, as generated by a Ba...
Base class for objects that can be written to and read from Bam files.
This is the fundamental interface for writing binary objects to a Bam file, to be extracted later by ...
virtual void write_datagram(BamWriter *manager, Datagram &dg)
Writes the contents of this object to the datagram for shipping out to a Bam file.
An instance of this class is passed to the Factory when requesting it to do its business and construc...
This is a special kind of attribute that instructs the graphics driver to apply an offset or bias to ...
A class to retrieve the individual data elements previously stored in a Datagram. ...
TypeHandle is the identifier used to differentiate C++ class types.
An ordered list of data elements, formatted in memory for transmission over a socket or writing to a ...