Commit Graph

1238 Commits

Author SHA1 Message Date
baldurk 26f2d0fbb8 fix linux preprocessor macro use in API header files 2015-03-18 21:26:56 +00:00
Baldur Karlsson 055058c53b Update README.md to mention GL support 2015-03-18 17:35:11 +00:00
baldurk 1759a7ba35 Fix crash if constant buffer preview window is too small
* You can't set SplitterDistance unless both MinSize values will be
  respected, which needs a big enough window. Smaller than that, we just
  have to skip setting the size.
2015-03-18 17:34:18 +00:00
Baldur Karlsson 1c99b0359b Merge pull request #126 from vvuk/master
Use DXGI 1.2 to call Present1(), not 1.3
2015-03-16 16:22:26 +00:00
Vladimir Vukicevic c6e8f0d708 Use DXGI 1.2 to call Present1(), not 1.3 2015-03-16 12:11:29 -04:00
baldurk 0aa5dc2e66 Fix check for over-sized depthtargets with rendertargets
* Was causing some valid output mergers to not be tracked correctly.
2015-03-13 11:29:42 +00:00
baldurk c962fbb043 Allow more queries in the initial wrapped pool
* The Talos Principle allocs more than 8192
2015-03-13 11:28:56 +00:00
baldurk 6cd1f70bb6 Fix several warnings for compiling on VS2015
* Note at the time of committing there are still some warnings in MS
  headers that you might need to suppress in a couple of files.
* 3rd party code just has the warnings suppressed for ease of merging.
* The majority of warning fixes were for local variables shadowing
  other locals, function parameters, or members. In most cases they
  weren't a problem, but in some cases it was potentially dangerous!
2015-03-13 10:16:19 +00:00
baldurk b1dd9371e6 Clean up gitignore and add .sln.ide folder for VS2015 2015-03-13 00:43:37 +00:00
baldurk 0475408d7e Use the source resource's length, not destination's, when box is NULL
* Thanks to @bkaradzic for finding this one!
2015-03-12 23:42:48 +00:00
baldurk af97e30376 Linux compile fix, and include copies/generatemips in pixel history
* We treat them the same as UAV writes where we just list them in case
  the pixel is modified without checking.
2015-03-12 10:25:32 +00:00
baldurk 7e1e87af1f Fix crash if shader debug comes back with empty trace array
* The current step wasn't being clamped correctly, so it would be set
  to -1 then used to index.
2015-03-12 00:43:13 +00:00
baldurk c30fd3e1e1 Fix a crash if constant buffer is still open when log is closed 2015-03-12 00:39:47 +00:00
baldurk 5bcbb47203 List GenerateMips, Copy and Resolve calls in event browser with draws
* What gets listed as a 'drawcall' is a bit fuzzy - previously it was
  drawing calls, dispatches and clears, but you could make a good
  argument for these to be included as well. As a semi-experiment, these
  calls are now included and will be listed in the event browser.
* Other calls can change resources like direct buffer or texture uploads
  and Map() type calls, but these remain as API calls listed between
  draw calls. Again this is mostly an arbitrary distinction.
* D3D11 logs are backwards compatible, GL logs are not (although it'd
  be relatively simple, GL logs will likely break backwards compat soon
  anyway, so not worth supporting it now only to break it soon).
2015-03-11 13:13:41 +00:00
baldurk b8d5b3f4af Add EnableUnamangedDebugging=true default to csproj
* Since RenderDoc is heavily mixed .NET/C++ code, regardless of any
  disadvantages this option is practically required (e.g. if building in
  profile, the first error message or assert will take the program down
  as the breakpoint won't get caught).
* In the UI, enabling this option will always go into csproj.user, but
  in fact the option works fine if you manually put it into the csproj,
  which means this will be the default for all new clones. Yay!
2015-03-11 11:13:08 +00:00
baldurk e7307455f6 Fix a crash if vertex input is instanced, with instance rate of 0
* In this case, every input takes the first index, need to avoid divide
  by 0 error.
2015-03-11 08:04:19 +00:00
baldurk c3e381a76a Remap entire index buffer for post-vs data, instead of just shifting
* Previously for post VS data we could maintain the index buffer by just
  doing the stream-out/transform feedback for a point list with each
  unique index. To maintain the index buffer we padded out any gaps in
  the indices with a single value, so that we could just shift the
  indices. This causes severe problems though if the indices start at 0
  and contain an invalid value like 0xcccccccc - we'd allocate a huge
  array and perform a massively wasteful streamout.
* Instead, we just stream out on the tightly packed list of unique
  indices, then remap each 'real' index to where it is in the tightly
  packed output buffer.
2015-03-10 21:05:59 +00:00
Baldur Karlsson 0677b102ee Update README API support (current and planned) 2015-03-08 23:48:40 +00:00
baldurk f46e31c4ba Only account for mip in slice/face index for 3D textures.
* This prevents arrays or cubemaps from having the slice or face index
  be incorrectly modified by the mip being displayed. Thanks Xavyiy on
  twitter for the report.
  https://twitter.com/Xavyiy/status/574352181190594560
2015-03-07 23:58:37 +00:00
baldurk 94f25edfd0 Bump version number to v0.24 for subsequent unofficial builds 2015-03-07 23:56:42 +00:00
baldurk 1e0478b829 Node tag should never be NULL/wrong type, but check just to be sure. v0.23 2015-03-03 13:23:27 +00:00
baldurk 8fa5eb74e6 Fix race between texture viewer creating its thumbnails & first use 2015-03-03 12:32:51 +00:00
baldurk 05fd8374a6 Fix a couple of D3D11 overlays not setting up tess/gs & IA correctly 2015-03-02 16:15:56 +00:00
baldurk db04714f8d Fix case where buffer format wasn't auto-populated correctly 2015-03-02 15:26:11 +00:00
baldurk 4dcb89966c Fix crash when event browser is hiding empty marker regions
* When we figure out which event a marker region should jump to if you
  select the parent, we want to pick the last valid event ID that isn't
  just a label. However previously this was being done by iterating over
  the children and picking the last one and assuming there would be a
  node of that index - which isn't true in the case where some drawcalls
  were entirely omitted. It would either index out of bounds, or index
  incorrectly.
2015-03-02 13:36:24 +00:00
baldurk e2f7afc3a2 Make sure Fullscreen VS is also created in capturing program
* This shader is necessary for the MSAA-to-array copying functionality
  used, and without it we bind a NULL vertex shader and can end up with
  driver crashes.
2015-03-02 11:45:38 +00:00
baldurk 731a7f3797 Fix crash opening up GS CBuffer window from pipeline state
* Also added an exception that throws at control creation time (much
  easier to spot) if this property is invalid.
2015-03-02 08:38:33 +00:00
baldurk 28922673cb Bump version number to 0.23 for future nightly/beta builds. 2015-02-28 22:58:12 +00:00
baldurk a440589969 Fix crash with image viewing on last change, using wrong array length v0.22 2015-02-27 14:10:49 +00:00
baldurk cca206a356 Fix array indexing crashes, ditch a lot of messing with UAV start slot
* The UAV array is provided as we expect it - with UAVs from 0 onwards
  even if their 'slots' are 4, 5, 6 etc or whatever. UAVStartSlot is
  the slot of the 0th UAV.
2015-02-27 14:07:58 +00:00
baldurk a50445781f Updated documentation to reflect latest changes and features
* Also in many places OpenGL is now advertised as full support, since it
  is pretty close by now and needs people to jump on it full-time and
  use it in anger.
2015-02-27 13:18:54 +00:00
baldurk cd35c726bc Change GL pipeline state to just name shaders "<stage> Shader <ID>"
* Since there's no better identifier, as all shaders are main() and
  there are no filenames to pick up.
2015-02-27 12:24:47 +00:00
baldurk 9e908779ce Fix lone unescaped & being interpreted as accelerator 2015-02-27 11:05:11 +00:00
baldurk 954da5c0e4 Compile fix - uninitialised variable 2015-02-27 09:18:55 +00:00
baldurk 372647709a Add EXR registry key, add images filter to file->open dialog
* I doubt anyone will notice the file->open filter unless they look for
  it so it's no good for 'discovering' the image viewing capability, but
  it might be convenient for people who know about it.
2015-02-26 18:24:49 +00:00
baldurk f8e8ae1391 Add in gl_PerVertex redeclarations individually
* This means the redeclarations are a bit more flexible if a shader
  (like a geometry shader) redeclares one already, but not the other,
  we'll only substitute in the missing one.
* Note this code is still a bit flakey e.g. in edge cases like if
  someone puts "in gl_PerVertex" in a comment, then it will fail.
  I want to avoid putting a full parser in, but perhaps stripping the
  source of any comments is a reasonable future step.
2015-02-26 17:58:41 +00:00
baldurk 43d4fff314 Fix typo when fetching shader subroutine values 2015-02-26 17:40:16 +00:00
baldurk 3904fb636d Ensure that (where available) clip control is set for overlay text 2015-02-26 17:36:04 +00:00
baldurk 12519df942 Fix crash if we insert 0 into indices list that already contains 0 2015-02-26 17:28:25 +00:00
baldurk f160c28d16 Fix GL PickPixel to be able to read back depth & stencil in two passes
* GL doesn't seem to support reading both depth and stencil channels
  from a single texture, so we need to do a second pass to read back
  the stencil component
2015-02-26 15:41:47 +00:00
baldurk 08024a375b Make missing GL functionality not breakpoint, for release 2015-02-26 15:16:11 +00:00
baldurk 1597fa3f32 If no history is returned, empty out the history event list
* Otherwise it stays as "Loading..." forever
2015-02-26 15:13:21 +00:00
baldurk c69389864e Fix buffer map diff comparison, and skip it for range maps
* For range maps, similar to glFlushMappedBufferRange, we assume the
  user selected the range deliberately and we upload it all. We only
  find a difference range for whole-buffer maps (of large enough
  buffers). This includes glMapBuffer(), by definition.
* Also, the comparison point is between the map pointer, so we have to
  offset the shadow pointer to compare it against to get accurate
  results.
2015-02-26 14:25:40 +00:00
baldurk 5892899729 For glBufferData/glBufferStorage ensure 'invalidate' data is consistent
* glBufferStorage was less of a problem as it was immutable but the data
  that got uploaded was uninitialised memory, it is now filled with 0xdd
* glBufferData could be used to invalidate a whole buffer, by passing
  NULL as data for an existing buffer. This caused a mismatch where the
  driver could (legally) have the same data, but our serialised copy
  was random uninitialised memory. The diff was done against the 'real'
  data but on serialise the base data was different, causing invalid
  data to be used.
2015-02-26 14:24:35 +00:00
baldurk 5ffb7c65a5 Hack around glCopyImageSubData being broken for compressed cubes on AMD
* Also for the hack that involves readback to CPU and reupload, make
  sure there's no pixel pack or unpack buffer bound for the duration.
2015-02-26 12:34:15 +00:00
baldurk d5b3337522 forcing all glBufferData calls into resource record isn't right
* glBufferData isn't only used for creation, it is often used to upload
  new data to a buffer, which means that during the captured frame any
  're-create' type calls should go into the context record.
2015-02-25 22:57:46 +00:00
baldurk 446d7d6da5 Take our own copy of the X connection that we are passed
* We need to copy the X display (by fetching its connection string and
  calling XOpenDisplay), so that if the Display* we had gets closed then
  nothing will crash.
2015-02-25 22:26:45 +00:00
baldurk fae5aabcce Handle missing/unsized formats on replay
* This can happen if someone binds an uncreated texture (!).
2015-02-25 22:22:32 +00:00
baldurk ae9e9e8f9f Fix highlight boxes to not have a little pixel missing in the corner
* Also in the HLSL version, we were indexing off the end of an array
  since we were drawing 5 lines but only had 4 verts in the array.
  Oops!
* We can remove D3D's OutlineStripVB, as we're doing it all in the
  shader.
2015-02-25 22:22:06 +00:00
baldurk 3a309dcd14 Fix for compile errors/warnings on linux
* The daily linux auto-compile script was broken, it's fixed now!
2015-02-25 19:02:26 +00:00