| 40 | { |
| 41 | |
| 42 | void printString(const char* str) |
| 43 | { |
| 44 | #if PX_ANDROID |
| 45 | __android_log_print(ANDROID_LOG_INFO, "PsPrintString", "%s", str); |
| 46 | #else |
| 47 | puts(str); |
| 48 | #endif |
| 49 | } |
| 50 | |
| 51 | } // namespace shdfnd |
| 52 | } // namespace physx |
no outgoing calls
no test coverage detected