summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2015-07-27shortcuts: add missing win32 bindingStanislaw Halik
2015-07-26fix OSX buildStanislaw Halik
2015-07-26qfc: qreal isn't float, use autoStanislaw Halik
2015-07-26qfc: use doubles for intermediate valuesStanislaw Halik
We could lose precision when multiplying by integral_max with floats. For doubles, we can count on up to 2^56 - 1 to be expressible somewhat exactly.
2015-07-26qfc: reload spline data lazilyStanislaw Halik
2015-07-26qfc: add missing mutexStanislaw Halik
2015-07-26qfc: tweaksStanislaw Halik
2015-07-26qfc: disallow placing new points if too close to existing onesStanislaw Halik
2015-07-26qfc: last value is always positive or zeroStanislaw Halik
2015-07-26qfc: use integers as storage, not floatsStanislaw Halik
Float mantissa has 23 bits. 9 bits get wasted per value. Instead, use uint16_t that doesn't lose much precision, but saves half the space.
2015-07-26qfc: we need positive retval hereStanislaw Halik
2015-07-26qfc: interpolate the right way for negative valuesStanislaw Halik
2015-07-26qfc: sensible step when drawingStanislaw Halik
Higher step value allows more precision when spline doesn't match the control points.
2015-07-26qfc: lift computation out of loopStanislaw Halik
2015-07-26qfc: abstract away internally-used data typeStanislaw Halik
Also, change value_type to more sensible value
2015-07-26qfc: reduce artifacts on high-frequency functionsStanislaw Halik
2015-07-26ui: also implicitly cancel options/mapping screens on normal closeStanislaw Halik
2015-07-26ui: remove duplicate includeStanislaw Halik
2015-07-26main: improve theme/qt plugin selection logicStanislaw Halik
2015-07-26main: simplify win32 add_program_library_pathStanislaw Halik
2015-07-26pt camera: small tweaksStanislaw Halik
2015-07-26pt: preventing crashing on camera manipulationStanislaw Halik
2015-07-25move portability classes to compat libraryStanislaw Halik
2015-07-25shortcuts: remove duplicationStanislaw Halik
2015-07-25rename to win32-shortcuts.cppStanislaw Halik
2015-07-25shortcuts: add missing keybindingsStanislaw Halik
2015-07-25shortcuts: also guard against multiple-modifier combosStanislaw Halik
2015-07-25shortcuts: fix shift-keys for real this timeStanislaw Halik
2015-07-25shortcuts: add missing Windows binding for enter keyStanislaw Halik
2015-07-25shortcuts: clarify binding dialogStanislaw Halik
2015-07-25shortcuts: allow for modifier keysStanislaw Halik
2015-07-25fix buildStanislaw Halik
2015-07-25fix integral/float confusionStanislaw Halik
2015-07-25shortcuts: store .ini value as portable stringStanislaw Halik
2015-07-25shortcuts: prototyped for LinuxStanislaw Halik
2015-07-25shortcuts: linux workStanislaw Halik
2015-07-25initial impl of arbitrary keybindingsStanislaw Halik
Issue: #118 Linux and OSX likely broken for now.
2015-07-24standardize on not using "using namespace {cv,std}"Stanislaw Halik
2015-07-24accela: try to smooth out the rotation functionStanislaw Halik
Issue: #204
2015-07-24qfc: allow max range as floating pointStanislaw Halik
affects accela
2015-07-24x-plane plugin osx fixesStanislaw Halik
2015-07-24Revert "pt: change point internal representation"opentrack-2.3-rc15p1Stanislaw Halik
This reverts commit e89c2b1034692eb1365715a089b7035e6d837719. Issue: #199
2015-07-23no longer add extra file to modulesStanislaw Halik
Modules now link to opentrack-api so this isn't needed
2015-07-22default to the most common protocol/filter pairopentrack-2.3-rc15Stanislaw Halik
2015-07-22osx gitignoreStanislaw Halik
2015-07-22osx: app bundle depends on working directoryStanislaw Halik
Tested-by: Ryan Spicer (@alterscape)
2015-07-21aruco: drop last_fov following calibration removalStanislaw Halik
2015-07-20for now remove calibration supportStanislaw Halik
PT tracker returns garbage when calibrating, Z is zero. Maybe can be reverted and fixed later.
2015-07-20cleanup #ifdefsStanislaw Halik
We're the only maintainer of the PT tracker now, so don't clutter the file so much.
2015-07-20cleanup invalid recursive mutex acquisitionsStanislaw Halik