summaryrefslogtreecommitdiff
path: root/public/panorama/uioverlaybuffersettype.h
diff options
context:
space:
mode:
Diffstat (limited to 'public/panorama/uioverlaybuffersettype.h')
-rw-r--r--public/panorama/uioverlaybuffersettype.h31
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