Home
last modified time | relevance | path

Searched refs:animation_info (Results 1 – 21 of 21) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/ash/accessibility/
H A Dlayer_animation_info.cc16 if (timestamp < animation_info->start_time) in ComputeOpacity()
17 timestamp = animation_info->start_time; in ComputeOpacity()
25 animation_info->opacity = 0.0; in ComputeOpacity()
46 if (animation_info->offset > animation_info->offset_bound) { in ComputeOffset()
47 animation_info->offset = animation_info->offset_bound; in ComputeOffset()
48 animation_info->animation_rate *= -1; in ComputeOffset()
50 animation_info->offset = 0; in ComputeOffset()
51 animation_info->animation_rate *= -1; in ComputeOffset()
56 animation_info->offset += offset_delta; in ComputeOffset()
58 if (animation_info->offset > animation_info->offset_bound) { in ComputeOffset()
[all …]
H A Dpoint_scan_controller.cc80 void PointScanController::UpdateTimeInfo(LayerAnimationInfo* animation_info, in UpdateTimeInfo() argument
82 animation_info->start_time = animation_info->change_time; in UpdateTimeInfo()
83 animation_info->change_time = timestamp; in UpdateTimeInfo()
H A Daccessibility_focus_ring_controller_impl.cc103 LayerAnimationInfo* animation_info) { in OnLayerChange() argument
104 animation_info->change_time = base::TimeTicks::Now(); in OnLayerChange()
105 if (animation_info->opacity == 0) in OnLayerChange()
106 animation_info->start_time = animation_info->change_time; in OnLayerChange()
H A Dlayer_animation_info.h24 void ComputeOpacity(LayerAnimationInfo* animation_info,
27 void ComputeOffset(LayerAnimationInfo* animation_info,
H A Dpoint_scan_layer.h40 void OnLayerChange(LayerAnimationInfo* animation_info);
H A Dpoint_scan_controller.h52 void UpdateTimeInfo(LayerAnimationInfo* animation_info,
H A Daccessibility_focus_ring_group.h41 static void ComputeOpacity(LayerAnimationInfo* animation_info,
H A Daccessibility_focus_ring_controller_impl.h87 void OnLayerChange(LayerAnimationInfo* animation_info);
/dports/audio/ardour6/Ardour-6.8.0/libs/clearlooks-newer/
H A Danimation.c88 g_timer_destroy (animation_info->timer); in animation_info_destroy()
89 g_free (animation_info); in animation_info_destroy()
109 AnimationInfo *animation_info = data; in destroy_animation_info_and_weak_unref() local
162 AnimationInfo *animation_info; in update_animation_info() local
165 animation_info = value; in update_animation_info()
188 if (animation_info->stop_time != 0 && in update_animation_info()
189 g_timer_elapsed (animation_info->timer, NULL) > animation_info->stop_time) in update_animation_info()
221 AnimationInfo *animation_info; in on_checkbox_toggle() local
226 if (animation_info != NULL) in on_checkbox_toggle()
230 animation_info->start_modifier = elapsed - animation_info->start_modifier; in on_checkbox_toggle()
[all …]
/dports/x11-themes/gtk-engines2/gtk-engines-2.20.2/engines/clearlooks/src/
H A Danimation.c89 g_timer_destroy (animation_info->timer); in animation_info_destroy()
90 g_free (animation_info); in animation_info_destroy()
110 AnimationInfo *animation_info = data; in destroy_animation_info_and_weak_unref() local
117 animation_info_destroy (animation_info); in destroy_animation_info_and_weak_unref()
163 AnimationInfo *animation_info = value; in update_animation_info() local
186 if (animation_info->stop_time != 0 && in update_animation_info()
187 g_timer_elapsed (animation_info->timer, NULL) > animation_info->stop_time) in update_animation_info()
219 if (animation_info != NULL) in on_checkbox_toggle()
223 animation_info->start_modifier = elapsed - animation_info->start_modifier; in on_checkbox_toggle()
312 if (animation_info) in clearlooks_animation_elapsed()
[all …]
/dports/x11-themes/gtk-murrine-engine/murrine-0.98.2/src/
H A Danimation.c83 g_timer_destroy (animation_info->timer); in animation_info_destroy()
84 g_free (animation_info); in animation_info_destroy()
103 AnimationInfo *animation_info = data; in destroy_animation_info_and_weak_unref() local
110 animation_info_destroy (animation_info); in destroy_animation_info_and_weak_unref()
156 AnimationInfo *animation_info = value; in update_animation_info() local
179 if (animation_info->stop_time != 0 && in update_animation_info()
180 g_timer_elapsed (animation_info->timer, NULL) > animation_info->stop_time) in update_animation_info()
213 if (animation_info != NULL) in on_checkbox_toggle()
217 animation_info->start_modifier = elapsed - animation_info->start_modifier; in on_checkbox_toggle()
306 if (animation_info) in murrine_animation_elapsed()
[all …]
/dports/x11-themes/gtk-nodoka-engine/gtk-nodoka-engine-0.7.5/src/GTKEngine/
H A Danimation.c87 g_timer_destroy (animation_info->timer); in animation_info_destroy()
88 g_free (animation_info); in animation_info_destroy()
108 AnimationInfo *animation_info = data; in destroy_animation_info_and_weak_unref() local
116 animation_info_destroy (animation_info); in destroy_animation_info_and_weak_unref()
164 AnimationInfo *animation_info = value; in update_animation_info() local
188 if (animation_info->stop_time != 0 && in update_animation_info()
189 g_timer_elapsed (animation_info->timer, in update_animation_info()
222 if (animation_info != NULL) in on_checkbox_toggle()
226 animation_info->start_modifier = in on_checkbox_toggle()
322 if (animation_info) in nodoka_animation_elapsed()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chromecast/graphics/accessibility/
H A Daccessibility_focus_ring_controller.cc172 AccessibilityFocusRingController::LayerAnimationInfo* animation_info) { in OnLayerChange() argument
173 animation_info->change_time = base::TimeTicks::Now(); in OnLayerChange()
174 if (animation_info->opacity == 0) in OnLayerChange()
175 animation_info->start_time = animation_info->change_time; in OnLayerChange()
461 if (timestamp < animation_info->start_time) in ComputeOpacity()
462 timestamp = animation_info->start_time; in ComputeOpacity()
464 base::TimeDelta start_delta = timestamp - animation_info->start_time; in ComputeOpacity()
466 base::TimeDelta fade_in_time = animation_info->fade_in_time; in ComputeOpacity()
467 base::TimeDelta fade_out_time = animation_info->fade_out_time; in ComputeOpacity()
470 animation_info->opacity = 0.0; in ComputeOpacity()
[all …]
H A Daccessibility_focus_ring_controller.h109 void OnLayerChange(LayerAnimationInfo* animation_info);
110 void ComputeOpacity(LayerAnimationInfo* animation_info,
/dports/games/valyriatear/ValyriaTear-1.1.0/src/modes/map/
H A Dmap_tiles.cpp235 std::vector<uint32_t> animation_info; in Load() local
256 animation_info.clear(); in Load()
257 tileset_script.ReadUIntVector(j, animation_info); in Load()
260 uint32_t first_frame_index = animation_info[0] + (i * TILES_PER_TILESET); in Load()
272 for(uint32_t k = 0; k < animation_info.size(); k += 2) { in Load()
273 … new_animation->AddFrame(tileset_images[i][animation_info[k]], animation_info[k + 1]); in Load()
/dports/games/allacrost/allacrost-1.0.2/src/modes/map/
H A Dmap_tiles.cpp246 vector<uint32> animation_info; in Load() local
260 animation_info.clear(); in Load()
261 tileset_script.ReadUIntVector(j, animation_info); in Load()
264 uint32 first_frame_index = animation_info[0] + (i * TILES_PER_TILESET); in Load()
276 for (uint32 k = 0; k < animation_info.size(); k += 2) { in Load()
277 new_animation->AddFrame(tileset_images[i][animation_info[k]], animation_info[k+1]); in Load()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ash/home_screen/
H A Dhome_screen_presenter.cc130 base::Optional<HomeScreenDelegate::AnimationInfo> animation_info = in SetFinalHomeTransformForTransition() local
140 1.0 /*scale*/, 1.0 /*opacity*/, std::move(animation_info), in SetFinalHomeTransformForTransition()
146 std::move(animation_info), animation_settings_updater); in SetFinalHomeTransformForTransition()
H A Dhome_screen_delegate.h75 base::Optional<AnimationInfo> animation_info,
/dports/games/hypatia_engine/hypatia_engine-0.3.1/hypatia/
H A Dtiles.py136 animation_info = (animated_tile, tile_position)
137 animated_tile_stack[z].add(animation_info)
/dports/www/chromium-legacy/chromium-88.0.4324.182/ash/app_list/
H A Dapp_list_controller_impl.cc171 base::Optional<HomeScreenDelegate::AnimationInfo> animation_info) { in GetTransitionFromMetricsAnimationInfo() argument
172 if (!animation_info.has_value()) in GetTransitionFromMetricsAnimationInfo()
175 return CalculateAnimationTransitionForMetrics(animation_info->trigger, in GetTransitionFromMetricsAnimationInfo()
176 animation_info->showing); in GetTransitionFromMetricsAnimationInfo()
977 base::Optional<AnimationInfo> animation_info, in UpdateScaleAndOpacityForHomeLauncher() argument
979 DCHECK(!animation_info.has_value() || !callback.is_null()); in UpdateScaleAndOpacityForHomeLauncher()
983 GetTransitionFromMetricsAnimationInfo(std::move(animation_info)), in UpdateScaleAndOpacityForHomeLauncher()
H A Dapp_list_controller_impl.h285 base::Optional<AnimationInfo> animation_info,