Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-25 | Remove unused includes to common/thread.h | Emmanuel Gil Peyrot | |
2014-11-19 | Remove tabs in all files except in skyeye imports and in generated GL code | Emmanuel Gil Peyrot | |
2014-11-19 | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵ | Emmanuel Gil Peyrot | |
or generated | |||
2014-11-18 | Merge pull request #165 from neobrain/viewport-scaling | bunnei | |
Stretch emulation output to render window and be display density independent | |||
2014-11-18 | Remove extraneous semicolons | Lioncash | |
2014-11-18 | EmuWindow: Add some explicit documentation and set proper minimal client ↵ | Tony Wasserka | |
area size. | |||
2014-11-18 | EmuWindow: Add a TODO. | Tony Wasserka | |
Implementing this function currently is not critical, as we don't perform any configuration changes, yet. However, the interface is a good starting point for adding this functionality. | |||
2014-11-18 | MathUtil: Make Rectangle work with unsigned types. | Tony Wasserka | |
2014-11-18 | EmuWindow: Better document the purpose of OnMinimalClientAreaChangeRequest. | Tony Wasserka | |
2014-11-18 | EmuWindow: Remove window title getters/setters. | Tony Wasserka | |
The window title is none of the emulation core's business. The GUI code is free to put whatever it wants there. Providing properly thread-safe window title getters and setters is a mess anyway. | |||
2014-11-18 | EmuWindow: Add documentation. | Tony Wasserka | |
2014-11-18 | EmuWindow: Add support for specifying minimal client area sizes. | Tony Wasserka | |
2014-11-18 | Fixup EmuWindow interface and implementations thereof. | Tony Wasserka | |
2014-11-18 | Viewport scaling and display density independence | Kevin Hartman | |
The view is scaled to be as large as possible, without changing the aspect, within the bounds of the window. On "retina" displays, or other displays where window units != pixels, the view should no longer draw incorrectly. | |||
2014-11-18 | Add a GUI logging channel. | Tony Wasserka | |
Replace asserts with _dbg_assert_. | |||
2014-11-17 | emu_window: Fix initializer list order. | Lioncash | |
Gets rid of a warning on OSX. | |||
2014-11-12 | Use std::u16string for conversion between UTF-8 and UTF-16, FS:USER functions | archshift | |
2014-10-29 | Renamed souce files of services to match port names | Gareth Poole | |
2014-10-26 | Add `override` keyword through the code. | Yuri Kunde Schlesner | |
This was automated using `clang-modernize`. | |||
2014-10-26 | Fix compile errors in Clang | Yuri Kunde Schlesner | |
2014-10-25 | Merge pull request #150 from lioncash/typo | Tony Wasserka | |
bit_field: Fix a typo in the sample usage. | |||
2014-10-25 | bit_field: Fix a typo in the sample usage. | Lioncash | |
2014-10-23 | Removed uses of raw c-string manipulation functions. | archshift | |
2014-10-23 | Merge pull request #133 from archshift/sdmc-enabled | bunnei | |
Use config files to store whether SDMC is enabled or not, auto-create SDMC dir. | |||
2014-10-22 | Use std sized types instead of platform specific typedefs | Yuri Kunde Schlesner | |
2014-10-22 | Common: Return from CreateFullPath early if the directory creation fails | archshift | |
2014-10-07 | Merge pull request #108 from archshift/config | bunnei | |
Configuration files | |||
2014-10-07 | Added configuration file system. | archshift | |
Uses QSettings on citra-qt, and inih on citra-cli. | |||
2014-10-06 | Common: Add a helper function to generate a 8.3 filename from a long one. | Emmanuel Gil Peyrot | |
Core: Fix the SDMC Directory implementation to make blargSnes work. | |||
2014-09-28 | Fix warnings in core and common | Lioncash | |
2014-09-22 | Merge pull request #118 from lioncash/chunk-file | bunnei | |
chunk_file: General cleanup | |||
2014-09-21 | chunk_file: General cleanup | Lioncash | |
- Remove unnecessary ifdefs - Remove commented out code. Can be retrieved later if needed. | |||
2014-09-21 | Use the citra user path for the sdmc directory | archshift | |
2014-09-17 | Common: Rename the File namespace to FileUtil, to match the filename and ↵ | Emmanuel Gil Peyrot | |
prevent collisions. | |||
2014-09-17 | Common: Return the number of items read/written in IOFile’s methods ↵ | Emmanuel Gil Peyrot | |
instead of a boolean. | |||
2014-09-12 | Added support for multiple input device types for KeyMap and connected Qt. | Kevin Hartman | |
2014-09-11 | Initial HID PAD work, with GLFW only. | Kevin Hartman | |
2014-09-11 | Merge pull request #99 from archshift/ext-check | bunnei | |
loader.cpp: improved file extension checking, made Upper/LowerStr useful, moved string_util into Common namespace | |||
2014-09-10 | Merge pull request #103 from archshift/prune | bunnei | |
Prune redundant includes | |||
2014-09-09 | Merge pull request #104 from archshift/removal | bunnei | |
Removed fixed_size_queue.h | |||
2014-09-09 | Merge pull request #101 from lioncash/inf-loop | bunnei | |
Common: Fix a potential infinite loop in StringUtil's ReplaceAll | |||
2014-09-08 | Removed fixed_size_queue.h | archshift | |
It's unused and doesn't look like it compiles anyway :/ | |||
2014-09-08 | common: Prune all redundant includes | archshift | |
2014-09-08 | Moved common_types::Rect from common to Common namespace | archshift | |
2014-09-08 | Added string_util to common, small changes in loader.cpp | archshift | |
2014-09-08 | loader.cpp: improved file extension checking, made Upper/LowerStr useful | archshift | |
Instead of forcibly taking the last 4 characters, it now finds the last extension separator (the period) and takes a substr of its location. | |||
2014-09-08 | Common: Remove HAVE_CXX11_SYNTAX define from Common.h | Lioncash | |
2014-09-08 | Common: Fix a potential infinite loop in StringUtil's ReplaceAll | Lioncash | |
2014-09-07 | Removed common/std_xyz, instead using the std header | archshift | |
2014-09-02 | Removed common/atomic, instead using std::atomic | archshift | |