Files
renderdoc/qrenderdoc
baldurk c8a518f05c Refactor rdcstr with small-string and literal-string optimisations
* rdcstr no longer inherits from rdcarray, it implements all functionality
  itself.
* There are now three representations:
  - Heap-allocated, same as how rdcarray behaves.
  - Local-allocated, for small strings we store them in a union array.
  - Compile-time literal, only created from user-defined literals.
* The main observation is that a lot of RenderDoc's strings are compile-time
  literals either from struct names, member names, or stringified enum values.
  Storing these directly and allowing them to be moved and copied quickly saves
  on allocations and time. When the string is modified, it's copied to one of the other formats.
2019-05-15 14:12:17 +01:00
..
2019-02-01 18:32:13 +00:00

Windows build

Until qrenderdoc is ready, you need to download some dependencies to build:

  • Qt
  • Python
  • PySide2
  • SWIG (custom fork)

Download this zip and unzip to this folder (the 3rdparty/ in the zip should go into the 3rdparty/ folder here) before building.