Panda3D
cullBinEnums.h
1 // Filename: cullBinEnums.h
2 // Created by: drose (03Apr06)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef CULLBINENUMS_H
16 #define CULLBINENUMS_H
17 
18 #include "pandabase.h"
19 
20 ////////////////////////////////////////////////////////////////////
21 // Class : CullBinEnums
22 // Description : Provides scoping for the enumerated type shared by
23 // CullBin and CullBinManager.
24 ////////////////////////////////////////////////////////////////////
25 class EXPCL_PANDA_PGRAPH CullBinEnums {
26 PUBLISHED:
27  enum BinType {
28  BT_invalid,
29  BT_unsorted,
30  BT_state_sorted,
31  BT_back_to_front,
32  BT_front_to_back,
33  BT_fixed,
34  };
35 };
36 
37 #endif
38 
Provides scoping for the enumerated type shared by CullBin and CullBinManager.
Definition: cullBinEnums.h:25