| 1411 | } |
| 1412 | |
| 1413 | void |
| 1414 | TrackerNodeInteract::rebuildMarkerTextures() |
| 1415 | { |
| 1416 | ///Refresh textures for all markers |
| 1417 | std::list<TrackMarkerPtr> markers; |
| 1418 | |
| 1419 | getContext()->getSelectedMarkers(&markers); |
| 1420 | for (std::list<TrackMarkerPtr>::iterator it = markers.begin(); it != markers.end(); ++it) { |
| 1421 | std::set<int> keys; |
| 1422 | (*it)->getUserKeyframes(&keys); |
| 1423 | for (std::set<int>::iterator it2 = keys.begin(); it2 != keys.end(); ++it2) { |
| 1424 | makeMarkerKeyTexture(*it2, *it); |
| 1425 | } |
| 1426 | } |
| 1427 | onContextSelectionChanged(TrackerContext::eTrackSelectionInternal); |
| 1428 | } |
| 1429 | |
| 1430 | /** |
| 1431 | *@brief Moves of the given pixel the selected tracks. |
nothing calls this directly
no test coverage detected