| 757 | |
| 758 | |
| 759 | uint32_t SpirvModule::defArrayType( |
| 760 | uint32_t typeId, |
| 761 | uint32_t length) { |
| 762 | std::array<uint32_t, 2> args = {{ typeId, length }}; |
| 763 | |
| 764 | return this->defType(spv::OpTypeArray, |
| 765 | args.size(), args.data()); |
| 766 | } |
| 767 | |
| 768 | |
| 769 | uint32_t SpirvModule::defArrayTypeUnique( |
no test coverage detected