wisdom
Loading...
Searching...
No Matches
wisDescriptorHeapWriteConstantBuffer Struct Reference

Detailed Description

Specification


C Version:

C Implementation Specific Version:
// Provided by Wisdom 0.7.0.
WisResult wisVKDescriptorHeapWriteConstantBuffer(const WisVKDescriptorHeap* self,
uint32_t index);
// Provided by Wisdom 0.7.0.
WisResult wisDX12DescriptorHeapWriteConstantBuffer(const WisDX12DescriptorHeap* self,
uint32_t index);

C++ Version:

namespace wis{
// Provided by Wisdom 0.7.0.
wis::Result DescriptorHeap::WriteConstantBuffer(const wis::ConstantBufferBinding& data,
std::uint32_t index) const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
// Provided by Wisdom 0.7.0.
wis::Result VKDescriptorHeap::WriteConstantBuffer(const wis::ConstantBufferBinding& data,
std::uint32_t index) const noexcept;
// Provided by Wisdom 0.7.0.
wis::Result DX12DescriptorHeap::WriteConstantBuffer(const wis::ConstantBufferBinding& data,
std::uint32_t index) const noexcept;
}

Parameters


  • this self self is a pointer to the valid WisDescriptorHeap instance.
  • data specifies a pointer to WisConstantBufferBinding, which describes the constant buffer descriptors to write.
  • index defines the index in the descriptor heap to write the descriptors to.
  • return denoting the outcome of operation.

Description


See Also