blob: 195f19f4581de81d53f053ea71f6a147425ecabb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef COMBINEOPERATIONS_H
#define COMBINEOPERATIONS_H
#pragma once
// New combines can be written in the middle (and generally should be written before Error).
// Keep these in sync with cCombineMaterialName in ctexturecompositor.cpp
enum ECombineOperation
{
ECO_Multiply = 0,
ECO_Add,
ECO_Lerp,
ECO_Select,
ECO_Legacy_Lerp_FirstPass,
ECO_Legacy_Lerp_SecondPass,
ECO_Error,
ECO_COUNT
};
#endif /* COMBINEOPERATIONS_H */
|