Click or drag to resize
Ab4d.SharpEngine logo

RenderPostProcessesRenderingStepOnRun 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.RenderingSteps
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.2.9386+3a404a3e1ebfa4efd231da7fe6f10dfb23b95dc4
Syntax
C#
protected override bool OnRun(
	RenderingContext renderingContext
)

Parameters

renderingContext  RenderingContext
RenderingContext

Return Value

Boolean
true to continue rendering; false to terminate rendering (use this carefully; currently this is used in InitializeRenderingStep when vkAcquireNextImageKHR returns ErrorOutOfDateKHR or SuboptimalKHR)
Remarks

[Missing <remarks> documentation for "M:Ab4d.SharpEngine.RenderingSteps.RenderPostProcessesRenderingStep.OnRun(Ab4d.SharpEngine.Core.RenderingContext)"]

See Also