summaryrefslogtreecommitdiffhomepage
path: root/gui/init.cpp
AgeCommit message (Collapse)Author
2018-12-24cruftStanislaw Halik
2018-12-08gui/init: fix evil typoStanislaw Halik
2018-10-27cleanupStanislaw Halik
2018-10-25cleanups onlyStanislaw Halik
2018-10-05gui/init: handle -msse2 -mno-sse3Stanislaw Halik
2018-10-05use attributes only at declaration, not definitionStanislaw Halik
2018-07-11gui/init: sprinkle some `static'Stanislaw Halik
2018-07-08options: fix 2 issuesStanislaw 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-08modernize onlyStanislaw Halik
2018-06-26modernize C++ syntaxStanislaw Halik
No visible changes (hopefully).
2018-06-13gui/init: DAZ is enough for SSEStanislaw Halik
2018-05-27gui: fix link error due to differing prototypeStanislaw Halik
Reported-by: Artem Sobolev
2018-05-27gui: appease linterStanislaw Halik
2018-02-16gui/init: fix translations even harderStanislaw Halik
Issue: #748
2018-02-16gui/init: shorten to `OTR_FORCE_LANG'opentrack-2.3.49-pipeline-fix-backupStanislaw Halik
2018-02-16gui/init: allow forcing locale via envStanislaw Halik
Issue: #748
2018-02-16gui: attach parent console harderStanislaw Halik
2018-02-15clean up "static" and "constexpr" typesStanislaw 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-18compat/util: retireStanislaw Halik
Adjust usages.
2018-01-17gui/init: remove logspamStanislaw Halik
2018-01-16gui, variant/default: move default UIStanislaw Halik
2018-01-16add missing copyright statementStanislaw Halik
2018-01-14gui: fix trayStanislaw Halik
2018-01-13cmake, main: work toward introducing alternative UIStanislaw 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.