summaryrefslogtreecommitdiffhomepage
path: root/compat
AgeCommit message (Collapse)Author
2017-09-22compat/util: this macro shouldn't be an instructionStanislaw Halik
2017-08-25compat/util: use std::decay for overload resolutionStanislaw Halik
2017-08-25compat/util: split macros headerStanislaw Halik
2017-08-19compat/util: implement clamp specialization for floatsStanislaw Halik
2017-08-14use c++14 featuresStanislaw Halik
2017-08-05fixed macos buildDmitry Lukianov
2017-07-29compat: fix Linux buildStanislaw Halik
Issue: #661
2017-07-29compat/check-visible: fix non-win32 buildStanislaw Halik
Issue: #661 Reported-by: @ljgdasfhk
2017-07-28gui: don't update the main window if it's hiddenStanislaw Halik
2017-07-25compat/math: export logarithmic functionsStanislaw Halik
2017-07-24compat/util: fix recursive macro definitionStanislaw Halik
2017-07-21compat/util: rename macroStanislaw Halik
2017-07-16compat/shm: reorder codeStanislaw Halik
Hopefully prevent getting misdetected by an antivirus. Issue: #654
2017-07-16compat/math-imports: use itStanislaw Halik
2017-07-16compat/functional: fix templateStanislaw Halik
2017-07-07proto/simconnect: fix WinSxS library versionsStanislaw Halik
We had all the wrong versions assigned to comboboxen. With the correct versions, Prepar3D works with its own SimConnect redist named "SP2-XPACK". The library version is the same as SP2 and the combobox item exists only to help users.
2017-07-06options/value: try "extern template" for code sizeStanislaw Halik
2017-06-30compat: slightly reformatStanislaw Halik
2017-06-30compat: add restrict macrosStanislaw Halik
2017-06-22tracker/pt: replace point extraction algorithmStanislaw Halik
Profiling over a longer time period showed a bottleneck while iterating pixels with `cv::floodFill()'. Contours are actually faster, and we have MeanShift to establish the proper center basing on pixel intensities.
2017-06-18compat/time: don't use "long long" for millisecondsStanislaw Halik
2017-06-10timer-resolution: removeStanislaw Halik
2017-06-10minor cleanup onlyStanislaw Halik
2017-06-10compat/timer-resolution: we want higher timer resolutionStanislaw Halik
Windows scheduler performs badly with 1000 Hz.
2017-06-07cmake: cleanupStanislaw Halik
We now inherit parent process' console. No need for the cmake cache option.
2017-05-30compat/powerset: add missing includesStanislaw Halik
2017-05-30qxt-mini: split powerset to compat/Stanislaw Halik
2017-05-24api/variance: move to compat/Stanislaw Halik
2017-05-16compat/euler: return using an initializer listStanislaw Halik
Will come back to the same simplification elsewher.e
2017-05-16add otr_prop for appending property stringsStanislaw Halik
2017-05-14compat/timer: remove unused headersStanislaw Halik
2017-05-14compat/timer: add missing assert includeStanislaw Halik
2017-05-14compat/simple-mat: pass -Werror on llvmStanislaw Halik
2017-05-12compat/util: add PROG1, adjust clampStanislaw Halik
2017-05-12compat/timer: add std::chrono supportStanislaw Halik
2017-05-10compat/util: simplifyStanislaw Halik
2017-05-10compat/functional: add generic value-constant typeStanislaw Halik
2017-05-10meta: add index sequence with types as indicesStanislaw Halik
2017-05-10compat/util: more utilsStanislaw Halik
2017-05-10compat/timer-resolution: don't include windows.h in headerStanislaw Halik
2017-05-10cmake: APPEND_STRING must have a space in frontStanislaw Halik
2017-05-10compat: add map/filter template functionsStanislaw Halik
2017-05-02compat/timer-resolution: use undocumented windows APIStanislaw Halik
Unlike timeBeginPeriod in winmm, this one sets the timer resolution for the calling process, only.
2017-05-02simple-mat: return 0 norm if below epsilonStanislaw Halik
2017-05-01simple-mat: broke cross product formulaStanislaw Halik
2017-05-01simple-mat: add vector normStanislaw Halik
2017-04-29compat/util: add macro for memoizing valuesStanislaw Halik
2017-04-29compat/meta: add basic template metaprogramming headerStanislaw Halik
2017-04-29compat/simple-mat: initialize like a single-dimensional arrayStanislaw Halik
I have no idea why this works.
2017-04-18compat/{simple-mat,euler}: unbreak calibrationStanislaw Halik
No idea what regressed.