mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-23 06:44:35 +00:00
Optimize non-native-size memcpy.
This commit is contained in:
parent
aa8b84aa6c
commit
a2187565d1
@ -596,7 +596,8 @@ private:
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
assert( sizeof( size ) == 8 );
|
assert( sizeof( size ) == 8 );
|
||||||
memcpy( &item->memAlloc.size, &size, 6 );
|
memcpy( &item->memAlloc.size, &size, 4 );
|
||||||
|
memcpy( ((char*)&item->memAlloc.size)+4, ((char*)&size)+4, 2 );
|
||||||
}
|
}
|
||||||
GetProfiler().m_serialQueue.commit_next();
|
GetProfiler().m_serialQueue.commit_next();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user