Panda3D

cullBinEnums.h

00001 // Filename: cullBinEnums.h
00002 // Created by:  drose (03Apr06)
00003 //
00004 ////////////////////////////////////////////////////////////////////
00005 //
00006 // PANDA 3D SOFTWARE
00007 // Copyright (c) Carnegie Mellon University.  All rights reserved.
00008 //
00009 // All use of this software is subject to the terms of the revised BSD
00010 // license.  You should have received a copy of this license along
00011 // with this source code in a file named "LICENSE."
00012 //
00013 ////////////////////////////////////////////////////////////////////
00014 
00015 #ifndef CULLBINENUMS_H
00016 #define CULLBINENUMS_H
00017 
00018 #include "pandabase.h"
00019 
00020 ////////////////////////////////////////////////////////////////////
00021 //       Class : CullBinEnums
00022 // Description : Provides scoping for the enumerated type shared by
00023 //               CullBin and CullBinManager.
00024 ////////////////////////////////////////////////////////////////////
00025 class EXPCL_PANDA_PGRAPH CullBinEnums {
00026 PUBLISHED:
00027   enum BinType {
00028     BT_invalid,
00029     BT_unsorted,
00030     BT_state_sorted,
00031     BT_back_to_front,
00032     BT_front_to_back,
00033     BT_fixed,
00034   };
00035 };
00036 
00037 #endif
00038 
 All Classes Functions Variables Enumerations