Specification
C Version:
C Implementation Specific Version:
size_t wisVKPipelineCacheGetSerializedSize(const WisVKPipelineCache* self);
size_t wisDX12PipelineCacheGetSerializedSize(const WisDX12PipelineCache* self);
C++ Version:
namespace wis{
WIS_NODISCARD std::size_t PipelineCache::GetSerializedSize() const noexcept;
}
C++ Implementation Specific Version:
namespace wis{
WIS_NODISCARD std::size_t VKPipelineCache::GetSerializedSize() const noexcept;
WIS_NODISCARD std::size_t DX12PipelineCache::GetSerializedSize() const noexcept;
}
Parameters
- this
self self is a pointer to the valid WisPipelineCache instance.
- return Size of the data in bytes.
Description
See Also