Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-08 | swap: Get rid of pointer casting for swapping structs | Lioncash | |
These shouldn't haphazardly convert types | |||
2016-05-08 | swap: Get rid of undefined behavior in swapf and swapd | Lioncash | |
This isn't well-defined in C++. | |||
2016-05-08 | swap: Remove unused methods | Lioncash | |
Also gets rid of pointer data variants as this prevents the use of the regular swapping routines as unary predicates in std lib functions. They also cast to stricter alignment types, which is undefined behavior. | |||
2016-05-07 | Merge pull request #1736 from MerryMage/sdl2-sink | bunnei | |
AudioCore: SDL2 Sink | |||
2016-05-07 | AudioCore: SDL2 Sink | MerryMage | |
2016-04-30 | VideoCore: Run include-what-you-use and fix most includes. | Emmanuel Gil Peyrot | |
2016-04-29 | Common: Remove section measurement from profiler (#1731) | Yuri Kunde Schlesner | |
This has been entirely superseded by MicroProfile. The rest of the code can go when a simpler frametime/FPS meter is added to the GUI. | |||
2016-04-28 | Make Citra build with MICROPROFILE_ENABLED set to 0 (#1709) | Henrik RydgÄrd | |
* Make Citra build with MICROPROFILE_ENABLED set to 0 * Buildfix with microprofile kept on * moc did not like a dialog to conditionally exist. * Cleanup * Fix end of line | |||
2016-04-24 | assert: Allow UNREACHABLE_MSG to have just one argument | Sam Spilsbury | |
2016-04-24 | Merge pull request #1576 from smspillaz/fix-build-errors-03272016 | bunnei | |
Fix various build errors encountered on Clang 3.9 on OS X | |||
2016-04-23 | Protect use of std::is_trivially_copyable to compile with GCC 4.9 | LittleWhite | |
2016-04-23 | assert: Add _MSG variations for UNREACHABLE and UNIMPLEMENTED | Sam Spilsbury | |
2016-04-19 | Merge pull request #1672 from wwylele/win-driver-fix | bunnei | |
Fix driver root identification on Windows | |||
2016-04-15 | fix driver root identification on Windows | wwylele | |
2016-04-14 | Merge pull request #1666 from MerryMage/barrier | bunnei | |
Thread: Correct Common::Barrier implementation | |||
2016-04-14 | Merge pull request #1665 from lioncash/file | bunnei | |
IOFile: Minor API changes | |||
2016-04-14 | Thread: Make Barrier reusable | MerryMage | |
2016-04-14 | common/thread: Correct code style | MerryMage | |
2016-04-13 | emitter: Add CALL that can be fixed up. | bunnei | |
2016-04-13 | emitter: Support arbitrary FixupBranch targets. | bunnei | |
2016-04-13 | file_util: In-class initialize data members | Lioncash | |
2016-04-13 | file_util: const qualify IOFile's Tell and GetSize functions | Lioncash | |
2016-04-13 | file_util: Don't expose IOFile internals through the API | Lioncash | |
2016-04-13 | file_util: Check for is_trivially_copyable | Lioncash | |
Also applies the template checks to ReadArray as well. | |||
2016-04-13 | file_util: Make IOFile data members private | Lioncash | |
2016-04-12 | FileUtil: Missing #include, Add const to IOFile methods | MerryMage | |
2016-04-08 | cecd:u: stub GetCecStateAbbreviated (#1648) | mailwl | |
2016-04-05 | Merge pull request #1435 from mailwl/frd_u | bunnei | |
frd:u: Initial stub some functions | |||
2016-04-05 | Merge pull request #1643 from MerryMage/make_unique | Mathew Maidment | |
Common: Remove Common::make_unique, use std::make_unique | |||
2016-04-05 | Common: Remove Common::make_unique, use std::make_unique | MerryMage | |
2016-04-04 | Merge pull request #1620 from LFsWang/path | bunnei | |
Fix filename&path encode problem on Windows | |||
2016-04-03 | Merge pull request #1616 from exhalatio/dlp_dummy | bunnei | |
Dummy implementation dlp:SRVR Service. | |||
2016-04-03 | Dummy implementation dlp:SRVR Service. | exhalatio | |
2016-03-31 | remove debug code | LFsWang | |
2016-03-31 | cecd:u: stub GetCecInfoEventHandle, GetChangeStateEventHandle | mailwl | |
2016-03-31 | fix unicode url problem on windows | LFsWang | |
2016-03-31 | Fix encode problem On Windows | LFsWang | |
2016-03-27 | frd:u: Initial stub some functions | mailwl | |
2016-03-26 | remove unnecessary const | wwylele | |
2016-03-22 | implement accel and gyro backend | wwylele | |
2016-03-18 | vector_math: Add missing member in Vec4's SetZero function | Lioncash | |
2016-03-15 | Reorganize the ndm service path for dummy implement function | JamePeng | |
SuspendDaemons , ResumeDaemons , OverrideDefaultDaemons The NDM file move to /core/hle/service/ndm/ now! | |||
2016-03-13 | Merge pull request #1509 from lioncash/noncopy | bunnei | |
common: Minor changes to NonCopyable | |||
2016-03-13 | PICA: Align vertex attributes | Jannik Vogel | |
2016-03-12 | common_types: Make NonCopyable constructor constexpr | Lioncash | |
2016-03-12 | common_types: Specify const in deleted copy constructor/assignment operator | Lioncash | |
2016-03-10 | Merge pull request #1476 from lioncash/emit | bunnei | |
emitter: constexpr/misc changes | |||
2016-03-09 | emitter: templatize ImmPtr | Lioncash | |
2016-03-09 | emitter: constexpr-ify helper functions | Lioncash | |
2016-03-09 | emitter: Get rid of CanDoOpWith | Lioncash | |
This was removed in Dolphin as there were no particular uses for it. I'm sure the same will apply to citra. |