mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
68 lines
2.0 KiB
Plaintext
68 lines
2.0 KiB
Plaintext
// Filename: hardwareChannel.I
|
|
// Created by: mike (04Feb99)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// 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;
|
|
}
|