RenderGraphNodeBinopΒΆ
Mode
Combining mode. Modes are:
- merge : The merge mode merges the Y into the X flow. All the attributes are merged. If the same attribute is present in the X and Y flows, priority is given to the Y flow.
- union : The union mode merges the X and Y flows. All the attributes are merged. If the same attribute is present in the X and Y flows, priority is given to the X flow.
- intersection : The intersection mode returns the union of the X and Y flow attributes if both of them are active. If one of the two flows is not active, the output is not active.
- subtract : The subtract mode returns the X flow attributes if the Y flow is not active. If Y is active, the output is not active.
- override : The override mode overrides the X attributes with the Y. If the X flow is not active, the output is not active.
- remove : The remove mode removes the attributes from X present in Y flow.
- replace : The replace mode replaces all X attributes with Y if active. If the Y is not active, X is not changed.