| 36 | } |
| 37 | |
| 38 | std::vector<int32_t> MsgWorkingCaptureInfo::GetCopyTextureDurations() { |
| 39 | std::vector<int32_t> result; |
| 40 | for (const auto& v : copy_texture_durations_) { |
| 41 | result.push_back(v); |
| 42 | } |
| 43 | return result; |
| 44 | } |
| 45 | |
| 46 | void MsgWorkingCaptureInfo::AppendMapCvtTextureDuration(int32_t duration) { |
| 47 | map_cvt_texture_durations_.push_back(duration); |
nothing calls this directly
no outgoing calls
no test coverage detected