Panda3D
 All Classes Functions Variables Enumerations
samplerContext.cxx
1 // Filename: samplerContext.cxx
2 // Created by: rdb (11Dec14))
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 #include "samplerContext.h"
16 
17 TypeHandle SamplerContext::_type_handle;
18 
19 ////////////////////////////////////////////////////////////////////
20 // Function: SamplerContext::output
21 // Access: Public, Virtual
22 // Description:
23 ////////////////////////////////////////////////////////////////////
24 void SamplerContext::
25 output(ostream &out) const {
26  SavedContext::output(out);
27 }
28 
29 ////////////////////////////////////////////////////////////////////
30 // Function: SamplerContext::write
31 // Access: Published, Virtual
32 // Description:
33 ////////////////////////////////////////////////////////////////////
34 void SamplerContext::
35 write(ostream &out, int indent_level) const {
36  SavedContext::write(out, indent_level);
37 }
38 
TypeHandle is the identifier used to differentiate C++ class types.
Definition: typeHandle.h:85