Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-16 | gui/init: avoid allocations in logger | Stanislaw Halik | |
2019-01-16 | gui: fix `if constexpr' misuse | Stanislaw Halik | |
2019-01-16 | gui/init: enable custom Qt logger on non-win32 | Stanislaw Halik | |
2019-01-16 | compat/spinlock: implement and use it | Stanislaw Halik | |
2018-12-28 | gui/init: output to MSVC debugger if attached | Stanislaw Halik | |
2018-12-28 | gui/init: fix mingw-w64 _controlfp | Stanislaw Halik | |
2018-12-28 | gui/init: decruft | Stanislaw Halik | |
2018-12-26 | compat/arch: simplify microarchitecture detection | Stanislaw Halik | |
2018-12-25 | fix build... | Stanislaw Halik | |
2018-12-25 | gui/init: add more Qt switches | Stanislaw Halik | |
2018-12-25 | gui/init: fix Qt 5.5 | Stanislaw Halik | |
2018-12-24 | cruft | Stanislaw Halik | |
2018-12-08 | gui/init: fix evil typo | Stanislaw Halik | |
2018-10-27 | cleanup | Stanislaw Halik | |
2018-10-25 | cleanups only | Stanislaw Halik | |
2018-10-05 | gui/init: handle -msse2 -mno-sse3 | Stanislaw Halik | |
2018-10-05 | use attributes only at declaration, not definition | Stanislaw Halik | |
2018-07-11 | gui/init: sprinkle some `static' | Stanislaw Halik | |
2018-07-08 | options: fix 2 issues | Stanislaw Halik | |
1. Calling valueChanged didn't invoke machinery in value<t>, only base_value aka value_. There's a fast path in value<t>::type() despite the pessimization. 2. Split global scope stuff into options::globals from the options::globals stuff 3. Adjust usages | |||
2018-07-08 | modernize only | Stanislaw Halik | |
2018-06-26 | modernize C++ syntax | Stanislaw Halik | |
No visible changes (hopefully). | |||
2018-06-13 | gui/init: DAZ is enough for SSE | Stanislaw Halik | |
2018-05-27 | gui: fix link error due to differing prototype | Stanislaw Halik | |
Reported-by: Artem Sobolev | |||
2018-05-27 | gui: appease linter | Stanislaw Halik | |
2018-02-16 | gui/init: fix translations even harder | Stanislaw Halik | |
Issue: #748 | |||
2018-02-16 | gui/init: shorten to `OTR_FORCE_LANG'opentrack-2.3.49-pipeline-fix-backup | Stanislaw Halik | |
2018-02-16 | gui/init: allow forcing locale via env | Stanislaw Halik | |
Issue: #748 | |||
2018-02-16 | gui: attach parent console harder | Stanislaw Halik | |
2018-02-15 | clean up "static" and "constexpr" types | Stanislaw Halik | |
- use `static constexpr inline' to avoid requiring explicit declarations in object code - use `const Foo* const' to maybe put into readonly binary segment (at least for ELF DSOs) - `constexpr' in function scope has storage, avoid `static' - don't use `constexpr' where there's no advantage, like arrays We'd like to avoid overhead of atomic initialization for each function call. No idea how `static constexpr' requiring storage in the standard plays with atomic initialization requirement. Hearsay points that `constexpr' without `static' in block scope behaves more to our liking. It's all hazy though. I'm not 100% sure if `static inline constexpr' has any storage. Hopefully none, like a #define, and stuff bigger than registers gets coalesced within the same module, with small stuff being immediates. | |||
2018-01-18 | compat/util: retire | Stanislaw Halik | |
Adjust usages. | |||
2018-01-17 | gui/init: remove logspam | Stanislaw Halik | |
2018-01-16 | gui, variant/default: move default UI | Stanislaw Halik | |
2018-01-16 | add missing copyright statement | Stanislaw Halik | |
2018-01-14 | gui: fix tray | Stanislaw Halik | |
2018-01-13 | cmake, main: work toward introducing alternative UI | Stanislaw Halik | |
We're going to base opentrack derivatives on the same branch. Previously merges were a living hell. Modularizing the UI code and having continuously-built executables will do a lot. First opentrack variant in progress is a TrackHat device for mouse and scrolling control for people with spine and hand/arm disabilities. |