Home
last modified time | relevance | path

Searched refs:animation (Results 1 – 25 of 81) sorted by relevance

1234

/OK3568_Linux_fs/buildroot/package/weston/
H A D0032-libweston-animation-Fix-double-destroy.patch4 Subject: [PATCH 32/93] libweston: animation: Fix double-destroy
8 libweston/animation.c | 9 ++++++++-
11 diff --git a/libweston/animation.c b/libweston/animation.c
13 --- a/libweston/animation.c
14 +++ b/libweston/animation.c
25 weston_view_animation_destroy(struct weston_view_animation *animation)
27 + if (animation->idle_destroy_source)
28 + wl_event_source_remove(animation->idle_destroy_source);
30 wl_list_remove(&animation->animation.link);
31 wl_list_remove(&animation->listener.link);
[all …]
H A D0065-compositor-Use-current-timestamp-for-animation.patch4 Subject: [PATCH 65/92] compositor: Use current timestamp for animation
7 animation.
31 wl_list_for_each_safe(animation, next, &output->animation_list, link) {
32 animation->frame_counter++;
33 - animation->frame(animation, output, &output->frame_time);
34 + animation->frame(animation, output, &now);
H A D0067-desktop-shell-Delay-locking-when-having-pending-fade.patch20 @@ -3580,18 +3580,24 @@ shell_fade_done_for_output(struct weston_view_animation *animation, void *d…
32 shell_output->fade.animation = NULL;
47 } else if (shell_output->fade.animation) {
48 weston_fade_update(shell_output->fade.animation, tint);
53 shell_output->fade.animation =
57 if (shell_output->fade.animation) {
58 weston_view_animation_destroy(shell_output->fade.animation);
59 shell_output->fade.animation = NULL;
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_11.0.1/
H A D0032-libweston-animation-Fix-double-destroy.patch4 Subject: [PATCH 32/93] libweston: animation: Fix double-destroy
8 libweston/animation.c | 9 ++++++++-
11 diff --git a/libweston/animation.c b/libweston/animation.c
13 --- a/libweston/animation.c
14 +++ b/libweston/animation.c
25 weston_view_animation_destroy(struct weston_view_animation *animation)
27 + if (animation->idle_destroy_source)
28 + wl_event_source_remove(animation->idle_destroy_source);
30 wl_list_remove(&animation->animation.link);
31 wl_list_remove(&animation->listener.link);
[all …]
H A D0066-compositor-Use-current-timestamp-for-animation.patch4 Subject: [PATCH 66/93] compositor: Use current timestamp for animation
7 animation.
31 wl_list_for_each_safe(animation, next, &output->animation_list, link) {
32 animation->frame_counter++;
33 - animation->frame(animation, output, &output->frame_time);
34 + animation->frame(animation, output, &now);
H A D0068-desktop-shell-Delay-locking-when-having-pending-fade.patch20 @@ -3580,18 +3580,24 @@ shell_fade_done_for_output(struct weston_view_animation *animation, void *d…
32 shell_output->fade.animation = NULL;
47 } else if (shell_output->fade.animation) {
48 weston_fade_update(shell_output->fade.animation, tint);
53 shell_output->fade.animation =
57 if (shell_output->fade.animation) {
58 weston_view_animation_destroy(shell_output->fade.animation);
59 shell_output->fade.animation = NULL;
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_10.0.2/
H A D0029-libweston-animation-Fix-double-destroy.patch4 Subject: [PATCH 29/79] libweston: animation: Fix double-destroy
8 libweston/animation.c | 9 ++++++++-
11 diff --git a/libweston/animation.c b/libweston/animation.c
13 --- a/libweston/animation.c
14 +++ b/libweston/animation.c
25 weston_view_animation_destroy(struct weston_view_animation *animation)
27 + if (animation->idle_destroy_source)
28 + wl_event_source_remove(animation->idle_destroy_source);
30 wl_list_remove(&animation->animation.link);
31 wl_list_remove(&animation->listener.link);
[all …]
H A D0064-compositor-Use-current-timestamp-for-animation.patch4 Subject: [PATCH 64/79] compositor: Use current timestamp for animation
7 animation.
31 wl_list_for_each_safe(animation, next, &output->animation_list, link) {
32 animation->frame_counter++;
33 - animation->frame(animation, output, &output->frame_time);
34 + animation->frame(animation, output, &now);
H A D0066-desktop-shell-Delay-locking-when-having-pending-fade.patch20 @@ -4018,18 +4018,24 @@ shell_fade_done_for_output(struct weston_view_animation *animation, void *d…
32 shell_output->fade.animation = NULL;
47 } else if (shell_output->fade.animation) {
48 weston_fade_update(shell_output->fade.animation, tint);
53 shell_output->fade.animation =
57 if (shell_output->fade.animation) {
58 weston_view_animation_destroy(shell_output->fade.animation);
59 shell_output->fade.animation = NULL;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/map/
H A Dtransform.cpp90 void Transform::easeTo(const CameraOptions& camera, const AnimationOptions& animation) { in easeTo() argument
128 Duration duration = animation.duration ? *animation.duration : Duration::zero(); in easeTo()
137 startTransition(camera, animation, [=](double t) { in easeTo()
164 void Transform::flyTo(const CameraOptions &camera, const AnimationOptions &animation) { in flyTo() argument
217 if (animation.minZoom) { in flyTo()
218 double minZoom = util::min(*animation.minZoom, startZoom, zoom); in flyTo()
264 if (animation.duration) { in flyTo()
265 duration = *animation.duration; in flyTo()
269 if (animation.velocity) { in flyTo()
270 velocity = *animation.velocity / rho; in flyTo()
[all …]
H A Dmap.cpp279 void Map::easeTo(const CameraOptions& camera, const AnimationOptions& animation) { in easeTo() argument
281 impl->transform.easeTo(camera, animation); in easeTo()
285 void Map::flyTo(const CameraOptions& camera, const AnimationOptions& animation) { in flyTo() argument
287 impl->transform.flyTo(camera, animation); in flyTo()
293 void Map::moveBy(const ScreenCoordinate& point, const AnimationOptions& animation) { in moveBy() argument
295 impl->transform.moveBy(point, animation); in moveBy()
299 void Map::setLatLng(const LatLng& latLng, const AnimationOptions& animation) { in setLatLng() argument
301 setLatLng(latLng, optional<ScreenCoordinate> {}, animation); in setLatLng()
304 …ap::setLatLng(const LatLng& latLng, const EdgeInsets& padding, const AnimationOptions& animation) { in setLatLng() argument
306 impl->transform.setLatLng(latLng, padding, animation); in setLatLng()
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/video/
H A Dvideoplaylist.cpp240 QPropertyAnimation *animation = new QPropertyAnimation(this, "geometry"); in hidePlayList() local
241 animation->setDuration(800); in hidePlayList()
242 animation->setEasingCurve(QEasingCurve::InQuad); in hidePlayList()
243 animation->setStartValue(QRect(704, 55, 320, 450)); in hidePlayList()
244 animation->setEndValue(QRect(800, 55, 320, 450)); in hidePlayList()
245 animation->start(); in hidePlayList()
247 connect(animation, SIGNAL(finished()), this, SLOT(hide())); in hidePlayList()
253 QPropertyAnimation *animation = new QPropertyAnimation(this, "geometry"); in showPlayList() local
254 animation->setDuration(300); in showPlayList()
255 animation->setEasingCurve(QEasingCurve::InQuad); in showPlayList()
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/MediaUI/player/
H A Dvideoplaylist.cpp240 QPropertyAnimation *animation = new QPropertyAnimation(this, "geometry"); in hidePlayList() local
241 animation->setDuration(800); in hidePlayList()
242 animation->setEasingCurve(QEasingCurve::InQuad); in hidePlayList()
243 animation->setStartValue(QRect(704, 55, 320, 450)); in hidePlayList()
244 animation->setEndValue(QRect(800, 55, 320, 450)); in hidePlayList()
245 animation->start(); in hidePlayList()
247 connect(animation, SIGNAL(finished()), this, SLOT(hide())); in hidePlayList()
253 QPropertyAnimation *animation = new QPropertyAnimation(this, "geometry"); in showPlayList() local
254 animation->setDuration(300); in showPlayList()
255 animation->setEasingCurve(QEasingCurve::InQuad); in showPlayList()
[all …]
H A Dplaylist.cpp86 QPropertyAnimation *animation = new QPropertyAnimation(this, "geometry"); in hidePlayList() local
87 animation->setDuration(800); in hidePlayList()
88 animation->setEasingCurve(QEasingCurve::InQuad); in hidePlayList()
89 animation->setStartValue(QRect(704, 55, 320, 450)); in hidePlayList()
90 animation->setEndValue(QRect(1024, 55, 320, 450)); in hidePlayList()
91 animation->start(); in hidePlayList()
93 connect(animation, SIGNAL(finished()), this, SLOT(hide())); in hidePlayList()
97 QPropertyAnimation *animation = new QPropertyAnimation(this, "geometry"); in showPlayList() local
98 animation->setDuration(300); in showPlayList()
99 animation->setEasingCurve(QEasingCurve::InQuad); in showPlayList()
[all …]
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/music/
H A Dplaylist.cpp86 QPropertyAnimation *animation = new QPropertyAnimation(this, "geometry"); in hidePlayList() local
87 animation->setDuration(800); in hidePlayList()
88 animation->setEasingCurve(QEasingCurve::InQuad); in hidePlayList()
89 animation->setStartValue(QRect(704, 55, 320, 450)); in hidePlayList()
90 animation->setEndValue(QRect(1024, 55, 320, 450)); in hidePlayList()
91 animation->start(); in hidePlayList()
93 connect(animation, SIGNAL(finished()), this, SLOT(hide())); in hidePlayList()
97 QPropertyAnimation *animation = new QPropertyAnimation(this, "geometry"); in showPlayList() local
98 animation->setDuration(300); in showPlayList()
99 animation->setEasingCurve(QEasingCurve::InQuad); in showPlayList()
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/power_supply/
H A Dcharge-animation.txt1 charge-animation
6 - rockchip,uboot-charge-on: enable uboot charge animation
7 - rockchip,android-charge-on: enable android charge animation,
8 either uboot charge animation or android charge animation
17 charge-animation {
/OK3568_Linux_fs/yocto/poky/meta/recipes-connectivity/connman/connman-gnome/
H A D0001-Port-to-Gtk3.patch109 @@ -102,8 +102,6 @@ static void icon_animation_start(IconAnimation *animation,
115 animation->start = start;
116 animation->end = (end == 0) ? animation->count - 1 : end;
118 @@ -120,8 +118,6 @@ static void icon_animation_stop(IconAnimation *animation)
124 if (animation->id > 0)
125 g_source_remove(animation->id);
/OK3568_Linux_fs/yocto/poky/meta/recipes-graphics/wayland/weston-init/
H A Dweston.ini16 #animation=zoom
17 #startup-animation=fade
26 #animation=fade
/OK3568_Linux_fs/buildroot/package/webp/
H A DConfig.in16 like color profile, metadata and animation.
23 like color profile, metadata and animation.
/OK3568_Linux_fs/buildroot/dl/qt5location/git/dist/
H A Dchanges-5.6.047 - Improved coordinate related animation handling. Previously an animation along
49 the direction for the animation.
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_ui/
H A Dtst_map_coordinateanimation.qml99 // Set from coordinate with animation disabled.
105 // Set to coordinate with animation enabled
125 … //check that coordinates from the animation is along a straight line between from and to
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/css/
H A Ddefault.css270 /* icon has to be absolutely positioned, otherwise the spin animation doesn't work */
328 /* Blue hightlight animation for tasks and directory structure tables */
329 .highlight { -webkit-animation: target-fade 15s 1; -moz-animation: target-fade 15s 1; animation: ta…
336 -webkit-animation: fa-spin 2s infinite linear;
337 animation: fa-spin 2s infinite linear;
341 -webkit-animation: fa-spin 1s infinite steps(8);
342 animation: fa-spin 1s infinite steps(8);
/OK3568_Linux_fs/debian/overlay/usr/lib/systemd/system/
H A Dbootanim.service2 Description=Boot time animation
/OK3568_Linux_fs/external/rkscript/
H A Dbootanim.service2 Description=Boot time animation
/OK3568_Linux_fs/buildroot/package/jquery-ui/
H A DConfig.in5 animation, advanced effects and high-level, themeable widgets,

1234