| 148 | } |
| 149 | |
| 150 | static Result NRI_CALL CreateQueryPool(Device& device, const QueryPoolDesc& queryPoolDesc, QueryPool*& queryPool) { |
| 151 | return ((DeviceVal&)device).CreateQueryPool(queryPoolDesc, queryPool); |
| 152 | } |
| 153 | |
| 154 | static Result NRI_CALL CreateSampler(Device& device, const SamplerDesc& samplerDesc, Descriptor*& sampler) { |
| 155 | return ((DeviceVal&)device).CreateDescriptor(samplerDesc, sampler); |
nothing calls this directly
no test coverage detected