| 250 | } |
| 251 | |
| 252 | void VideoBackendPlayer::Created(const VideoBackendPlayerInfo& info) |
| 253 | { |
| 254 | #ifdef TRACY_ENABLE |
| 255 | DebugUrlLen = info.Url.Length(); |
| 256 | DebugUrl = (Char*)Allocator::Allocate(DebugUrlLen * sizeof(Char) + 2); |
| 257 | Platform::MemoryCopy(DebugUrl, *info.Url, DebugUrlLen * 2 + 2); |
| 258 | #endif |
| 259 | Updated(info); |
| 260 | } |
| 261 | |
| 262 | void VideoBackendPlayer::Updated(const VideoBackendPlayerInfo& info) |
| 263 | { |
no test coverage detected