| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | rasterizer: Implemented combiner output scaling. | 2015-05-09 | 2 | -2/+16 | |
| | | |||||
| * | rasterizer: Implemented AddSigned combiner op. | 2015-05-09 | 1 | -0/+10 | |
| | | |||||
| * | rasterizer: Fixed a depth testing bug. | 2015-05-09 | 2 | -6/+19 | |
| | | |||||
| * | rasterizer: Implement combiner buffer input. | 2015-05-09 | 2 | -4/+53 | |
| | | |||||
| * | rasterizer: Return zero'd vectors on error conditions. | 2015-05-09 | 1 | -3/+3 | |
| | | |||||
| * | vertex_shader: Implement FLR instruction. | 2015-05-09 | 1 | -0/+9 | |
| | | |||||
| * | vertex_shader: Implement MADI instruction. | 2015-05-09 | 1 | -4/+7 | |
| | | | | | nihstro: Update submodule to latest upstream/master to support MADI instruction decoding. | ||||
| * | Common: Remove the BIT macro | 2015-05-09 | 2 | -4/+2 | |
| | | | | | | | | When the macro was introduced in 326ec51261299e48de97592631c02523da9c8118 it wasn't noticed that it conflicted in name with a heavily used macro inside of dyncom. This causes some compiler warnings. Since it's only lightly used, it was opted to simply remove the new macro. | ||||
| * | Merge pull request #734 from yuriks/memmap | 2015-05-09 | 16 | -192/+195 | |
| |\ | | | | | Small memory map definitions cleanup | ||||
| | * | Memory: Add GetPhysicalPointer helper function | 2015-05-09 | 7 | -19/+28 | |
| | | | |||||
| | * | Memory: Support more regions in the VAddr-PAddr translation functions | 2015-05-09 | 7 | -49/+43 | |
| | | | | | | | | | | | Also adds better documentation and removes the one-off reimplementation of the function in pica.h. | ||||
| | * | Memory: Sort memory region variables by VAddr | 2015-05-09 | 2 | -10/+10 | |
| | | | |||||
| | * | Memory: Re-organize and rename memory area address constants | 2015-05-09 | 10 | -132/+132 | |
| | | | |||||
| * | | Loader: Add missing include | 2015-05-09 | 1 | -0/+1 | |
| |/ | |||||
| * | Loader: Remove .bin file support | 2015-05-08 | 3 | -21/+1 | |
| | | | | | | It is of very limited practical utility currently, and will soon be impossible to support due to more accurate memory map emulation. | ||||
| * | Kernel: Remove unused g_main_thread variable | 2015-05-08 | 3 | -5/+1 | |
| | | |||||
| * | Process: Rename StaticAddressMapping => AddressMapping | 2015-05-08 | 6 | -10/+10 | |
| | | |||||
| * | Process: Add more documentation to the class members | 2015-05-08 | 1 | -2/+16 | |
| | | |||||
| * | Process: Use BitField to store process flags | 2015-05-08 | 2 | -16/+24 | |
| | | |||||
| * | Loader/NCCH: Fix formatting of braces | 2015-05-08 | 1 | -9/+9 | |
| | | |||||
| * | Process: Support parsing of exheader kernel caps | 2015-05-08 | 6 | -4/+77 | |
| | | |||||
| * | Common: Add BIT macro | 2015-05-08 | 1 | -0/+2 | |
| | | |||||
| * | Kernel: Remove g_program_id | 2015-05-08 | 6 | -21/+3 | |
| | | | | | This has been obsoleted by the field in Process. | ||||
| * | Kernel: Introduce skeleton Process class to hold process data | 2015-05-08 | 13 | -48/+191 | |
| | | |||||
| * | Common: Add StringFromFixedZeroTerminatedBuffer | 2015-05-08 | 2 | -0/+14 | |
| | | |||||
| * | Core: Fix sorting in CMakeFiles.txt | 2015-05-08 | 1 | -21/+21 | |
| | | |||||
| * | Merge pull request #728 from lioncash/vars | 2015-05-07 | 1 | -19/+17 | |
| |\ | | | | | dyncom: Remove an unnecessary variable in the interpreter | ||||
| | * | dyncom: Remove an unnecessary variable in the interpreter | 2015-05-07 | 1 | -19/+17 | |
| | | | | | | | | | All this was doing was needlessly aliasing a variable. | ||||
| * | | Remove unnecessary dyncom header files | 2015-05-07 | 6 | -82/+2 | |
| |/ | |||||
| * | Merge pull request #725 from yuriks/remove-common-crap | 2015-05-07 | 7 | -1103/+31 | |
| |\ | | | | | Remove unused hash and mem_arena from common | ||||
| | * | Common: Remove mem_arena.cpp/h | 2015-05-07 | 5 | -560/+31 | |
| | | | | | | | | | | | | | It is superfluous for Citra. (It's only really necessary if you're doing JIT. We were using it but not taking any advantage from it.) This should make 32-bit builds work again. | ||||
| | * | Common: Remove hash.cpp/h | 2015-05-07 | 3 | -543/+0 | |
| | | | | | | | | | Currently unused and the code quality is pretty questionable. | ||||
| * | | Merge pull request #723 from lioncash/commonstr | 2015-05-07 | 2 | -127/+0 | |
| |\ \ | | | | | | | string_util: Get rid of UriDecode/UriEncode | ||||
| | * | | string_util: Get rid of UriDecode/UriEncode | 2015-05-07 | 2 | -127/+0 | |
| | | | | |||||
| * | | | Profiler: Fix off-by-one error when computing average. | 2015-05-07 | 1 | -2/+1 | |
| | |/ |/| | |||||
| * | | Common: Add proper macros to test for architecture pointer size | 2015-05-07 | 5 | -17/+11 | |
| |/ | | | | | | | The old system of just defining macros available in some other platform was susceptible to silently using the wrong code if you forgot to include a particular header. This fixes a crash on non-Windows platforms introduced by e1fbac3ca13d37d2625c11d30cfdece4327b446b. | ||||
| * | Merge pull request #721 from yuriks/more-cleanups | 2015-05-07 | 121 | -478/+428 | |
| |\ | | | | | More cleanups | ||||
| | * | Fix printf format warning | 2015-05-07 | 1 | -1/+1 | |
| | | | |||||
| | * | Common: Remove common.h | 2015-05-07 | 102 | -96/+146 | |
| | | | |||||
| | * | Common: Move alignment macros to common_funcs.h | 2015-05-07 | 2 | -21/+21 | |
| | | | |||||
| | * | Common: Move SSE detection ifdefs to platform.h | 2015-05-07 | 3 | -16/+21 | |
| | | | |||||
| | * | Common: Remove more unused compatibility defines | 2015-05-07 | 1 | -45/+0 | |
| | | | |||||
| | * | Common: Move IO-specific compatibility macros to file_util.cpp | 2015-05-07 | 2 | -26/+26 | |
| | | | |||||
| | * | Common: Remove many unnecessary cross-platform compatibility macros | 2015-05-06 | 7 | -90/+12 | |
| | | | |||||
| | * | Clean-up includes | 2015-05-06 | 8 | -9/+14 | |
| | | | |||||
| | * | FileSys: De-inline Path members | 2015-05-06 | 4 | -125/+139 | |
| | | | |||||
| | * | FileSys: Clean-up includes, de-inline destructors | 2015-05-06 | 7 | -20/+35 | |
| | | | |||||
| | * | Move typedefs from kernel.h to more appropriate places | 2015-05-06 | 3 | -10/+13 | |
| | | | |||||
| | * | Common: Move NonCopyable to common_types.h | 2015-05-06 | 2 | -10/+10 | |
| | | | |||||
| | * | Common: Use C++11 deleted functions for NonCopyable | 2015-05-06 | 1 | -8/+6 | |
| | | | |||||