Reemoved use of old LineReader.

This commit is contained in:
Бранимир Караџић
2020-06-20 15:14:54 -07:00
parent d5d3d29e9c
commit a95ddd1c0c
6 changed files with 190 additions and 213 deletions

View File

@@ -6452,11 +6452,8 @@ namespace bgfx { namespace gl
for (int32_t line = 1; !lineReader.isDone(); ++line)
{
bx::StringView str = lineReader.next();
if (!lineReader.isDone() )
{
BX_TRACE("%3d %.*s", line, str.getLength(), str.getPtr() );
}
BX_TRACE("%3d %.*s", line, str.getLength(), str.getPtr() );
BX_UNUSED(str);
}
GLsizei len;