Skip to content

Commit fda8d4a

Browse files
committed
updated changelog in ffgl header so that readme changes can be cleared.
1 parent 0c7cf8c commit fda8d4a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

source/lib/ffgl/FFGL.h

+16
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,22 @@
7272
// -Reintroduction of RAII bindings to help protect the host's context state.
7373
// -Added file parameters
7474
//
75+
// FFGL 2.2 by Menno Vink (menno@resolume.com)
76+
// www.resolume.com
77+
// -Added context state validation in debug builds. This provides plugin developers hints on which context state they need to restore.
78+
// -Removed default DllMain implementation so that plugins may implement it without changing the ffgl library.
79+
// -File parameters now accept an initial value just like text parameters.
80+
// (This requires Resolume 7.2 for it to be picked up)
81+
// -Added support for grouping parameters together. Set a parameter's group with SetParamGroup,
82+
// any cosecutive params with the same group will be listed under the same collapsable region
83+
// (This requires Resolume 7.3.0 for it to be picked up)
84+
// -Added support for top-left texture orientation. Hosts that are rendering with the top-left texture orientation currently need to flip
85+
// both inputs and the output every frame. A plugin can now inform the host that it supports the top-left orientation by setting supportTopLeftTextureOrientation to true.
86+
// If the host wants to use it then it'll inform the plugin, which can query if it should use top-left or bottom-left using the GetTextureOrientation function.
87+
// (This requires Resolume 7.3.1 for it to be picked up)
88+
// -Added support for hooking into the host's logging system from the plugin, enabling a plugin's log messages to be interleaved with the host's messages in the host's log file.
89+
// (This requires Resolume 7.3.1 for it to be picked up)
90+
//
7591
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
7692

7793
#ifndef __FFGL2_H__

0 commit comments

Comments
 (0)