mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-25 23:44:35 +00:00
Add line splitter.
This commit is contained in:
parent
cbc85003f7
commit
4bb0a1f1ed
@ -131,6 +131,32 @@ bool View::FindMatchingZone( int prev0, int prev1, int flags )
|
|||||||
return found;
|
return found;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static std::vector<std::string> SplitLines( const char* data, size_t sz )
|
||||||
|
{
|
||||||
|
std::vector<std::string> ret;
|
||||||
|
auto txt = data;
|
||||||
|
for(;;)
|
||||||
|
{
|
||||||
|
auto end = txt;
|
||||||
|
while( *end != '\n' && *end != '\r' && end - data < sz ) end++;
|
||||||
|
ret.emplace_back( std::string { txt, end } );
|
||||||
|
if( end - data == sz ) break;
|
||||||
|
if( *end == '\n' )
|
||||||
|
{
|
||||||
|
end++;
|
||||||
|
if( end - data < sz && *end == '\r' ) end++;
|
||||||
|
}
|
||||||
|
else if( *end == '\r' )
|
||||||
|
{
|
||||||
|
end++;
|
||||||
|
if( end - data < sz && *end == '\n' ) end++;
|
||||||
|
}
|
||||||
|
if( end - data == sz ) break;
|
||||||
|
txt = end;
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
void View::DrawCompare()
|
void View::DrawCompare()
|
||||||
{
|
{
|
||||||
const auto scale = GetScale();
|
const auto scale = GetScale();
|
||||||
|
Loading…
Reference in New Issue
Block a user