|
| NULLWindow (const String &title, uint32 width, uint32 height, bool fullscreenMode) |
|
virtual | ~NULLWindow () |
|
virtual void | _initialize (TextureGpuManager *textureGpuManager) |
|
void | _setPrimary (void) |
| Indicates that this is the primary window. More...
|
|
virtual void | _setVisible (bool visible) |
| Internal method to notify the window it has been obscured or minimized. More...
|
|
virtual void | destroy (void) |
|
bool | getBorderless (void) const |
|
virtual void | getCustomAttribute (IdString name, void *pData) |
|
TextureGpu * | getDepthBuffer (void) const |
|
uint32 | getFrequencyDenominator (void) const |
|
uint32 | getFrequencyNumerator (void) const |
|
uint32 | getHeight (void) const |
|
virtual void | getMetrics (uint32 &width, uint32 &height, int32 &left, int32 &top) const |
| Overloaded version of getMetrics from RenderTarget, including extra details specific to windowing systems. More...
|
|
PixelFormatGpu | getPixelFormat (void) const |
|
uint32 | getRequestedHeightPt (void) const |
|
uint32 | getRequestedWidthPt (void) const |
|
SampleDescription | getSampleDescription (void) const |
|
TextureGpu * | getStencilBuffer (void) const |
|
TextureGpu * | getTexture (void) const |
| WARNING: Attempting to change the TextureGpu (e.g. More...
|
|
const String & | getTitle (void) const |
|
virtual float | getViewPointToPixelScale () const |
| Many windowing systems that support HiDPI displays use special points to specify size of the windows and controls, so that windows and controls with hardcoded sizes does not become too small on HiDPI displays. More...
|
|
bool | getVSync (void) const |
|
uint32 | getVSyncInterval (void) const |
|
uint32 | getWidth (void) const |
|
virtual bool | isClosed (void) const |
| Indicates whether the window has been closed by the user. More...
|
|
bool | isFocused (void) const |
|
bool | isFullscreen (void) const |
| Returns true if we are currently in fullscreen mode. More...
|
|
virtual bool | isHidden (void) const |
| Indicates whether the window was set to hidden (not displayed) More...
|
|
bool | isMultisample (void) const |
|
bool | isPrimary (void) const |
|
virtual bool | isVisible (void) const |
|
void | operator delete (void *ptr) |
|
void | operator delete (void *ptr, void *) |
|
void | operator delete (void *ptr, const char *, int, const char *) |
|
void | operator delete[] (void *ptr) |
|
void | operator delete[] (void *ptr, const char *, int, const char *) |
|
void * | operator new (size_t sz, const char *file, int line, const char *func) |
| operator new, with debug line info More...
|
|
void * | operator new (size_t sz) |
|
void * | operator new (size_t sz, void *ptr) |
| placement operator new More...
|
|
void * | operator new[] (size_t sz, const char *file, int line, const char *func) |
| array operator new, with debug line info More...
|
|
void * | operator new[] (size_t sz) |
|
virtual void | reposition (int32 left, int32 top) |
|
virtual void | requestFullscreenSwitch (bool goFullscreen, bool borderless, uint32 monitorIdx, uint32 width, uint32 height, uint32 frequencyNumerator, uint32 frequencyDenominator) |
| Requests to toggle between fullscreen and windowed mode. More...
|
|
virtual void | requestResolution (uint32 width, uint32 height) |
| Requests a change in resolution. More...
|
|
virtual void | setBorderless (bool borderless) |
|
virtual void | setFocused (bool focused) |
|
virtual void | setFsaa (const String &fsaa) |
| Set the FSAA mode to be used if hardware support it. More...
|
|
virtual void | setHidden (bool hidden) |
| Hide (or show) the window. More...
|
|
virtual void | setTitle (const String &title) |
|
virtual void | setVSync (bool vSync, uint32 vSyncInterval) |
|
virtual void | swapBuffers (void) |
|
bool | wantsToGoFullscreen (void) const |
| Returns true if we are in windowed mode right now, but want to go fullscreen. More...
|
|
bool | wantsToGoWindowed (void) const |
| Returns true if we are in fullscreen mode right now, but want to go windowed mode. More...
|
|
virtual void | windowMovedOrResized (void) |
| Notify that the window has been resized. More...
|
|
virtual float Ogre::Window::getViewPointToPixelScale |
( |
| ) |
const |
|
inlinevirtualinherited |
Many windowing systems that support HiDPI displays use special points to specify size of the windows and controls, so that windows and controls with hardcoded sizes does not become too small on HiDPI displays.
Such points have constant density ~ 100 points per inch (probably 96 on Windows and 72 on Mac), that is independent of pixel density of real display, and are used through the all windowing system.
Sometimes, such view points are choosen bigger for output devices that are viewed from larger distances, like 30" TV comparing to 30" monitor, therefore maintaining constant points angular density rather than constant linear density.
In any case, all such windowing system provides the way to convert such view points to pixels, be it DisplayProperties::LogicalDpi on WinRT or backingScaleFactor on MacOSX. We use pixels consistently through the Ogre, but window/view management functions takes view points for convenience, as does the rest of windowing system. Such parameters are named using xxxxPt pattern, and should not be mixed with pixels without being converted using getViewPointToPixelScale() function.
Sometimes such scale factor can change on-the-fly, for example if window is dragged to monitor with different DPI. In such situation, window size in view points is usually preserved by windowing system, and Ogre should adjust pixel size of RenderWindow.
Reimplemented in Ogre::MetalWindow.