Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-09-07 | Removed common/std_xyz, instead using the std header | archshift | 7 | -856/+6 | |
2014-09-03 | Removed common/atomic, instead using std::atomic | archshift | 4 | -198/+0 | |
2014-09-01 | Remove hand-crafted Visual Studio solution. | Yuri Kunde Schlesner | 4 | -453/+0 | |
2014-09-01 | Avoid LOGGING redefinition warnings. | Yuri Kunde Schlesner | 1 | -0/+2 | |
2014-09-01 | CMake cleanup | Yuri Kunde Schlesner | 1 | -7/+16 | |
Several cleanups to the buildsystem: - Do better factoring of common libs between platforms. - Add support to building on Windows. - Remove Qt4 support. - Re-sort file lists and add missing headers. | |||||
2014-08-19 | Common: Add a clamp function to math_utils.h | Lioncash | 1 | -0/+7 | |
2014-08-18 | Common: Get rid of an unnecessary forward declaration in symbols.h | Lioncash | 1 | -2/+0 | |
2014-08-18 | Common: Don't return a reference to a string when calling GetName in symbols.cpp | Lioncash | 2 | -2/+2 | |
Returning a copy of the string is what was likely meant to be done. | |||||
2014-08-17 | Common: Correctly set ptr to null if mmap fails in memory_util | Lioncash | 1 | -5/+8 | |
On POSIX systems mmap will return MAP_FAILED ((void*)-1) instead of a null pointer. | |||||
2014-08-17 | Common: Move remaining C header includes over to their C++ equivalent | Lioncash | 8 | -21/+20 | |
2014-08-17 | Common: Move header guards over to pragma once | Lioncash | 33 | -146/+41 | |
Also replaced C headers with the C++ equivalent ones | |||||
2014-08-16 | mem_arena: Replace insecure temporary file creation with devshm, importing Dolphin’s code. | Emmanuel Gil Peyrot | 1 | -24/+23 | |
2014-08-12 | Simplified if-tree in extended_trace.cpp | archshift | 1 | -13/+9 | |
2014-08-12 | break_points.cpp: return directly from conditionals | archshift | 1 | -6/+2 | |
2014-08-12 | break_points: cleaned up, added `find_if`s | archshift | 2 | -59/+51 | |
2014-08-12 | Changed iterators to use auto, some of which using range-based loops | archshift | 1 | -27/+28 | |
2014-08-12 | Remove the fancy RegisterSet class introduced in 4c2bff61e. | Tony Wasserka | 3 | -165/+0 | |
While it was some nice and fancy template usage, it ultimately had many practical issues regarding length of involved expressions under regular usage as well as common code completion tools not being able to handle the structures. Instead, we now use a more conventional approach which is a lot more clean to use. | |||||
2014-08-08 | Use pthread_set_name_np() on OpenBSD. | Anthony J. Bentley | 1 | -1/+3 | |
2014-07-23 | RegisterSet: Simplify code by using structs for register definition instead of unions. | Tony Wasserka | 1 | -6/+8 | |
2014-07-19 | [build] Search for the git binary in the default msysgit install dir | Yuri Kunde Schlesner | 1 | -1/+8 | |
The Git for Windows installer doesn't add the Git binaries to the path by default. (Due to risk of conflicts with built-in windows commands.) Unless you have configured your system specially this causes the scm_rev_gen.js script to fail to find Git. Added more paths to the script so that it searches in the default msysgit installation directory, eliminating the need to set the PATH for most environments. | |||||
2014-07-16 | BitField: Cast enum values to proper integer type. | Tony Wasserka | 1 | -1/+1 | |
2014-07-16 | BitField: Add a static_assert. | Tony Wasserka | 1 | -0/+1 | |
Being able to store BitField within unions requires BitField to be of standard layout, which in turn is only given if the underlying type is also has standard layout. | |||||
2014-07-16 | BitField: Delete copy assignment to prevent obscure bugs. | Tony Wasserka | 1 | -0/+16 | |
Cf. https://github.com/dolphin-emu/dolphin/pull/483 | |||||
2014-07-16 | BitField: Add an explicit evaluation method. | Tony Wasserka | 1 | -0/+5 | |
Sometimes it can be beneficial to use this in places where an explicit cast needs to happen otherwise. By using the evaluation method, it's not necessary anymore to explicitly write the underlying type in this case. | |||||
2014-06-12 | Removed definition of MAX_PATH, this is already defined in common_paths.h. | bunnei | 1 | -2/+0 | |
2014-06-12 | Preprocessor: #if's out OSX-specific GL changes on other platforms | archshift | 1 | -1/+1 | |
2014-06-12 | Common: Removed duplicate "LONG" and "MAX_PATH" definitions. | bunnei | 1 | -2/+0 | |
2014-06-12 | Pica: Use some template magic to define register structures efficiently. | Tony Wasserka | 3 | -3/+166 | |
2014-06-12 | Rename LCD to GPU. | Tony Wasserka | 2 | -2/+2 | |
2014-06-01 | log: updated MAX_LOGLEVEL to use correct log level enum type | bunnei | 3 | -5/+5 | |
2014-06-01 | log: updated GenericLog __attribute__ for newly added parameter | bunnei | 1 | -1/+1 | |
2014-05-30 | log: fixed to not print twice, enabled coloring, added OS print logging as its own type | bunnei | 4 | -37/+42 | |
2014-05-20 | common_types: Changed BasicRect back to Rect, in the common namespace | archshift | 1 | -4/+6 | |
Only Rect is in the namespace for now; the rest of common should be added in the future | |||||
2014-05-20 | Improved clarity and whitespace | archshift | 1 | -0/+1 | |
Changed QGL version to 3,2 in order to be less restrictive, yet it should still change up to 4,1 on OSX on Qt5. | |||||
2014-05-20 | CMakeLists: rename HEADS, improved comments | archshift | 1 | -2/+2 | |
Changes for clarity of comments, removed redundant compiler flags. | |||||
2014-05-17 | Updated cmakelists | archshift | 1 | -0/+1 | |
2014-05-17 | added MIN, MAX, and CLAMP macros to common_funcs | bunnei | 1 | -0/+5 | |
2014-05-16 | added ThreadQueueList class to common (taken from PPSSPP) | bunnei | 3 | -0/+218 | |
2014-05-10 | added kernel logger to common | bunnei | 2 | -3/+5 | |
2014-05-08 | removed incorrect dolphin copyright line | bunnei | 1 | -1/+0 | |
2014-05-08 | fixed include of common in bit_field.h | bunnei | 1 | -1/+1 | |
2014-05-08 | logger fix for linux | bunnei | 2 | -3/+3 | |
2014-05-08 | added GSP to loggers | bunnei | 2 | -2/+2 | |
2014-05-08 | added BitField to common | bunnei | 3 | -0/+175 | |
2014-05-06 | - added better SVC logging | bunnei | 2 | -5/+5 | |
- added stubs for GetResourceLimit and GetResourceLimitCurrentValues SVCs | |||||
2014-05-01 | Support for C++11 on OSX | archshift | 1 | -2/+2 | |
2014-05-01 | Fixed indents | archshift | 1 | -1/+1 | |
2014-04-30 | Some more experimentation | archshift | 1 | -3/+3 | |
2014-04-29 | IT'S ALIVE! | archshift | 1 | -1/+39 | |
2014-04-28 | Fix complaints about functions that could not be found | archshift | 1 | -1/+1 | |
2014-04-28 | Problematic class with no current implementation | archshift | 1 | -2/+2 | |
2014-04-28 | Rect to BasicRect | archshift | 1 | -4/+4 | |
Somewhere along the line an OSX header had already taken the name Rect. | |||||
2014-04-28 | add missing bswap functions | bunnei | 1 | -0/+44 | |
2014-04-28 | fix for issue Linux build #9, not sure why this is broken but its unused code I'm just getting rid of it | bunnei | 1 | -13/+0 | |
2014-04-28 | removed DISALLOW_COPY_AND_ASSIGN in favor of NonCopyable class | bunnei | 1 | -5/+0 | |
2014-04-25 | Resolved undefined Common::g_scm_branch error. | Thomas Edvalson | 1 | -1/+1 | |
2014-04-24 | made qt window title consistent | bunnei | 1 | -1/+1 | |
2014-04-24 | fixes to scm_rev generation to make it conistent with windows build | bunnei | 2 | -5/+5 | |
2014-04-24 | updated windows scm_rev code to use new style | ShizZy | 5 | -66/+53 | |
2014-04-24 | added scm rev generation on Linux/cmake | bunnei | 6 | -51/+37 | |
2014-04-23 | fixes to build on linux | bunnei | 2 | -14/+14 | |
2014-04-23 | removed duplicate rotl/rotr functions | ShizZy | 1 | -26/+0 | |
2014-04-23 | updated CMakeLists for missing files | ShizZy | 1 | -0/+1 | |
2014-04-18 | added NDMA hardware interface | bunnei | 2 | -2/+2 | |
2014-04-15 | added helper functions for upper/lowercase strings | bunnei | 2 | -0/+22 | |
2014-04-13 | Add symbols map | Mathieu Vaillancourt | 4 | -0/+100 | |
2014-04-11 | added logger for generic HLE | bunnei | 2 | -3/+3 | |
2014-04-11 | removed scm_rev.h from version control | bunnei | 1 | -4/+0 | |
2014-04-11 | added missing const to GetWindowTitle | bunnei | 1 | -1/+1 | |
2014-04-10 | updated CMakeLists | bunnei | 1 | -16/+17 | |
2014-04-09 | - removed deprecated version.h | bunnei | 4 | -72/+52 | |
- cleaned up window title - cleaned up emu_window_glfw/emu_window | |||||
2014-04-09 | fixed scm_rev_gen | bunnei | 2 | -5/+5 | |
2014-04-09 | fixed project includes to use new directory structure | bunnei | 44 | -211/+201 | |
2014-04-09 | got rid of 'src' folders in each sub-project | bunnei | 54 | -0/+0 | |
2014-04-07 | added "citra" instead of "emu" to title bar | bunnei | 1 | -1/+1 | |
2014-04-06 | added logger option specifically for the renderer | bunnei | 2 | -2/+2 | |
2014-04-05 | added missing includes to common_types.h | bunnei | 1 | -0/+3 | |
2014-04-05 | Updated common_types.h to use Gekko's version w/ Rect and some useful unions | bunnei | 1 | -30/+102 | |
2014-04-05 | added DISALLOW_COPY_AND_ASSIGN macro | bunnei | 1 | -0/+5 | |
2014-04-05 | added LCD logger | bunnei | 2 | -2/+2 | |
2014-04-05 | added a HW option to logging | bunnei | 2 | -48/+48 | |
2014-04-02 | convert tabs to spaces | bunnei | 47 | -5298/+5298 | |
2014-04-01 | grabbed ppsspp's MemArena | bunnei | 2 | -221/+428 | |
2013-10-02 | added TIME logger for core timing | ShizZy | 2 | -2/+2 | |
2013-10-02 | renamed GC_ALIGNED* macros to MEMORY_ALIGNED* | ShizZy | 1 | -12/+12 | |
2013-09-27 | upgraded proj files to vs 2013 | ShizZy | 2 | -2/+16 | |
2013-09-26 | renamed from citrus to citra | ShizZy | 4 | -5/+5 | |
2013-09-26 | moved file_sys back to core | ShizZy | 5 | -973/+0 | |
2013-09-24 | removed <windows.h> include from common.h and added it only where needed | ShizZy | 2 | -5/+1 | |
2013-09-24 | moved file_sys to common | ShizZy | 5 | -0/+973 | |
2013-09-24 | added localtime_r for use on windows | ShizZy | 1 | -0/+8 | |
2013-09-24 | added utf8 to common module, utils for dealing with utf8 | ShizZy | 4 | -0/+534 | |
2013-09-20 | updated to chunk_file module from ppsspp | ShizZy | 1 | -133/+623 | |
2013-09-20 | added a module for loading bootable binaries | ShizZy | 2 | -4/+4 | |
2013-09-19 | added swap types to common | ShizZy | 4 | -0/+549 | |
2013-09-19 | removed CORE and LOADER from LogTypes | ShizZy | 1 | -2/+0 | |
2013-09-19 | added CORE and LOADER to LogTypes | ShizZy | 1 | -0/+2 | |
2013-09-18 | changed log CPU from PPC to ARM11 | ShizZy | 2 | -2/+3 | |
2013-09-18 | added default windows include | ShizZy | 1 | -0/+4 | |
2013-09-16 | added file platform.h | ShizZy | 4 | -0/+137 | |
2013-09-14 | renamed project to 'citrus' | ShizZy | 3 | -3/+3 | |
2013-09-13 | added scm_rev_gen project to automatically create a header with the git revision on build | ShizZy | 4 | -3/+162 | |
2013-09-09 | cleaned up VS project files | ShizZy | 1 | -11/+9 | |
2013-09-09 | fixed some code warnings | ShizZy | 1 | -1/+1 | |
2013-09-09 | removed unneeded dolphin paths code, fixed linker problems with common.lib | ShizZy | 3 | -132/+118 | |
2013-09-09 | re-enabled GetLastErrorMsg | ShizZy | 1 | -19/+23 | |
2013-09-08 | updated common paths | ShizZy | 2 | -4/+7 | |
2013-09-06 | start of 3DS memory map | ShizZy | 3 | -12/+3 | |
2013-09-05 | various fixes to be able to build project | ShizZy | 1 | -17/+13 | |
2013-09-05 | added emu_window.h to define interface to drawing to a window | ShizZy | 3 | -0/+108 | |
2013-09-05 | updated CMakeLists.txt file for new common files | ShizZy | 1 | -9/+16 | |
2013-09-05 | replaced common code with dolphin common | ShizZy | 51 | -107/+8640 | |
2013-09-04 | deleted gekko's common files | ShizZy | 28 | -4543/+0 | |
2013-08-30 | adding initial project layout | ShizZy | 31 | -0/+4777 | |