5#ifndef NIRT_NIRTCPP_CREATION_PARAMETERS_HPP_INCLUDED
6#define NIRT_NIRTCPP_CREATION_PARAMETERS_HPP_INCLUDED
8#include <nirtcpp/core/engine/EDriverTypes.hpp>
9#include <nirtcpp/core/engine/EDeviceTypes.hpp>
10#include <nirtcpp/core/engine/dimension2d.hpp>
11#include <nirtcpp/core/engine/ILogger.hpp>
12#include <nirtcpp/core/engine/position2d.hpp>
Interface of an object which can receive events.
Definition IEventReceiver.hpp:484
Class for holding Nirtcpp Device creation parameters.
Definition SIrrCreationParameters.hpp:21
bool DriverMultithreaded
Create the driver multithreaded.
Definition SIrrCreationParameters.hpp:226
u32 DisplayAdapter
Allows to select which graphic card is used for rendering when more than one card is in the system.
Definition SIrrCreationParameters.hpp:220
bool UsePerformanceTimer
Enables use of high performance timers on Windows platform.
Definition SIrrCreationParameters.hpp:233
void * WindowId
Window Id.
Definition SIrrCreationParameters.hpp:208
bool Doublebuffer
Whether the main framebuffer uses doublebuffering.
Definition SIrrCreationParameters.hpp:128
u8 WindowResizable
Should a non-fullscreen window be resizable.
Definition SIrrCreationParameters.hpp:62
bool WithAlphaChannel
Whether the main framebuffer uses an alpha channel.
Definition SIrrCreationParameters.hpp:120
bool IgnoreInput
Specifies if the device should ignore input events.
Definition SIrrCreationParameters.hpp:135
video::E_DRIVER_TYPE DriverType
Type of video driver used to render graphics.
Definition SIrrCreationParameters.hpp:40
bool Vsync
Specifies vertical synchronization.
Definition SIrrCreationParameters.hpp:76
const c8 *const SDK_version_do_not_use
Don't use or change this parameter.
Definition SIrrCreationParameters.hpp:238
bool Stereobuffer
Specifies if the device should use stereo buffers.
Definition SIrrCreationParameters.hpp:143
bool Stencilbuffer
Specifies if the stencil buffer should be enabled.
Definition SIrrCreationParameters.hpp:70
core::position2di WindowPosition
Position of the window on-screen. Default: (-1, -1) or centered.
Definition SIrrCreationParameters.hpp:46
bool HighPrecisionFPU
Specifies if the device should use high precision FPU setting.
Definition SIrrCreationParameters.hpp:152
u8 AntiAlias
Specifies if the device should use fullscreen anti aliasing.
Definition SIrrCreationParameters.hpp:94
bool HandleSRGB
Flag to enable proper sRGB and linear color handling.
Definition SIrrCreationParameters.hpp:109
bool Fullscreen
Should be set to true if the device should run in fullscreen.
Definition SIrrCreationParameters.hpp:56
core::dimension2d< u32 > WindowSize
Size of the window or the video mode in fullscreen mode. Default: 800x600.
Definition SIrrCreationParameters.hpp:43
ELOG_LEVEL LoggingLevel
Specifies the logging level used in the logging interface.
Definition SIrrCreationParameters.hpp:216
E_DEVICE_TYPE DeviceType
Type of the device.
Definition SIrrCreationParameters.hpp:34
u8 Bits
Minimum Bits per pixel of the color buffer in fullscreen mode. Ignored if windowed mode....
Definition SIrrCreationParameters.hpp:49
u8 ZBufferBits
Minimum Bits per pixel of the depth buffer. Default: 24.
Definition SIrrCreationParameters.hpp:52
IEventReceiver * EventReceiver
A user created event receiver.
Definition SIrrCreationParameters.hpp:155
SNirtcppCreationParameters()
Constructs a SNirtcppCreationParameters class with default values.
Definition SIrrCreationParameters.hpp:241
Axis aligned bounding box in 3d dimensional space.
Definition aabbox3d.hpp:22
E_DRIVER_TYPE
An enum for all types of drivers the Nirtcpp Engine supports.
Definition EDriverTypes.hpp:17
As of Nirtcpp 1.6, position2d is a synonym for vector2d.
Definition vector3d.hpp:11
unsigned char u8
8 bit unsigned variable.
Definition irrTypes.hpp:24
unsigned int u32
32 bit unsigned variable.
Definition irrTypes.hpp:64
char c8
8 bit character variable.
Definition irrTypes.hpp:37
ELOG_LEVEL
Definition ILogger.hpp:18
@ ELL_DEBUG
Used for printing information helpful in debugging.
Definition ILogger.hpp:20
@ ELL_INFORMATION
Useful information to print. For example hardware infos or something started/stopped.
Definition ILogger.hpp:23
E_DEVICE_TYPE
An enum for the different device types supported by the Nirtcpp Engine.
Definition EDeviceTypes.hpp:13
@ EIDT_BEST
This selection allows Nirtcpp to choose the best device from the ones available.
Definition EDeviceTypes.hpp:54