mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
We were 2 more debug "bits" away from overflow, so recast PBD::DEBUG mechanism away from a 64bit integer and toward std::bitset.
Clean up a few minor related PBD::DEBUG issues along the way
This commit is contained in:
parent
10643779b6
commit
cc543280d9
18 changed files with 178 additions and 185 deletions
|
|
@ -24,12 +24,12 @@
|
|||
|
||||
using namespace std;
|
||||
|
||||
uint64_t PBD::DEBUG::CanvasItems = PBD::new_debug_bit ("canvasitems");
|
||||
uint64_t PBD::DEBUG::CanvasItemsDirtied = PBD::new_debug_bit ("canvasitemsdirtied");
|
||||
uint64_t PBD::DEBUG::CanvasEvents = PBD::new_debug_bit ("canvasevents");
|
||||
uint64_t PBD::DEBUG::CanvasRender = PBD::new_debug_bit ("canvasrender");
|
||||
uint64_t PBD::DEBUG::CanvasEnterLeave = PBD::new_debug_bit ("canvasenterleave");
|
||||
uint64_t PBD::DEBUG::WaveView = PBD::new_debug_bit ("waveview");
|
||||
PBD::DebugBits PBD::DEBUG::CanvasItems = PBD::new_debug_bit ("canvasitems");
|
||||
PBD::DebugBits PBD::DEBUG::CanvasItemsDirtied = PBD::new_debug_bit ("canvasitemsdirtied");
|
||||
PBD::DebugBits PBD::DEBUG::CanvasEvents = PBD::new_debug_bit ("canvasevents");
|
||||
PBD::DebugBits PBD::DEBUG::CanvasRender = PBD::new_debug_bit ("canvasrender");
|
||||
PBD::DebugBits PBD::DEBUG::CanvasEnterLeave = PBD::new_debug_bit ("canvasenterleave");
|
||||
PBD::DebugBits PBD::DEBUG::WaveView = PBD::new_debug_bit ("waveview");
|
||||
|
||||
struct timeval ArdourCanvas::epoch;
|
||||
map<string, struct timeval> ArdourCanvas::last_time;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue