summaryrefslogtreecommitdiff
path: root/src/common (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* | emitter: Remove unused codeGravatar Lioncash2015-08-202-44/+0
| |
* | emitter: Remove unimplemented JMP prototypeGravatar Lioncash2015-08-201-1/+0
| |
* | emitter: Pass OpArg by reference where possibleGravatar Lioncash2015-08-202-763/+763
| |
* | emitter: Remove unnecessary inline specifiersGravatar Lioncash2015-08-201-33/+33
| | | | | | | | Functions implemented in a class definition are already implicitly inline.
* | Merge pull request #1035 from darkf/mingw-fixGravatar bunnei2015-08-192-4/+10
|\ \ | | | | | | Fix building under MinGW
| * | Fix building under MinGWGravatar darkf2015-08-172-4/+10
| |/
* / videocore: Added RG8 texture supportGravatar Patrick Martin2015-08-161-0/+18
|/
* Merge pull request #1031 from bbarenblat/masterGravatar Yuri Kunde Schlesner2015-08-151-1/+2
|\ | | | | Handle invalid `Log::Class`
| * Handle invalid `Log::Class`Gravatar Benjamin Barenblat2015-08-151-1/+2
| | | | | | | | | | | | Add a case of `Log::Class::Count` to the switch statement that dispatches on `Log::Class`. The case simply calls the `UNREACHABLE` macro.
* | Rename ARCHITECTURE_X64 definition to ARCHITECTURE_x86_64.Gravatar bunnei2015-08-158-14/+14
| |
* | Common: Cleanup CPU capability detection code.Gravatar bunnei2015-08-154-198/+141
| |
* | Common: Move cpu_detect to x64 directory.Gravatar bunnei2015-08-154-5/+5
| |
* | x64: Refactor to remove fake interfaces and general cleanups.Gravatar bunnei2015-08-1510-516/+26
| |
* | Common: Added MurmurHash3 hash function for general-purpose use.Gravatar bunnei2015-08-155-2/+158
| |
* | Common: Ported over boilerplate x86 JIT code from Dolphin/PPSSPP.Gravatar bunnei2015-08-159-4/+4380
| |
* | Common: Ported over Dolphin's code for x86 CPU capability detection.Gravatar bunnei2015-08-154-17/+273
|/
* Stop defining GCC always_inline attributes as __forceinlineGravatar archshift2015-08-112-7/+8
| | | | | __forceinline is a MSVC extension, which may confuse some people working on the codebase. Furthermore, the C++ standard dictates that all names which contain adjacent underscores are reserved.
* Merge pull request #1018 from bbarenblat/masterGravatar bunnei2015-08-052-1/+8
|\ | | | | Handle invalid `Log::Level::Count`
| * Use UNREACHABLE macro for impossible cases in previous commitGravatar Benjamin Barenblat2015-08-022-4/+3
| | | | | | | | Use the UNREACHABLE macro instead of `ASSERT(false, ...);`.
| * Handle invalid `Log::Level::Count`Gravatar Benjamin Barenblat2015-08-022-1/+9
| | | | | | | | | | | | Add a case of `Log::Level::Count` to all switch statements that dispatch on `Log::Level`. The case simply asserts `false` and notes the invalid log level.
* | Common: Work around bug in MSVC2015 standard libraryGravatar Yuri Kunde Schlesner2015-08-021-0/+14
|/ | | | | | The char16_t/char32_t implementations aren't present in the library and cause linker errors. This is a known issue that wasn't fixed in VS2015 RTM.
* Common : Fix Conversion WarningsGravatar zawata2015-07-191-1/+1
|
* Common: Remove the unused and commented GetThemeDir prototype from FileUtil.Gravatar Emmanuel Gil Peyrot2015-07-181-3/+0
|
* Pica: Implement stencil testing.Gravatar Tony Wasserka2015-07-131-1/+26
|
* FileUtil: Add a WriteObject method for writing a single, POD-type object.Gravatar Tony Wasserka2015-07-131-0/+10
|
* don“t define snprintf on Visual Studio 2015Gravatar Apology112015-07-121-2/+4
| | | Visual Studio 2015 defines this in stdio now
* Merge pull request #914 from yuriks/bitfield-maskGravatar Yuri Kunde Schlesner2015-07-111-2/+2
|\ | | | | Common: Fix mask generation in BitField
| * Common: Remove redundant masking in BitFieldGravatar Yuri Kunde Schlesner2015-07-101-1/+1
| | | | | | | | | | For the signed case, the shifts already remove the rest of the value, so ANDing by the mask is redundant.
| * Common: Fix mask generation in BitFieldGravatar Yuri Kunde Schlesner2015-07-101-1/+1
| | | | | | | | Fixes #913
* | Common: Remove thunk.hGravatar Lioncash2015-07-102-43/+0
| | | | | | | | This isn't used, and there's no implementations of the member functions.
* | Merge pull request #876 from linkmauve/include-cleanupsGravatar Yuri Kunde Schlesner2015-07-1026-236/+86
|\ \ | |/ |/| Cleanup includes, mostly in common
| * Core: Cleanup file_sys includes.Gravatar Emmanuel Gil Peyrot2015-06-281-0/+1
| |
| * Core: Cleanup core includes.Gravatar Emmanuel Gil Peyrot2015-06-281-1/+2
| |
| * CitraQt: Cleanup includes.Gravatar Emmanuel Gil Peyrot2015-06-282-1/+1
| |
| * Common: Cleanup emu_window includes.Gravatar Emmanuel Gil Peyrot2015-06-282-3/+15
| |
| * Common: Remove unused ROUND_UP_POW2 macro.Gravatar Emmanuel Gil Peyrot2015-06-281-7/+0
| |
| * Common: Cleanup key_map includes.Gravatar Emmanuel Gil Peyrot2015-06-281-0/+1
| |
| * Common: Cleanup memory and misc includes.Gravatar Emmanuel Gil Peyrot2015-06-287-22/+18
| |
| * Common: Cleanup profiler includes.Gravatar Emmanuel Gil Peyrot2015-06-284-7/+10
| |
| * Common: Cleanup thread includes.Gravatar Emmanuel Gil Peyrot2015-06-282-18/+15
| |
| * Common: Fix string_util includes.Gravatar Emmanuel Gil Peyrot2015-06-282-3/+9
| |
| * Common: Fix FileUtil includes, and everything relying on those.Gravatar Emmanuel Gil Peyrot2015-06-283-7/+14
| |
| * Common: Remove now-unused EMU_PLATFORM define, fixes issue #373.Gravatar Emmanuel Gil Peyrot2015-06-271-30/+0
| |
| * Common: Remove unused SSE version checking and a GCC macro.Gravatar Emmanuel Gil Peyrot2015-06-271-25/+0
| |
| * Common: Remove unused fifo_queue.h.Gravatar Emmanuel Gil Peyrot2015-06-272-112/+0
| |
* | Common: Remove unused type unions breaking aliasing rules in horrible ways.Gravatar Emmanuel Gil Peyrot2015-06-281-26/+0
|/
* Merge pull request #855 from purpasmart96/service_rearrangmentGravatar bunnei2015-06-212-2/+4
|\ | | | | Services: Continue separation of services into their own folders
| * Services: Continue separation of services into their own foldersGravatar purpasmart962015-06-112-2/+4
| |
* | Render-to-texture flush, interval math fixGravatar tfarley2015-06-081-1/+1
|/
* Move video_core/color.h to common/color.hGravatar archshift2015-05-302-0/+215
|