This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
2020-08-04 13:13:01 -04:00

30 lines
658 B
C

//========= 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 */