MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Tools / ArrayWrapper

Class ArrayWrapper

vulkaninfo/outputprinter.h:822–829  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

820};
821
822class ArrayWrapper {
823 public:
824 ArrayWrapper(Printer &p, std::string array_name, size_t element_count = 0) : p(p) { p.ArrayStart(array_name, element_count); }
825 ~ArrayWrapper() { p.ArrayEnd(); }
826
827 private:
828 Printer &p;
829};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected