55 lines
1.5 KiB
Plaintext
55 lines
1.5 KiB
Plaintext
// Filename: graphicsChannel.I
|
|
// Created by: mike (04Feb99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: get_id
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE int HardwareChannel::get_id( void ) const
|
|
{
|
|
return _id;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: get_xorg
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE int HardwareChannel::get_xorg( void ) const
|
|
{
|
|
return _xorg;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: get_yorg
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE int HardwareChannel::get_yorg( void ) const
|
|
{
|
|
return _yorg;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: get_xsize
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE int HardwareChannel::get_xsize( void ) const
|
|
{
|
|
return _xsize;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: get_ysize
|
|
// Access: Public
|
|
// Description:
|
|
////////////////////////////////////////////////////////////////////
|
|
INLINE int HardwareChannel::get_ysize( void ) const
|
|
{
|
|
return _ysize;
|
|
}
|