diff --git a/qrenderdoc/Code/Interface/QRDInterface.h b/qrenderdoc/Code/Interface/QRDInterface.h index 5494eef2e..ac3de3766 100644 --- a/qrenderdoc/Code/Interface/QRDInterface.h +++ b/qrenderdoc/Code/Interface/QRDInterface.h @@ -2628,7 +2628,7 @@ This function should not be used to view the entirety of a descriptor store - in :func:`ViewDescriptorStore` function will be more efficient. :param List[renderdoc.Descriptor] descriptors: The list of descriptors to process and show. -:param List[renderdoc.Descriptor] samplerDescriptors: The list of sampler descriptors to process and +:param List[renderdoc.SamplerDescriptor] samplerDescriptors: The list of sampler descriptors to process and show. :return: The new :class:`DescriptorViewer` window opened, but not shown. :rtype: DescriptorViewer diff --git a/renderdoc/api/replay/d3d12_pipestate.h b/renderdoc/api/replay/d3d12_pipestate.h index 4b2c2c55c..470ecb462 100644 --- a/renderdoc/api/replay/d3d12_pipestate.h +++ b/renderdoc/api/replay/d3d12_pipestate.h @@ -758,7 +758,7 @@ struct RootSignature DOCUMENT(R"(The static samplers defined in this root signature. -:type: List[SamplerDescriptor] +:type: List[D3D12StaticSampler] )"); rdcarray staticSamplers; }; diff --git a/renderdoc/api/replay/replay_enums.h b/renderdoc/api/replay/replay_enums.h index 9f13f5596..50fe9e01c 100644 --- a/renderdoc/api/replay/replay_enums.h +++ b/renderdoc/api/replay/replay_enums.h @@ -4603,15 +4603,15 @@ DOCUMENT(R"(A set of flags for descriptor properties. The buffer will not be used for any of the uses below. -.. data:: Raw +.. data:: RawBuffer On D3D, a buffer is used as a raw (byte-addressed) buffer. -.. data:: Append +.. data:: AppendBuffer On D3D, a buffer is used as a append/consume view. -.. data:: Counter +.. data:: CounterBuffer On D3D, a buffer is used with a structured buffer with associated hidden counter.