| 647 | } |
| 648 | |
| 649 | std::string getFilterModeString(cl_filter_mode mode) { |
| 650 | switch (mode) { |
| 651 | CASE(CL_FILTER_NEAREST); |
| 652 | CASE(CL_FILTER_LINEAR); |
| 653 | default: |
| 654 | return getHexString(mode); |
| 655 | } |
| 656 | } |
| 657 | |
| 658 | static std::string getSamplerInfoString(cl_sampler_info param_name) { |
| 659 | switch (param_name) { |
no test coverage detected