Fixed issue #452.

This commit is contained in:
Branimir Karadžić
2015-07-17 11:12:41 -07:00
parent ebc5a13ac5
commit f15008311a
2 changed files with 9 additions and 1 deletions

View File

@@ -3410,6 +3410,10 @@ namespace bgfx { namespace gl
m_used[used++] = ii;
}
}
BX_CHECK(used < BX_COUNTOF(m_used), "Out of bounds %d > array size %d."
, used
, BX_COUNTOF(m_used)
);
m_used[used] = Attrib::Count;
used = 0;
@@ -3422,6 +3426,10 @@ namespace bgfx { namespace gl
m_instanceData[used++] = loc;
}
}
BX_CHECK(used < BX_COUNTOF(m_instanceData), "Out of bounds %d > array size %d."
, used
, BX_COUNTOF(m_instanceData)
);
m_instanceData[used] = 0xffff;
}