Debugging RenderDoc

Visual Studio 2022 was able to display rdcstr:

and even rdcarray:

It is not clear how Visual Studio displays rdcarray:

template <typename T>
struct rdcarray
{
protected:
  T *elems;
  size_t allocatedCount;
  size_t usedCount;
  ...
}

Leave a Reply

Your email address will not be published. Required fields are marked *