-
Notifications
You must be signed in to change notification settings - Fork 133
Plugin Hooks
tobspr edited this page Apr 15, 2016
·
5 revisions
Available hooks are:
This hook gets called when the pipeline starts to setup the render stages. You should create your stages in this hook.
This hook gets called when the pipeline finished the intialization and is about to render the first frame.
This hook gets called when a manual shader reload got triggered. Usualy you don't need to bind to this hook, all shaders of your RenderStages are reloaded automatically.
This hook gets called before each frame is rendered. You should do your update logic here.
This hook gets called after each frame is rendered. You should not do any update logic here, since it will only be visible in the next frame, but instead do any cleanups if required.
Rendering Pipeline by tobspr (c) 2014 - 2016
For developers: