/*
 * This file extends the image format library for Houdini using a DSO
 * mechanism instead of a file table.
 *
 * The DSO's listed should be specified in relation to the
 * HOUDINI_DSO_PATH search path.  The precedence of each format will
 * be the order that it appears in the files.  Therefore, it is
 * possible to override the internal formats by placing DSO files
 * before the houdini files.
 *
 * To install some of the formats which are not installed by default,
 * simply copy this file to another location in the Houdini Path (i.e.
 * $HOME/houdini/FBformats.  Remove all the formats which are
 * installed by default, then uncomment the formats that you'd like to
 * install.
 *
 * To include a different file, add a line "include fullpath", where
 * fullpath is the filename to include.  For example:
 *     include /usr/hfs/houdini/FBformats
 * Environment variables are not expanded on include statements.
 * You should also be careful to ensure that a .so file is not loaded
 * more than once.
 *
 */

/*
 *  Installed formats - remove the following lines if you make a copy
 *			 of this file
 */

internal houdini		// Houdini 5.0 .pic
internal prisms			// PRISMS/Houdini 1.0 - 4.0 .pic
internal tiff			// TIFF .tif .tif3 .tif16
internal sgi			// SGI .rgb .sgi
internal gzip			// PRISMS/Houdini .pic.gz/.pic.Z
internal rat			// PRISMS/HOUDINI Random Access Texture
internal buffer			// File buffer device mb:[filename]

/*
 *  Optional formats
 */

fb/IMG_OGL.so		// iplay window "iw" "fiw"
fb/IMG_IPlay.so		// iplay window "ip" "fip"
fb/IMG_MDisplay.so	// mdisplay window "md" "fmd"
fb/IMG_JPEG.so		// JPEG/JFIF .jpg, .jpeg, .JPG, .JPEG
fb/IMG_Cineon.so		// Kodak Cineon file format .cin .kdk
fb/IMG_Wave.so		// Wavefront file format .rla .rlb
fb/IMG_Alias.so		// Alias .pix
fb/IMG_Bitmap.so		// Windows Bitmap .bmp
fb/IMG_SoftImage.so	// SoftImage .pic .si
fb/IMG_Abekas.so		// Abekas .yuv .rgb
fb/IMG_Targa.so		// Targa .tga .vst
fb/IMG_Vertigo.so		// Vertigo file format .pic .vtg
fb/IMG_RADIANCE.so	// RADIANCE RGBE format (.hdr)
fb/IMG_OpenEXR.so		// OpenEXR (.exr)
/*
 *  The IO table should typically be last in the list to allow other
 *  formats to be picked up first.
 */
fb/IMG_IOTable.so		// Uses FBio to get extensions
