Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
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.
 
 
 
 
 
 

31 lines
799 B

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