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: 2024.1.1.0 (2024.1.1)
Syntax
public enum DepthWriteFunctions
Members
  Member nameValueDescription
NEVER0

Never passes.

LESS1

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

EQUAL5

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

LEQUAL2

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

GREATER3

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

NOTEQUAL6

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

GEQUAL4

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

ALWAYS7

Always passes.

Remarks