The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Ogre::RenderWindow

SYNOPSIS

  use Ogre;
  use Ogre::RenderWindow;
  # (for now see examples/README.txt)

DESCRIPTION

See the online API documentation at http://www.ogre3d.org/docs/api/html/classOgre_1_1RenderWindow.html

Note: this Perl binding is currently experimental and subject to API changes.

INSTANCE METHODS

$obj->setFullscreen($fullScreen, $width, $height)

Parameter types

$fullScreen : bool
$width : unsigned int
$height : unsigned int

Returns

void

$obj->destroy()

Returns

void

$obj->resize($width, $height)

Parameter types

$width : unsigned int
$height : unsigned int

Returns

void

$obj->windowMovedOrResized()

Returns

void

$obj->reposition($left, $top)

Parameter types

$left : int
$top : int

Returns

void

$obj->isVisible()

Returns

bool

$obj->setVisible($visible)

Parameter types

$visible : bool

Returns

void

$obj->isClosed()

Returns

bool

$obj->swapBuffers($waitForVSync=true)

Parameter types

$waitForVSync=true : bool

Returns

void

$obj->isFullScreen()

Returns

bool

$obj->getMetrics($OUTLIST unsigned int width, $OUTLIST unsigned int height, $OUTLIST unsigned int colourDepth, $OUTLIST int left, $OUTLIST int top)

Parameter types

$OUTLIST unsigned int width : (no info available)
$OUTLIST unsigned int height : (no info available)
$OUTLIST unsigned int colourDepth : (no info available)
$OUTLIST int left : (no info available)
$OUTLIST int top : (no info available)

Returns

void

AUTHOR

Scott Lanning <slanning@cpan.org>

For licensing information, see README.txt .