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