PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University. More...
Go to the source code of this file.
Classes | |
struct | pixel |
Typedefs | |
typedef unsigned short | gray |
typedef gray | pixval |
typedef pixel | xel |
typedef gray | xelval |
Functions | |
EXPCL_PANDA_PNMIMAGE char * | pm_allocrow (int cols, int size) |
Allocates a row of cols * size bytes. More... | |
EXPCL_PANDA_PNMIMAGE int | pm_bitstomaxval (int bits) |
Returns the highest maxval that can be represented in the indicated number of bits. More... | |
EXPCL_PANDA_PNMIMAGE void | pm_error (const char *format,...) |
Outputs the given printf-style message to the user and terminates messily. More... | |
EXPCL_PANDA_PNMIMAGE void | pm_freerow (char *itrow) |
Frees the row previously allocated withm pm_allocrow(). More... | |
EXPCL_PANDA_PNMIMAGE int | pm_maxvaltobits (int maxval) |
Returns the number of bits sufficient to hold the indicated maxval value. More... | |
EXPCL_PANDA_PNMIMAGE void | pm_message (const char *format,...) |
Outputs the given printf-style message to the user and returns. More... | |
EXPCL_PANDA_PNMIMAGE int | pm_readbiglong (std::istream *in, long *lP) |
EXPCL_PANDA_PNMIMAGE int | pm_readbigshort (std::istream *in, short *sP) |
EXPCL_PANDA_PNMIMAGE int | pm_readlittlelong (std::istream *in, long *lP) |
EXPCL_PANDA_PNMIMAGE int | pm_readlittleshort (std::istream *in, short *sP) |
EXPCL_PANDA_PNMIMAGE int | pm_writebiglong (std::ostream *out, long l) |
EXPCL_PANDA_PNMIMAGE int | pm_writebigshort (std::ostream *out, short s) |
EXPCL_PANDA_PNMIMAGE int | pm_writelittlelong (std::ostream *out, long l) |
EXPCL_PANDA_PNMIMAGE int | pm_writelittleshort (std::ostream *out, short s) |
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."
Definition in file pnmimage_base.h.
#define PPM_DEPTH | ( | newp, | |
p, | |||
oldmaxval, | |||
newmaxval | |||
) |
Definition at line 90 of file pnmimage_base.h.
EXPCL_PANDA_PNMIMAGE char* pm_allocrow | ( | int | cols, |
int | size | ||
) |
Allocates a row of cols * size bytes.
Definition at line 103 of file pnmimage_base.cxx.
EXPCL_PANDA_PNMIMAGE int pm_bitstomaxval | ( | int | bits | ) |
Returns the highest maxval that can be represented in the indicated number of bits.
Definition at line 95 of file pnmimage_base.cxx.
Referenced by pm_maxvaltobits().
EXPCL_PANDA_PNMIMAGE void pm_error | ( | const char * | format, |
... | |||
) |
Outputs the given printf-style message to the user and terminates messily.
Minimize use of this function.
Definition at line 54 of file pnmimage_base.cxx.
EXPCL_PANDA_PNMIMAGE void pm_freerow | ( | char * | itrow | ) |
Frees the row previously allocated withm pm_allocrow().
Definition at line 111 of file pnmimage_base.cxx.
EXPCL_PANDA_PNMIMAGE int pm_maxvaltobits | ( | int | maxval | ) |
Returns the number of bits sufficient to hold the indicated maxval value.
Definition at line 81 of file pnmimage_base.cxx.
References pm_bitstomaxval().
EXPCL_PANDA_PNMIMAGE void pm_message | ( | const char * | format, |
... | |||
) |
Outputs the given printf-style message to the user and returns.
Definition at line 30 of file pnmimage_base.cxx.