Skip to content

OnDisplay3DLUTChanged

Navigation: ADLX SDK ReferencesADLX InterfacesDisplayIADLXDisplay3DLUTChangedListener

Syntax

adlx_bool    OnDisplay3DLUTChanged (IADLXDisplay3DLUTChangedEvent* pDisplay3DLUTChangedEvent)

Parameters

#DirectionNameTypeDescription
1.[in]pDisplay3DLUTChangedEventIADLXDisplay3DLUTChangedEventThe pointer to the event.

Return Value

If the application requires ADLX to continue notifying the next listener, true must be returned.

If the application requires ADLX to stop notifying the next listener, false must be returned.

Remarks

Once the application registers to the notifications with AddDisplay3DLUTEventListener, ADLX will call this method until the application unregisters from the notifications with RemoveDisplay3DLUTEventListener.

The method should return quickly to not block the execution path in ADLX. If the method requires a long processing of the event notification, the application must hold onto a reference to the 3D LUT change event with Acquire and make it available on an asynchronous thread and return immediately. When the asynchronous thread is done processing it must discard the 3D LUT change event with Release.

Requirements

Headerinclude “IDisplays.h”
Minimum version1.0

See Also: IADLXDisplay3DLUTChangedEvent, AddDisplay3DLUTEventListener, RemoveDisplay3DLUTEventListener, Acquire, Release