Searched refs:LineOffsets (Results 1 - 1 of 1) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_demo.cpp3454 ImVector<int> LineOffsets; // Index to lines offset. We maintain this with AddLog() calls, allowing us to have a random access on lines member in struct:ExampleAppLog
3468 LineOffsets.clear();
3469 LineOffsets.push_back(0);
3481 LineOffsets.push_back(old_size + 1);
3530 for (int line_no = 0; line_no < LineOffsets.Size; line_no++)
3532 const char* line_start = buf + LineOffsets[line_no];
3533 const char* line_end = (line_no + 1 < LineOffsets.Size) ? (buf + LineOffsets[line_no + 1] - 1) : buf_end;
3550 clipper.Begin(LineOffsets.Size);
3555 const char* line_start = buf + LineOffsets[line_n
[all...]

Completed in 8 milliseconds