diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /public/panorama/uioverlaybuffersettype.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'public/panorama/uioverlaybuffersettype.h')
| -rw-r--r-- | public/panorama/uioverlaybuffersettype.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/public/panorama/uioverlaybuffersettype.h b/public/panorama/uioverlaybuffersettype.h new file mode 100644 index 0000000..8587f3a --- /dev/null +++ b/public/panorama/uioverlaybuffersettype.h @@ -0,0 +1,31 @@ +//========= Copyright ??? 1996-2006, Valve LLC, All rights reserved. ============ +// +// Purpose: Shared memory for panorama communications. +// +// $NoKeywords: $ +//============================================================================= + +#ifndef PANORAMA_UIOVERLAYBUFFERSETTYPE_H +#define PANORAMA_UIOVERLAYBUFFERSETTYPE_H +#ifdef _WIN32 +#pragma once +#endif + +namespace panorama +{ + + +// Panorama "top level windows", specified in the order of occlusion +// priority, bottom windows go first, followed by more visible windows +// that will occlude the ones below +enum EPanoramaOverlayBufferSetType +{ + k_EPanoramaOverlayBufferSetType_MainWindow = 0, + k_EPanoramaOverlayBufferSetType_Notifications = 1, + k_EPanoramaOverlayBufferSetType_TotalCount = 2 +}; + + +}; + +#endif // PANORAMA_UIOVERLAYBUFFERSETTYPE_H |