diff options
Diffstat (limited to 'cc/resources/priority_calculator.cc')
-rw-r--r-- | cc/resources/priority_calculator.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cc/resources/priority_calculator.cc b/cc/resources/priority_calculator.cc index bb9908d..4e82820 100644 --- a/cc/resources/priority_calculator.cc +++ b/cc/resources/priority_calculator.cc @@ -62,9 +62,8 @@ int PriorityCalculator::RenderSurfacePriority() { // static int PriorityCalculator::LingeringPriority(int previous_priority) { - // FIXME: We should remove this once we have priorities for all - // textures (we can't currently calculate distances for - // off-screen textures). + // TODO(reveman): We should remove this once we have priorities for all + // textures (we can't currently calculate distances for off-screen textures). return std::min(kLingeringLimitPriority, std::max(kLingeringBasePriority, previous_priority + 1)); } |