| 727 | |
| 728 | |
| 729 | uint32_t SpirvModule::defFloatType( |
| 730 | uint32_t width) { |
| 731 | std::array<uint32_t, 1> args = {{ width }}; |
| 732 | return this->defType(spv::OpTypeFloat, |
| 733 | args.size(), args.data()); |
| 734 | } |
| 735 | |
| 736 | |
| 737 | uint32_t SpirvModule::defVectorType( |
no test coverage detected