You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: source/lib/ffgl/FFGL.h
+16
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,22 @@
72
72
// -Reintroduction of RAII bindings to help protect the host's context state.
73
73
// -Added file parameters
74
74
//
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)
0 commit comments