summaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2016-05-08swap: Get rid of pointer casting for swapping structsLioncash
These shouldn't haphazardly convert types
2016-05-08swap: Get rid of undefined behavior in swapf and swapdLioncash
This isn't well-defined in C++.
2016-05-08swap: Remove unused methodsLioncash
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-07Merge pull request #1736 from MerryMage/sdl2-sinkbunnei
AudioCore: SDL2 Sink
2016-05-07AudioCore: SDL2 SinkMerryMage
2016-04-30VideoCore: Run include-what-you-use and fix most includes.Emmanuel Gil Peyrot
2016-04-29Common: 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-28Make 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-24assert: Allow UNREACHABLE_MSG to have just one argumentSam Spilsbury
2016-04-24Merge pull request #1576 from smspillaz/fix-build-errors-03272016bunnei
Fix various build errors encountered on Clang 3.9 on OS X
2016-04-23Protect use of std::is_trivially_copyable to compile with GCC 4.9LittleWhite
2016-04-23assert: Add _MSG variations for UNREACHABLE and UNIMPLEMENTEDSam Spilsbury
2016-04-19Merge pull request #1672 from wwylele/win-driver-fixbunnei
Fix driver root identification on Windows
2016-04-15fix driver root identification on Windowswwylele
2016-04-14Merge pull request #1666 from MerryMage/barrierbunnei
Thread: Correct Common::Barrier implementation
2016-04-14Merge pull request #1665 from lioncash/filebunnei
IOFile: Minor API changes
2016-04-14Thread: Make Barrier reusableMerryMage
2016-04-14common/thread: Correct code styleMerryMage
2016-04-13emitter: Add CALL that can be fixed up.bunnei
2016-04-13emitter: Support arbitrary FixupBranch targets.bunnei
2016-04-13file_util: In-class initialize data membersLioncash
2016-04-13file_util: const qualify IOFile's Tell and GetSize functionsLioncash
2016-04-13file_util: Don't expose IOFile internals through the APILioncash
2016-04-13file_util: Check for is_trivially_copyableLioncash
Also applies the template checks to ReadArray as well.
2016-04-13file_util: Make IOFile data members privateLioncash
2016-04-12FileUtil: Missing #include, Add const to IOFile methodsMerryMage
2016-04-08cecd:u: stub GetCecStateAbbreviated (#1648)mailwl
2016-04-05Merge pull request #1435 from mailwl/frd_ubunnei
frd:u: Initial stub some functions
2016-04-05Merge pull request #1643 from MerryMage/make_uniqueMathew Maidment
Common: Remove Common::make_unique, use std::make_unique
2016-04-05Common: Remove Common::make_unique, use std::make_uniqueMerryMage
2016-04-04Merge pull request #1620 from LFsWang/pathbunnei
Fix filename&path encode problem on Windows
2016-04-03Merge pull request #1616 from exhalatio/dlp_dummybunnei
Dummy implementation dlp:SRVR Service.
2016-04-03Dummy implementation dlp:SRVR Service.exhalatio
2016-03-31remove debug codeLFsWang
2016-03-31cecd:u: stub GetCecInfoEventHandle, GetChangeStateEventHandlemailwl
2016-03-31fix unicode url problem on windowsLFsWang
2016-03-31Fix encode problem On WindowsLFsWang
2016-03-27frd:u: Initial stub some functionsmailwl
2016-03-26remove unnecessary constwwylele
2016-03-22implement accel and gyro backendwwylele
2016-03-18vector_math: Add missing member in Vec4's SetZero functionLioncash
2016-03-15Reorganize the ndm service path for dummy implement functionJamePeng
SuspendDaemons , ResumeDaemons , OverrideDefaultDaemons The NDM file move to /core/hle/service/ndm/ now!
2016-03-13Merge pull request #1509 from lioncash/noncopybunnei
common: Minor changes to NonCopyable
2016-03-13PICA: Align vertex attributesJannik Vogel
2016-03-12common_types: Make NonCopyable constructor constexprLioncash
2016-03-12common_types: Specify const in deleted copy constructor/assignment operatorLioncash
2016-03-10Merge pull request #1476 from lioncash/emitbunnei
emitter: constexpr/misc changes
2016-03-09emitter: templatize ImmPtrLioncash
2016-03-09emitter: constexpr-ify helper functionsLioncash
2016-03-09emitter: Get rid of CanDoOpWithLioncash
This was removed in Dolphin as there were no particular uses for it. I'm sure the same will apply to citra.