|
|
@ -42,6 +42,7 @@ extern bool Render;
|
|
|
|
extern bool WantProfiling; // Do we want a CPU profile?
|
|
|
|
extern bool WantProfiling; // Do we want a CPU profile?
|
|
|
|
extern bool WantProfilingVBLock; // Do we want a VBLock profile?
|
|
|
|
extern bool WantProfilingVBLock; // Do we want a VBLock profile?
|
|
|
|
extern bool PACSBorders;
|
|
|
|
extern bool PACSBorders;
|
|
|
|
|
|
|
|
extern bool ARKPACSBorders;
|
|
|
|
extern bool DebugClusters;
|
|
|
|
extern bool DebugClusters;
|
|
|
|
extern bool SoundBox;
|
|
|
|
extern bool SoundBox;
|
|
|
|
extern uint8 ShowInfos;
|
|
|
|
extern uint8 ShowInfos;
|
|
|
@ -92,6 +93,16 @@ REGISTER_ACTION_HANDLER (CAHDisplayInfos, "display_infos");
|
|
|
|
* *
|
|
|
|
* *
|
|
|
|
***********************************************************************************************************/
|
|
|
|
***********************************************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class CAHToggleARKPACSBorders : public IActionHandler
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
virtual void execute (CCtrlBase * /* pCaller */, const string &/* Params */)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ARKPACSBorders = !ARKPACSBorders;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
REGISTER_ACTION_HANDLER (CAHToggleARKPACSBorders, "ark_pacs_borders");
|
|
|
|
|
|
|
|
|
|
|
|
#if !FINAL_VERSION
|
|
|
|
#if !FINAL_VERSION
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
|
|
class CAHProfile : public IActionHandler
|
|
|
|
class CAHProfile : public IActionHandler
|
|
|
|