 |
RenderingStepOnRun Method |
OnRun abstract method executes the code for this rendering step.
The method should true to continue executing rendering steps; when false is returned then rendering is terminated.
Namespace: Ab4d.SharpEngine.RenderingStepsAssembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 4.1.9680+a1b1e43de1ad9a7e35472c33948d688d7b40ef79
Syntaxprotected abstract bool OnRun(
RenderingContext renderingContext
)
Parameters
- renderingContext RenderingContext
- RenderingContext
Return Value
Booleantrue to continue rendering; false to terminate rendering (use this carefully; currently this is used in InitializeRenderingStep when vkAcquireNextImageKHR returns ErrorOutOfDateKHR or SuboptimalKHR)
See Also