| 642 | } |
| 643 | |
| 644 | std::vector<Instruction*> ValidationState_t::getSampledImageConsumers( |
| 645 | uint32_t sampled_image_id) const { |
| 646 | std::vector<Instruction*> result; |
| 647 | auto iter = sampled_image_consumers_.find(sampled_image_id); |
| 648 | if (iter != sampled_image_consumers_.end()) { |
| 649 | result = iter->second; |
| 650 | } |
| 651 | return result; |
| 652 | } |
| 653 | |
| 654 | void ValidationState_t::RegisterSampledImageConsumer(uint32_t sampled_image_id, |
| 655 | Instruction* consumer) { |
no test coverage detected