MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Samples / write_subpass_info

Function write_subpass_info

framework/resource_record.cpp:30–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28namespace
29{
30inline void write_subpass_info(std::ostringstream &os, const std::vector<SubpassInfo> &value)
31{
32 write(os, value.size());
33 for (const SubpassInfo &item : value)
34 {
35 write(os, item.input_attachments);
36 write(os, item.output_attachments);
37 }
38}
39} // namespace
40
41void ResourceRecord::set_data(const std::vector<uint8_t> &data)

Callers 1

register_render_passMethod · 0.85

Calls 2

writeFunction · 0.85
sizeMethod · 0.80

Tested by

no test coverage detected