15 #ifndef CULLFACEATTRIB_H 16 #define CULLFACEATTRIB_H 18 #include "pandabase.h" 20 #include "renderAttrib.h" 34 M_cull_counter_clockwise,
42 static CPT(
RenderAttrib) make(Mode mode = M_cull_clockwise);
46 INLINE Mode get_actual_mode()
const;
47 INLINE
bool get_reverse()
const;
48 Mode get_effective_mode()
const;
51 virtual void output(ostream &out)
const;
54 virtual int compare_to_impl(
const RenderAttrib *other)
const;
55 virtual size_t get_hash_impl()
const;
64 static int get_class_slot() {
67 virtual int get_slot()
const {
68 return get_class_slot();
72 static void register_with_read_factory();
83 static void init_type() {
84 RenderAttrib::init_type();
85 register_type(_type_handle,
"CullFaceAttrib",
86 RenderAttrib::get_class_type());
87 _attrib_slot =
register_slot(_type_handle, 100, make_default);
90 return get_class_type();
92 virtual TypeHandle force_init_type() {init_type();
return get_class_type();}
96 static int _attrib_slot;
99 #include "cullFaceAttrib.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 ...
Indicates which faces should be culled based on their vertex ordering.
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...
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 ...