Files
cool-source-archive/public/materialsystem/combineoperations.h
Totterynine 4b952b0e4e init
2021-09-13 15:31:53 +05:00

35 lines
705 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_FirstPrecacheMaterial = 0,
ECO_Multiply = 0,
ECO_Add,
ECO_Lerp,
ECO_Select,
ECO_Legacy_Lerp_FirstPass,
ECO_Legacy_Lerp_SecondPass,
ECO_Blend,
ECO_LastPrecacheMaterial,
ECO_Error,
ECO_COUNT
};
#endif /* COMBINEOPERATIONS_H */