MCPcopy Create free account
hub / github.com/KhronosGroup/glslang / AddressingString

Function AddressingString

SPIRV/doc.cpp:119–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

117}
118
119const char* AddressingString(int addr)
120{
121 switch (addr) {
122 case 0: return "Logical";
123 case 1: return "Physical32";
124 case 2: return "Physical64";
125
126 case (int)AddressingModel::PhysicalStorageBuffer64EXT: return "PhysicalStorageBuffer64EXT";
127
128 default: return "Bad";
129 }
130}
131
132const char* MemoryString(int mem)
133{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected