(&self, ty: Word)
| 112 | } |
| 113 | |
| 114 | pub fn constant_null(&self, ty: Word) -> SpirvValue { |
| 115 | self.def_constant(ty, SpirvConst::Null) |
| 116 | } |
| 117 | |
| 118 | pub fn undef(&self, ty: Word) -> SpirvValue { |
| 119 | self.def_constant(ty, SpirvConst::Undef) |
no test coverage detected