| 860 | /////////////////////////////////////////////////////////////////////////////// |
| 861 | |
| 862 | extern "C" OPENPGL_DLLEXPORT void pglReleaseString(PGLString str) |
| 863 | { |
| 864 | if (str.m_str) |
| 865 | { |
| 866 | delete[] str.m_str; |
| 867 | str.m_str = nullptr; |
| 868 | str.m_size = 0; |
| 869 | } |
| 870 | } |
| 871 | |
| 872 | #if defined(OPENPGL_IMAGE_SPACE_GUIDING_BUFFER) |
| 873 | /////////////////////////////////////////////////////////////////////////////// |
no outgoing calls
no test coverage detected