summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2017-09-23tracker/tobii: remove warning for nowStanislaw Halik
2017-09-23tracker/pt: fix brainoStanislaw Halik
Don't multiply red channel by 3 in 0->1 range.
2017-09-22compat: add compatibility layer for value templatesStanislaw Halik
2017-09-22tracker/pt: add color extraction modesStanislaw Halik
2017-09-22gui/main-window: change widget properties a bitStanislaw Halik
2017-09-22pointless to use likely macroStanislaw Halik
The operation is so many cycles, branch prediction doesn't matter here.
2017-09-22gui: fix global qt style for xpStanislaw Halik
2017-09-22options: simplify macroStanislaw Halik
2017-09-22gui: call adjust-size() after show()Stanislaw Halik
2017-09-22gui/main-window: camel case makes my eyes bleedStanislaw Halik
2017-09-22cmake: fix my configStanislaw Halik
2017-09-22cv: use amcap.exe for ps3 eye exposure settingsStanislaw Halik
2017-09-22compat/util: this macro shouldn't be an instructionStanislaw Halik
2017-09-22cmake: disable cpu-heavy msvc debug featuresStanislaw Halik
2017-09-22cmake/msvc: disable frame pointer omissionStanislaw Halik
2017-09-08pose-widget: fix race on startupStanislaw Halik
2017-08-25cmake: fix typoStanislaw Halik
2017-08-25gitignoreStanislaw Halik
2017-08-25cmake: move to separate fileStanislaw Halik
2017-08-25compat/util: use std::decay for overload resolutionStanislaw Halik
2017-08-25compat/util: split macros headerStanislaw Halik
2017-08-25cmake: fix make clean for i18n filesStanislaw Halik
`make clean' was deleting .ts files. Thanks to @MrCapone for diagnosing this issue. Fixes: #677
2017-08-19tracker/{pt,aruco}: simplifyStanislaw Halik
2017-08-19pose-widget: clamp floatsStanislaw Halik
We can't expect bounds check to work, if depending on floating-point dot product.
2017-08-19compat/util: implement clamp specialization for floatsStanislaw Halik
2017-08-19Revert "pose-widget: remove badly-looking shadow"Stanislaw Halik
The shadow's not at fault. cf. https://github.com/opentrack/opentrack/issues/664#issuecomment-322397835
2017-08-14cmake/msvc: fix buildopentrack-2.3.9Stanislaw Halik
Dunno what was wrong otherwise.
2017-08-14cmake: some small quality-of-life improvementsStanislaw Halik
2017-08-14cmake: preliminary support for clang with vc++ codegenStanislaw Halik
2017-08-14cmake: drop executable bit from installed normal filesStanislaw Halik
2017-08-14some style fixesStanislaw Halik
2017-08-14tracker/pt: move Affine class to cv/Stanislaw Halik
2017-08-14cmake: fix installed qt dlls locationStanislaw Halik
2017-08-14use c++14 featuresStanislaw Halik
2017-08-14cmake: get lupdate/lrelease pathnamesStanislaw Halik
cf. #669
2017-08-05Merge pull request #668 from MrCapone/macos_build_fixStanisław Halik
fixed macos build
2017-08-05fixed macos buildDmitry Lukianov
2017-08-05spline: fix std::abs(int) import missingStanislaw Halik
Submitted-by: @MrCapone in #668 v2: we need <cmath>. Include <cinttypes> for the overload.
2017-08-05Merge pull request #669 from MrCapone/linux_build_fixStanisław Halik
fixed qt binaries location for linux
2017-08-04fixed qt binaries location for linuxDmitry
2017-08-03pose-widget: remove badly-looking shadowStanislaw Halik
2017-08-01gui: don't hook QEvent::ShowStanislaw Halik
It's pointless actually. It's not emitted before WindowActivate at all.
2017-07-31options/metatype: pass exact same name for slidersStanislaw Halik
That made sliders from 2.3.7 still incompatible. Apparently QVariant cares a lot about the difference between "options::slider_value", "::options::slider_value", and "slider_value".
2017-07-29gui: refresh mapping window even if main window is hiddenStanislaw Halik
2017-07-29tracker/pt: revert most 2.3.8 changesStanislaw Halik
Remove contour usage. They're less precise than flood fill. Keep sensible changes.
2017-07-29filter/accela: make gain more conservativeStanislaw Halik
Issue: #665
2017-07-29compat: fix Linux buildStanislaw Halik
Issue: #661
2017-07-29cmake: fix Linux buildStanislaw Halik
Issue: #661
2017-07-29proto/{libevdev,wine}: add stub i18nStanislaw Halik
Was breaking make(1). Issue: #661
2017-07-29compat/check-visible: fix non-win32 buildStanislaw Halik
Issue: #661 Reported-by: @ljgdasfhk