mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 02:31:48 +00:00
Fix include path and QueueType::PlotData in TracyEventDebug.cpp
* common/TracyQueue.hpp is now under public/. * QueueType::PlotData is splitted by cases.
This commit is contained in:
parent
5a36782c83
commit
37bcb9cd4a
@ -3,7 +3,7 @@
|
||||
#include <inttypes.h>
|
||||
|
||||
#include "TracyEventDebug.hpp"
|
||||
#include "../common/TracyQueue.hpp"
|
||||
#include "../public/common/TracyQueue.hpp"
|
||||
|
||||
namespace tracy
|
||||
{
|
||||
@ -144,8 +144,14 @@ void EventDebug( const QueueItem& ev )
|
||||
case QueueType::GpuZoneEndSerial:
|
||||
fprintf( f, "ev %i (GpuZoneEndSerial)\n", ev.hdr.idx );
|
||||
break;
|
||||
case QueueType::PlotData:
|
||||
fprintf( f, "ev %i (PlotData)\n", ev.hdr.idx );
|
||||
case QueueType::PlotDataInt:
|
||||
fprintf( f, "ev %i (PlotDataInt)\n", ev.hdr.idx );
|
||||
break;
|
||||
case QueueType::PlotDataFloat:
|
||||
fprintf( f, "ev %i (PlotDataFloat)\n", ev.hdr.idx );
|
||||
break;
|
||||
case QueueType::PlotDataDouble:
|
||||
fprintf( f, "ev %i (PlotDataDouble)\n", ev.hdr.idx );
|
||||
break;
|
||||
case QueueType::ContextSwitch:
|
||||
fprintf( f, "ev %i (ContextSwitch)\n", ev.hdr.idx );
|
||||
|
Loading…
Reference in New Issue
Block a user