1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Use consistent names.

This commit is contained in:
Bartosz Taudul
2017-11-25 13:14:16 +01:00
parent 48da593ab2
commit 0100266234
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -844,7 +844,7 @@ void View::ProcessGpuNewContext( const QueueGpuNewContext& ev )
assert( m_gpuCtxMap.find( ev.context ) == m_gpuCtxMap.end() );
auto gpu = m_slab.AllocInit<GpuCtxData>();
gpu->timeDiff = int64_t( ev.cputime * m_timerMul - ev.gputime );
gpu->timeDiff = int64_t( ev.cpuTime * m_timerMul - ev.gpuTime );
gpu->thread = ev.thread;
gpu->accuracyBits = ev.accuracyBits;
gpu->count = 0;