Skip to content

TSdlEglDisplay

An EGL display.

Definition

Unit: Neslib.Sdl3.Video

type TSdlEglDisplay = record ... end;

Properties

Name Description
Current The currently active EGL display.

Operators

Name Description
Equal(TSdlEglDisplay, TSdlEglDisplay) Used to compare against another TSdlEglDisplay.
Equal(TSdlEglDisplay, Pointer) Used to compare against nil.
Implicit Used to set the value to nil.
NotEqual(TSdlEglDisplay, TSdlEglDisplay) Used to compare against another TSdlEglDisplay.
NotEqual(TSdlEglDisplay, Pointer) Used to compare against nil.

Property Descriptions

Current

The currently active EGL display.

class property Current: TSdlEglDisplay read GetCurrent

Type: TSdlEglDisplay

Exceptions

ESdlError: Raised on failure.

Remarks

This property should only be used on the main thread.


Operator Descriptions

Equal(TSdlEglDisplay, TSdlEglDisplay)

Used to compare against another TSdlEglDisplay.

class operator Equal(const ALeft, ARight: TSdlEglDisplay): Boolean; inline; static

Parameters

ALeft: TSdlEglDisplay

ARight: TSdlEglDisplay

Returns

Boolean


Equal(TSdlEglDisplay, Pointer)

Used to compare against nil.

class operator Equal(const ALeft: TSdlEglDisplay; const ARight: Pointer): Boolean; inline; static

Parameters

ALeft: TSdlEglDisplay

ARight: Pointer

Returns

Boolean


Implicit(Pointer)

Used to set the value to nil.

class operator Implicit(const AValue: Pointer): TSdlEglDisplay; inline; static

Parameters

AValue: Pointer

Returns

TSdlEglDisplay


NotEqual(TSdlEglDisplay, TSdlEglDisplay)

Used to compare against another TSdlEglDisplay.

class operator NotEqual(const ALeft, ARight: TSdlEglDisplay): Boolean; inline; static

Parameters

ALeft: TSdlEglDisplay

ARight: TSdlEglDisplay

Returns

Boolean


NotEqual(TSdlEglDisplay, Pointer)

Used to compare against nil.

class operator NotEqual(const ALeft: TSdlEglDisplay; const ARight: Pointer): Boolean; inline; static

Parameters

ALeft: TSdlEglDisplay

ARight: Pointer

Returns

Boolean