| 34 | |
| 35 | |
| 36 | static ProfileResult LogText(void* _ctx, const char* text) |
| 37 | { |
| 38 | ProfilerDummyContext* ctx = (ProfilerDummyContext*)_ctx; |
| 39 | dmStrlCat(ctx->m_TextBuffer, text, sizeof(ctx->m_TextBuffer)); |
| 40 | return PROFILE_RESULT_OK; |
| 41 | } |
| 42 | |
| 43 | static void* CreateListener() |
| 44 | { |
nothing calls this directly
no test coverage detected