| 223 | } |
| 224 | |
| 225 | static ProfileResult FrameEnd(void*) |
| 226 | { |
| 227 | CHECK_INITIALIZED_RETVAL(PROFILE_RESULT_NOT_INITIALIZED); |
| 228 | DM_MUTEX_SCOPED_LOCK(g_Lock); |
| 229 | |
| 230 | dmProfileJSEndFrame(GetThreadId()); |
| 231 | return PROFILE_RESULT_OK; |
| 232 | } |
| 233 | |
| 234 | static ProfileResult ScopeBegin(void*, const char* name, uint64_t name_hash) |
| 235 | { |
nothing calls this directly
no test coverage detected