mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Merge pull request #385 from starmole/master
Add lower case e and b tags
This commit is contained in:
commit
de312c6cc7
@ -218,7 +218,7 @@ int main( int argc, char** argv )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if( type == "B" )
|
if( type == "b" || type == "B" )
|
||||||
{
|
{
|
||||||
timeline.emplace_back( tracy::Worker::ImportEventTimeline {
|
timeline.emplace_back( tracy::Worker::ImportEventTimeline {
|
||||||
getPseudoTid(v),
|
getPseudoTid(v),
|
||||||
@ -230,7 +230,7 @@ int main( int argc, char** argv )
|
|||||||
locLine
|
locLine
|
||||||
} );
|
} );
|
||||||
}
|
}
|
||||||
else if( type == "E" )
|
else if( type == "e" || type == "E" )
|
||||||
{
|
{
|
||||||
timeline.emplace_back( tracy::Worker::ImportEventTimeline {
|
timeline.emplace_back( tracy::Worker::ImportEventTimeline {
|
||||||
getPseudoTid(v),
|
getPseudoTid(v),
|
||||||
|
Loading…
Reference in New Issue
Block a user