| 338 | } |
| 339 | |
| 340 | static Result NRI_CALL CreateQueryPool(Device&, const QueryPoolDesc&, QueryPool*& queryPool) { |
| 341 | queryPool = DummyObject<QueryPool>(); |
| 342 | |
| 343 | return Result::SUCCESS; |
| 344 | } |
| 345 | |
| 346 | static Result NRI_CALL CreateSampler(Device&, const SamplerDesc&, Descriptor*& sampler) { |
| 347 | sampler = DummyObject<Descriptor>(); |
nothing calls this directly
no outgoing calls
no test coverage detected