You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
642 B
30 lines
642 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
//============================================================================= |
|
|
|
#ifndef PROCEDURALPRESETS_H |
|
#define PROCEDURALPRESETS_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
enum |
|
{ |
|
PROCEDURAL_PRESET_NOT = 0, |
|
PROCEDURAL_PRESET_IN_CROSSFADE, |
|
PROCEDURAL_PRESET_OUT_CROSSFADE, |
|
PROCEDURAL_PRESET_REVEAL, |
|
PROCEDURAL_PRESET_PASTE, |
|
PROCEDURAL_PRESET_JITTER, |
|
PROCEDURAL_PRESET_SMOOTH, |
|
PROCEDURAL_PRESET_SHARPEN, |
|
PROCEDURAL_PRESET_SOFTEN, |
|
PROCEDURAL_PRESET_STAGGER, |
|
|
|
// Must be last |
|
NUM_PROCEDURAL_PRESET_TYPES, |
|
}; |
|
|
|
#endif // PROCEDURALPRESETS_H
|
|
|