open_toontown_panda3d/panda/src/gobj/textureContext.cxx

33 lines
675 B
C++

/**
* PANDA 3D SOFTWARE
* Copyright (c) Carnegie Mellon University. All rights reserved.
*
* All use of this software is subject to the terms of the revised BSD
* license. You should have received a copy of this license along
* with this source code in a file named "LICENSE."
*
* @file textureContext.cxx
* @author drose
* @date 1999-10-07
*/
#include "textureContext.h"
TypeHandle TextureContext::_type_handle;
/**
*
*/
void TextureContext::
output(ostream &out) const {
out << *get_texture() << ", " << get_data_size_bytes();
}
/**
*
*/
void TextureContext::
write(ostream &out, int indent_level) const {
SavedContext::write(out, indent_level);
}