summaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
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.
2016-03-09emitter: constexpr-ify OpArgLioncash
2016-03-09emitter: friend class OpArg with XEmitterLioncash
2016-03-09emitter: Remove unimplemented prototypeLioncash
2016-03-09Common: Get rid of alignment macrosLioncash
The gl rasterizer already uses alignas, so we may as well move everything over.
2016-03-01Merge pull request #1297 from Subv/savesbunnei
DiskDirectory: Initialize the directory member with valid info.
2016-02-28Merge pull request #1427 from MerryMage/emit-lbitYuri Kunde Schlesner
x64 Emitter: Fix L bit in VEX prefix
2016-02-27x64 Emitter: Fix L bit in VEX prefixMerryMage
2016-02-26Initial implementation ir:usermailwl
2016-02-21AudioCore: Skeleton ImplementationMerryMage
This commit: * Adds a new subproject, audio_core. * Defines structures that exist in DSP shared memory. * Hooks up various other parts of the emulator into audio core. This sets the foundation for a later HLE DSP implementation.
2016-02-12BitField: Make trivially copyable and remove assignment operatorMerryMage
2016-02-04backend: defaulted move constructor/assignmentLioncash
2016-01-27color: Make trivial helpers constexprLioncash
2016-01-25key_map: Use std::tie for comparisonsLioncash
2016-01-16DiskDirectory: Initialize the directory member with valid info.Subv
2015-12-23Add missing return values in ForeachDirectoryEntryLFsWang
ForeachDirectoryEntry is changed by #1256 ,but return value at last line was missing.
2015-12-03Merge pull request #1252 from Subv/cambunnei
Services/Cam: Added new log type and camera enums from 3dbrew.
2015-11-27Refactor ScanDirectoryTreeAndCallback to separate errors and retvalsarchshift
ScanDirectoryTreeAndCallback, before this change, coupled error/return codes and actual return values (number of entries found). This caused confusion and difficulty interpreting the precise way the function worked. Supersedes, and closes #1255.
2015-11-23Services/Cam: Added new log type and camera enums from 3dbrew.Subv
Followup to #1102 Original author @mailwl
2015-11-12fix failure on gcc and clangwwylele
2015-11-12disable unary minus when the type is not signedwwylele
silent warning C4146 on msvc
2015-10-04Implement gdbstubpolaris-
2015-10-03Merge pull request #1176 from lioncash/vs2015-code-junking-daybunnei
Obligatory "Throw out workarounds VS2013 once limited us to" PR
2015-10-01Merge pull request #1095 from archshift/game-listbunnei
Initial implementation of a game list
2015-10-01bit_field: Re-enable code on MSVCLioncash
2015-09-30Split up FileUtil::ScanDirectoryTree to be able to use callbacks for custom ↵archshift
behavior Converted FileUtil::ScanDirectoryTree and FileUtil::DeleteDirRecursively to use the new ScanDirectoryTreeAndCallback function internally.
2015-09-30symbols: Replace an insert call with emplaceLioncash
2015-09-30symbols: Get rid of initial underscores in variable namesLioncash
2015-09-30symbols: Directly initialize TSymbol membersLioncash
2015-09-30symbols: Simplify GetSymbolLioncash
2015-09-16hash: Get rid of unused functionsLioncash
2015-09-16general: Silence some warnings when using clangLioncash
2015-09-11memory_util: Remove unnecessary assignment in FreeMemoryPagesLioncash
2015-09-11memory_util: Remove commented out printf statementsLioncash
2015-09-11general: Replace 0 literals with nullptr where applicableLioncash
2015-09-11synchronized_wrapper: Add missing return in SynchronizedRef move assignment ↵Lioncash
operator
2015-09-11Merge pull request #1144 from lioncash/removebunnei
common: Get rid of debug_interface.h
2015-09-11common: Get rid of a cast in swap.hLioncash
2015-09-11common: Get rid of debug_interface.hLioncash
This is technically unused. Also removes TMemChecks because it relies on this. Whenever memory breakpoints are implemented for real, it should be designed to match the codebase debugging mechanisms.
2015-09-01x64: Proper stack alignment in shader JIT function callsaroulin
Import Dolphin stack handling and register saving routines Also removes the x86 parts from abi files
2015-09-01Common: Import BitSet from Dolphinaroulin