mirror of
https://github.com/openwrt/video.git
synced 2025-12-21 19:14:35 +04:00
There's some minor changes, especially to seperate an qt4 from an qt5 installation (Host and target). Also the x11 support got dropped - framebuffer only. Some obvious and trivial bug fixes got applied as well, however, apart from that, it basically is, what it was. The Xorg feed is totally unmaintained currently, also the early approach of running an Xserver on embedded devices - hence the feed's name - thankfully didn't really become the standard either. So let's reorganise some of the stuff from the Xorg feed worth keeping within the new Video feed.
15 lines
601 B
Diff
15 lines
601 B
Diff
---
|
|
src/corelib/animation/qvariantanimation.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- qt-everywhere-opensource-src-4.7.0-beta2.orig/src/corelib/animation/qvariantanimation.h
|
|
+++ qt-everywhere-opensource-src-4.7.0-beta2/src/corelib/animation/qvariantanimation.h
|
|
@@ -117,6 +117,7 @@ private:
|
|
};
|
|
|
|
template <typename T>
|
|
+static inline __attribute__((__always_inline__))
|
|
void qRegisterAnimationInterpolator(QVariant (*func)(const T &from, const T &to, qreal progress)) {
|
|
QVariantAnimation::registerInterpolator(reinterpret_cast<QVariantAnimation::Interpolator>(func), qMetaTypeId<T>());
|
|
}
|