8000 Tags · dejavvu/renderdoc · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: dejavvu/renderdoc

Tags

v0.33

Toggle v0.33's commit message
Document capture renaming in the capture connection

v0.32

Toggle v0.32's commit message
Update paths in installer wix scripts for moved files

v0.31

Toggle v0.31's commit message
Make sure deferred dirty marks don't get lost while not capturing

v0.30

Toggle v0.30's commit message
As DS_SETFOREGROUND doesn't work, move error reporter in/out of topmost

* This will guarantee the window is brought to the front, but it won't
  keep it there and be annoying.

v0.29

Toggle v0.29's commit message
Ignore NumRTVs = 0xfffffff (D3D11_KEEP_RENDER_TARGETS_AND_DEPTH_STENCIL)

v0.28

Toggle v0.28's commit message
Compile fix for official release builds. Didn't show up in nightlies!

v0.27

Toggle v0.27's commit message
Linux compile fixes (some apply to bad code on windows too)

v0.26

Toggle v0.26's commit message
Update tips dialog and add a menu item for it.

v0.25

Toggle v0.25's commit message
When selecting a bookmark, skip over labels

v0.24

Toggle v0.24's commit message
Add a 'garbage collection' for cached state objects

* In extreme cases a program can create lots and lots of unique short-
  lived state objects, we cache them all and run out of the 4096 state
  objects that can be around, then further creates fail out.
* To handle this, if we have 4000 total state objects, we release any
  that are purely being held by us (not the program). This isn't an
  ideal solution but it's quite simple and non-invasive, and only has
  a slight impact on rare Create calls.
* Most programs will either create a few up-front (as intended), or at
  worst create a few dozen or even few hundred then re-use them as they
  are cached.
0