mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-08-04 05:41:06 +00:00
Add verification that HASH matches in debug info if present
* We keep searching if we find a file that matches but has the wrong hash.
This commit is contained in:
@@ -900,6 +900,11 @@ public:
|
||||
size_t size() const { return N; }
|
||||
size_t byteSize() const { return N * sizeof(T); }
|
||||
int32_t count() const { return (int32_t)N; }
|
||||
void clear()
|
||||
{
|
||||
for(size_t i = 0; i < N; i++)
|
||||
elems[i] = T();
|
||||
}
|
||||
// find the first occurrence of an element
|
||||
int32_t indexOf(const T &el, size_t first = 0, size_t last = ~0U) const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user