Click or drag to resize
SoDepthBufferDepthWriteFunctions Enumeration

Depth function mode as defined by OpenGL.

Namespace: OIV.Inventor.Nodes
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 9.9.13.0 (9.9.13.0)
Syntax
public enum DepthWriteFunctions
Members
  Member nameValueDescription
NEVER0

Never passes.

LESS1

Passes if the incoming depth value is less than the stored depth value.

EQUAL2

Passes if the incoming depth value is equal to the stored depth value.

LEQUAL3

Passes if the incoming depth value is less than or equal to the stored depth value.

GREATER4

Passes if the incoming depth value is greater than the stored depth value.

NOTEQUAL5

Passes if the incoming depth value is not equal to the stored depth value.

GEQUAL6

Passes if the incoming depth value is greater than or equal to the stored depth value.

ALWAYS7

Always passes.

Remarks