From acf237261aee9bade4564587539048ac5f06f6df Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Mon, 17 Apr 2023 23:51:19 +0100 Subject: [PATCH] add render hook event --- pages/Plugins/Development/Event-list.md | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/Plugins/Development/Event-list.md b/pages/Plugins/Development/Event-list.md index 47007b5..9e802c1 100644 --- a/pages/Plugins/Development/Event-list.md +++ b/pages/Plugins/Development/Event-list.md @@ -30,3 +30,4 @@ These are all the events that can be listened to using Event Hooks. | activeLayout | fired on a keyboard layout change. String pointer temporary, not guaranteed after execution of the handler finishes. | std::vector{SKeyboard*, std::string*} | | preRender | fired before a frame for a monitor is about to be rendered | CMonitor* | | screencopy | fired when the screencopy state of a client changes. Keep in mind there might be multiple separate clients. | std::vector{state, framesInHalfSecond, owner} | +| render | fired at various stages of rendering to allow your plugin to render stuff. See `src/SharedDefs.hpp` for a list with explanations | eRenderStage |