Table of Contents

Delegate CoordShader

Namespace
RenderSharp
Assembly
RenderSharp.dll

Delegate type for coordinate shaders. Which are shaders purely used to transform coordinates.

public delegate void CoordShader(Vec2 coordIn, out Vec2 coordOut, Vec2 size, double time)

Parameters

coordIn Vec2

Input coordinates for the shader.

coordOut Vec2

Output coordinates for the shader.

size Vec2

Size of the space the shader is run on.

time double

Time elapsed.