| 635 | } |
| 636 | |
| 637 | std::string GetStringArray(std::size_t numElements, const GLchar* const* elements) const |
| 638 | { |
| 639 | std::string result = "{"; |
| 640 | for (std::size_t i = 0; i < numElements; ++i) |
| 641 | { |
| 642 | result += std::string(elements[i]); |
| 643 | if (i + 1 < numElements) |
| 644 | { |
| 645 | result += ","; |
| 646 | } |
| 647 | } |
| 648 | result += "}"; |
| 649 | return result; |
| 650 | } |
| 651 | |
| 652 | std::string GetString(char const* elements) const |
| 653 | { |
no outgoing calls
no test coverage detected