Ogre::RenderWindow - Ogre::RenderWindow documentation


Ogre documentation Contained in the Ogre distribution.

Index


Code Index:

NAME

Top

Ogre::RenderWindow

SYNOPSIS

Top

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

DESCRIPTION

Top

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

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

INSTANCE METHODS

Top

$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

Top

Scott Lanning <slanning@cpan.org>

For licensing information, see README.txt .


Ogre documentation Contained in the Ogre distribution.

package Ogre::RenderWindow;

use strict;
use warnings;

use Ogre::RenderTarget;
our @ISA = qw(Ogre::RenderTarget);


1;

__END__