Specification
C Version:
C Implementation Specific Version:
void* wisVKBufferMap(const WisVKBuffer* self);
void* wisDX12BufferMap(const WisDX12Buffer* self);
C++ Version:
namespace wis{
WIS_NODISCARD void* Buffer::Map() const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
WIS_NODISCARD void* VKBuffer::Map() const noexcept;
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