This is an abstract base class, a placeholder for any number of different classes that may wish to implement an effect on every texture loaded from disk via the TexturePool. More...
#include "txaFileFilter.h"
Public Member Functions | |
virtual TypeHandle | force_init_type () |
virtual TypeHandle | get_type () const |
virtual | PT (Texture) post_load(Texture *tex) |
Public Member Functions inherited from TexturePoolFilter | |
virtual void | output (std::ostream &out) const |
virtual | PT (Texture) pre_load(const Filename &orig_filename |
Public Member Functions inherited from TypedObject | |
TypedObject (const TypedObject ©)=default | |
TypedObject * | as_typed_object () |
Returns the object, upcast (if necessary) to a TypedObject pointer. More... | |
const TypedObject * | as_typed_object () const |
Returns the object, upcast (if necessary) to a TypedObject pointer. More... | |
int | get_best_parent_from_Set (const std::set< int > &) const |
int | get_type_index () const |
Returns the internal index number associated with this object's TypeHandle, a unique number for each different type. More... | |
bool | is_exact_type (TypeHandle handle) const |
Returns true if the current object is the indicated type exactly. More... | |
bool | is_of_type (TypeHandle handle) const |
Returns true if the current object is or derives from the indicated type. More... | |
TypedObject & | operator= (const TypedObject ©)=default |
Static Public Member Functions | |
static TypeHandle | get_class_type () |
static void | init_type () |
Static Public Member Functions inherited from TexturePoolFilter | |
static TypeHandle | get_class_type () |
static void | init_type () |
Static Public Member Functions inherited from TypedObject | |
static TypeHandle | get_class_type () |
static void | init_type () |
This function is declared non-inline to work around a compiler bug in g++ 2.96. More... | |
Additional Inherited Members | |
Public Attributes inherited from TexturePoolFilter | |
virtual const Filename int int | alpha_file_channel |
virtual const Filename int int bool const LoaderOptions & | options |
virtual const Filename & | orig_alpha_filename |
virtual const Filename int | primary_file_num_channels |
virtual const Filename int int bool | read_mipmaps |
Public Attributes inherited from TypedObject | |
get_type | |
This is an abstract base class, a placeholder for any number of different classes that may wish to implement an effect on every texture loaded from disk via the TexturePool.
In practice, as of the time of this writing, only the TxaFileFilter (in pandatool) actually implements this. But other kinds of filters are possible.
This filter, once registered, will get a callback and a chance to modify each texture as it is loaded from disk the first time. If more than one filter is registered, each will be called in sequence, in the order in which they were registered.
The filter does not get called again if the texture is subsequently reloaded from disk. It is suggested that filters for which this might be a problem should call tex->set_keep_ram_image(true).
Definition at line 41 of file txaFileFilter.h.