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

Detailed Description

Specification


C Version:

// Provided by Wisdom 0.7.0.
void* wisBufferMap(const WisBuffer* self);
C Implementation Specific Version:
// Provided by Wisdom 0.7.0.
void* wisVKBufferMap(const WisVKBuffer* self);
// Provided by Wisdom 0.7.0.
void* wisDX12BufferMap(const WisDX12Buffer* self);

C++ Version:

namespace wis{
// Provided by Wisdom 0.7.0.
WIS_NODISCARD void* Buffer::Map() const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
// Provided by Wisdom 0.7.0.
WIS_NODISCARD void* VKBuffer::Map() const noexcept;
// Provided by Wisdom 0.7.0.
WIS_NODISCARD void* DX12Buffer::Map() const noexcept;
}

Parameters


  • this self self is a pointer to the valid WisBuffer instance.
  • return points to the pointer, which is filled with the address of the mapped memory on success.

Description


See Also