Panda3D
 All Classes Functions Variables Enumerations
drawMask.h
1 // Filename: drawMask.h
2 // Created by: drose (13Mar02)
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 DRAWMASK_H
16 #define DRAWMASK_H
17 
18 #include "pandabase.h"
19 
20 #include "bitMask.h"
21 
22 // This is the data type of the draw mask: the set of bits that every
23 // PandaNode has, as well as a Camera, and that a node must have at
24 // least some bits in common with the current Camera in order to be
25 // visible.
26 
27 typedef BitMask32 DrawMask;
28 
29 #endif
30