Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-07-13 | Pica: Implement stencil testing. | Tony Wasserka | 1 | -1/+26 | |
2015-07-13 | FileUtil: Add a WriteObject method for writing a single, POD-type object. | Tony Wasserka | 1 | -0/+10 | |
2015-07-12 | don´t define snprintf on Visual Studio 2015 | Apology11 | 1 | -2/+4 | |
Visual Studio 2015 defines this in stdio now | |||||
2015-07-11 | Common: Remove thunk.h | Lioncash | 2 | -43/+0 | |
This isn't used, and there's no implementations of the member functions. | |||||
2015-07-10 | Common: Remove redundant masking in BitField | Yuri Kunde Schlesner | 1 | -1/+1 | |
For the signed case, the shifts already remove the rest of the value, so ANDing by the mask is redundant. | |||||
2015-07-10 | Common: Fix mask generation in BitField | Yuri Kunde Schlesner | 1 | -1/+1 | |
Fixes #913 | |||||
2015-06-28 | Common: Remove unused type unions breaking aliasing rules in horrible ways. | Emmanuel Gil Peyrot | 1 | -26/+0 | |
2015-06-28 | Core: Cleanup file_sys includes. | Emmanuel Gil Peyrot | 1 | -0/+1 | |
2015-06-28 | Core: Cleanup core includes. | Emmanuel Gil Peyrot | 1 | -1/+2 | |
2015-06-28 | CitraQt: Cleanup includes. | Emmanuel Gil Peyrot | 2 | -1/+1 | |
2015-06-28 | Common: Cleanup emu_window includes. | Emmanuel Gil Peyrot | 2 | -3/+15 | |
2015-06-28 | Common: Remove unused ROUND_UP_POW2 macro. | Emmanuel Gil Peyrot | 1 | -7/+0 | |
2015-06-28 | Common: Cleanup key_map includes. | Emmanuel Gil Peyrot | 1 | -0/+1 | |
2015-06-28 | Common: Cleanup memory and misc includes. | Emmanuel Gil Peyrot | 7 | -22/+18 | |
2015-06-28 | Common: Cleanup profiler includes. | Emmanuel Gil Peyrot | 4 | -7/+10 | |
2015-06-28 | Common: Cleanup thread includes. | Emmanuel Gil Peyrot | 2 | -18/+15 | |
2015-06-28 | Common: Fix string_util includes. | Emmanuel Gil Peyrot | 2 | -3/+9 | |
2015-06-28 | Common: Fix FileUtil includes, and everything relying on those. | Emmanuel Gil Peyrot | 3 | -7/+14 | |
2015-06-27 | Common: Remove now-unused EMU_PLATFORM define, fixes issue #373. | Emmanuel Gil Peyrot | 1 | -30/+0 | |
2015-06-27 | Common: Remove unused SSE version checking and a GCC macro. | Emmanuel Gil Peyrot | 1 | -25/+0 | |
2015-06-27 | Common: Remove unused fifo_queue.h. | Emmanuel Gil Peyrot | 2 | -112/+0 | |
2015-06-12 | Services: Continue separation of services into their own folders | purpasmart96 | 2 | -2/+4 | |
2015-06-09 | Render-to-texture flush, interval math fix | tfarley | 1 | -1/+1 | |
2015-05-30 | Move video_core/color.h to common/color.h | archshift | 2 | -0/+215 | |
2015-05-30 | Move video_core/math.h to common/vector_math.h | archshift | 2 | -0/+641 | |
The file only contained vector manipulation code, and such widely-useable code doesn't belong in video_core. | |||||
2015-05-29 | Remove every trailing whitespace from the project (but externals). | Emmanuel Gil Peyrot | 3 | -3/+3 | |
2015-05-23 | OpenGL renderer | tfarley | 1 | -0/+4 | |
2015-05-22 | Service::Y2R: Support for grayscale decoding of specific formats | Yuri Kunde Schlesner | 2 | -0/+2 | |
Implements unrotated planar YUV 4:2:0 -> RGB24 conversions in Y2R. Currently only the Y (luma) channel is used, so the results don't contain color. This will be added in a later PR at some point. This is enough to get all currently know Moflex videos to decode. (Some don't display on-screen due to seemingly unrelated reasons.) Thanks to @archshift for doing the initial implementation which I cleaned up and then fixed the 8x8 block mode. | |||||
2015-05-16 | Remove unused concurrent_ring_buffer.h | Yuri Kunde Schlesner | 2 | -164/+0 | |
2015-05-14 | Common: Remove unused cruft from math_util, and remove a duplicated Rect class in common_types. | Emmanuel Gil Peyrot | 4 | -409/+3 | |
2015-05-12 | Common: Use the log system to print assert messages | Yuri Kunde Schlesner | 1 | -7/+3 | |
2015-05-12 | Common: Remove async logging | Yuri Kunde Schlesner | 7 | -210/+32 | |
It provided a large increase in complexity of the logging system while having a negligible performance impact: the usage patterns of the ring buffer meant that each log contended with the logging thread, causing it to effectively act as a synchronous extra buffering. Also removed some broken code related to filtering of subclasses which was broken since it was introduced. (Which means no one ever used that feature anyway, since, 8 months later, no one ever complained.) | |||||
2015-05-09 | Common: Remove the BIT macro | Yuri Kunde Schlesner | 1 | -2/+0 | |
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. | |||||
2015-05-09 | Common: Add BIT macro | Yuri Kunde Schlesner | 1 | -0/+2 | |
2015-05-08 | Common: Add StringFromFixedZeroTerminatedBuffer | Yuri Kunde Schlesner | 2 | -0/+14 | |
2015-05-08 | Profiler: Fix off-by-one error when computing average. | Yuri Kunde Schlesner | 1 | -2/+1 | |
2015-05-08 | Common: Remove mem_arena.cpp/h | Yuri Kunde Schlesner | 3 | -466/+0 | |
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. | |||||
2015-05-07 | Common: Remove hash.cpp/h | Yuri Kunde Schlesner | 3 | -543/+0 | |
Currently unused and the code quality is pretty questionable. | |||||
2015-05-07 | Common: Add proper macros to test for architecture pointer size | Yuri Kunde Schlesner | 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. | |||||
2015-05-07 | string_util: Get rid of UriDecode/UriEncode | Lioncash | 2 | -127/+0 | |
2015-05-07 | Common: Remove common.h | Yuri Kunde Schlesner | 29 | -56/+43 | |
2015-05-07 | Common: Move alignment macros to common_funcs.h | Yuri Kunde Schlesner | 2 | -21/+21 | |
2015-05-07 | Common: Move SSE detection ifdefs to platform.h | Yuri Kunde Schlesner | 3 | -16/+21 | |
2015-05-07 | Common: Remove more unused compatibility defines | Yuri Kunde Schlesner | 1 | -45/+0 | |
2015-05-07 | Common: Move IO-specific compatibility macros to file_util.cpp | Yuri Kunde Schlesner | 2 | -26/+26 | |
2015-05-07 | Common: Remove many unnecessary cross-platform compatibility macros | Yuri Kunde Schlesner | 5 | -88/+10 | |
2015-05-07 | Clean-up includes | Yuri Kunde Schlesner | 1 | -0/+1 | |
2015-05-07 | Move typedefs from kernel.h to more appropriate places | Yuri Kunde Schlesner | 1 | -0/+5 | |
2015-05-07 | Common: Move NonCopyable to common_types.h | Yuri Kunde Schlesner | 2 | -10/+10 | |
2015-05-07 | Common: Use C++11 deleted functions for NonCopyable | Yuri Kunde Schlesner | 1 | -8/+6 | |
2015-05-07 | Common: Remove unused enums | Yuri Kunde Schlesner | 1 | -17/+0 | |
2015-05-02 | EmuWindow: Clip mouse input coordinates to emulated screen dimensions. | Zaneo | 2 | -6/+21 | |
If the mouse position for a mouse move/drag would take it outside the emulated screen dimensions, clip the coordinates to the emulated screen dimensions. Qt and GLFW will report negative coordinates for mouse positions to the left, or above citra window. Added restriction to mouse coordinates passed to touchmoved by Qt/GLFW to be greater or equal to zero. | |||||
2015-04-16 | Common: thread.h cleanups | Yuri Kunde Schlesner | 1 | -65/+16 | |
The helper classes are rendered obsolete by C++11 lambdas. Also made formatting conform to our code style. | |||||
2015-04-10 | Thread: Implement priority boost for starved threads. | bunnei | 1 | -0/+18 | |
SVC: Return correct error code on invalid CreateThread processor ID. SVC: Assert when creating a thread with an invalid userland priority. | |||||
2015-04-03 | Services: Stubs and minor changes | purpasmart96 | 2 | -0/+4 | |
2015-03-30 | disassembler: Get rid of a const_cast | Lioncash | 2 | -4/+4 | |
2015-03-16 | Common: Fix logic for setting EMU_DATA_DIR. | Emmanuel Gil Peyrot | 1 | -6/+5 | |
2015-03-16 | Common: Make a #else more apparent. | Emmanuel Gil Peyrot | 1 | -5/+1 | |
2015-03-14 | EmuWindow: Fixed a reference to a temporary variable | Subv | 1 | -1/+1 | |
in GetTouchState() | |||||
2015-03-11 | HID: Complete refactor of pad/touch input to fix threading issues. | bunnei | 2 | -68/+63 | |
2015-03-10 | EmuWindow: Made pad/touch functions non-static. | bunnei | 2 | -11/+6 | |
2015-03-10 | EmuWindow: Added infrastructure code to enable touchpad support. | bunnei | 2 | -1/+93 | |
2015-03-09 | Added LCD registers, and implementation for color filling in OGL code. | archshift | 2 | -0/+2 | |
2015-03-08 | Fixed EmuWindow typo (fixes OSX build) | bunnei | 2 | -2/+2 | |
2015-03-07 | Set framebuffer layout from EmuWindow. | bunnei | 2 | -7/+75 | |
2015-03-06 | Logging: check for filter before sending to the queue, to skip all heavy formatting on the other thread. | Emmanuel Gil Peyrot | 5 | -7/+17 | |
2015-03-06 | Removed swap code redundancy and moved common swap code to swap.h | archshift | 3 | -127/+97 | |
2015-03-02 | Profiler: Implement QPCClock to get better precision on Win32 | Yuri Kunde Schlesner | 2 | -1/+42 | |
MSVC 2013 (at least) doesn't use QueryPerformanceCounter to implement std::chrono::high_resolution_clock, so it has bad precision. Manually implementing our own clock type using it works around this for now. | |||||
2015-03-02 | Add profiling infrastructure and widget | Yuri Kunde Schlesner | 6 | -0/+493 | |
2015-02-25 | Common: Switch to the XDG Base Directory Specification for directory selection. | Emmanuel Gil Peyrot | 2 | -10/+69 | |
This allows for easily movable and independent configuration and data directories, using standardized paths. | |||||
2015-02-22 | Added information reporting from ThrowFatalError | archshift | 3 | -2/+2 | |
This was RE'd from the errdisp applet. | |||||
2015-02-20 | Common: Change names containing “Dolphin” or “PPSSPP” to something more generic. | Emmanuel Gil Peyrot | 2 | -8/+8 | |
2015-02-20 | Misc cleanup of common and related functions | archshift | 3 | -79/+28 | |
2015-02-20 | Remove duplication of INSERT_PADDING_WORDS between pica.h and gpu.h | archshift | 2 | -3/+3 | |
2015-02-19 | Remove "super lame/broken" file_search compilation unit that was leftover from Dolphin | archshift | 3 | -128/+0 | |
2015-02-19 | Remove redundant utf8 compilation unit that was leftover from Dolphin | archshift | 3 | -528/+0 | |
2015-02-19 | Remove useless extended_trace compilation unit that was leftover from Dolphin | archshift | 3 | -480/+0 | |
2015-02-19 | Remove the useless msg_handler compilation unit that was left over from Dolphin | archshift | 7 | -178/+11 | |
2015-02-18 | Asserts: Use lambdas to keep assertion code away from the main code path | Yuri Kunde Schlesner | 1 | -6/+25 | |
2015-02-17 | ConfigMem: Clean up the Config memory to be more like the shared page and moved | purpasmart96 | 1 | -0/+7 | |
the helper macro for padding to common_funcs.h | |||||
2015-02-13 | backend: Add logging subentry for ldr | Lioncash | 1 | -0/+1 | |
Fixes an assertion upon executing citra in debug mode. | |||||
2015-02-12 | Build: Fixed some warnings | Subv | 1 | -3/+3 | |
2015-02-11 | Asserts: break/crash program, fit to style guide; log.h->assert.h | archshift | 15 | -105/+73 | |
Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft. | |||||
2015-02-08 | Services: Stub some functions | purpasmart96 | 1 | -0/+1 | |
2015-02-07 | Fix a wrong file name in a comment | chinhodado | 1 | -1/+1 | |
2015-01-30 | Common: Fix SCOPE_EXIT to actually create unique identifiers. | Yuri Kunde Schlesner | 2 | -1/+7 | |
2015-01-21 | Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxx | archshift | 3 | -10/+10 | |
2015-01-10 | Logging: Log all called service functions (under trace). Compile out all trace logs under release for performance. | archshift | 3 | -24/+8 | |
2015-01-07 | Common: Clean up ThreadQueueList | Yuri Kunde Schlesner | 1 | -144/+74 | |
Replace all the C-style complicated buffer management with a std::deque. In addition to making the code easier to understand it also adds support for non-POD IdTypes. Also clean the rest of the code to follow our code style. | |||||
2015-01-07 | CoreTiming: Ported the CoreTiming namespace from PPSSPP | Subv | 2 | -0/+2 | |
Implemented the required calls to make it work. CoreTiming: Added a new logging class Core_Timing. | |||||
2015-01-06 | Common: Remove dead platform #ifdefs to make the code more readable. | Emmanuel Gil Peyrot | 5 | -101/+2 | |
Symbian, Xbox, Blackberry and iOS got removed. FreeBSD and Android kept due to them potentially being able to run Citra in the future. The iOS specific part also got removed from PPSSPP in order to fix a bug there. | |||||
2015-01-05 | Common: Use std::abs instead of abs, using abs with cmath fails on some systems. | Emmanuel Gil Peyrot | 1 | -2/+3 | |
2015-01-05 | Common: Remove the unused x86-specific 128-bit float type. | Emmanuel Gil Peyrot | 1 | -11/+0 | |
2015-01-04 | Archives: Changed the way paths are built for the archives. | Subv | 3 | -20/+4 | |
Each archive now takes a mount point of either NAND or SDMC, and builds its own directory structure there, trying to simulate an HLE-friendly hardware layout | |||||
2015-01-04 | SaveDataCheck: Move the files to nand/title | Subv | 1 | -1/+1 | |
under /nand/title/high/low/content/00000000.app.romfs | |||||
2015-01-03 | Archives: Change the folder layout of some archives. | Subv | 3 | -20/+24 | |
This is to better represent the hardware layout, they are still aren't quite accurate, but this better and will help a bit when implementing the other archives like NAND-RO and NAND-RW | |||||
2015-01-03 | Archives: Reduced duplicate code in RomFS and SaveCheck. | Subv | 3 | -0/+4 | |
Fixed a few warnings and cleaned up the code | |||||
2014-12-31 | SOC_U: Preliminary implementation of sockets. | Subv | 2 | -0/+2 | |
Stubbed CreateMemoryBlock Using Berkeley sockets, and Winsock2.2 on Windows. So far ftpony creates the socket and accepts incoming connections SOC_U: Renamed functions to maintain consistency Also prevents possible scope errors / conflicts with the actual Berkeley socket functions SOCU: Close all the opened sockets when cleaning up SOCU | |||||
2014-12-30 | Fix MSVC-related #defines and add CMakeLists comment | darkf | 5 | -10/+10 | |
2014-12-30 | Archives: Implemented ExtSaveData and SharedExtSaveData | Subv | 3 | -0/+4 | |
They will be stored in /extsavedata/SDMC and /extsavedata/NAND respectively. Also redirect some APT_A functions to their APT_U equivalents. Implemented the gamecoin.dat file in SharedExtSaveData in the PTM module. Implemented formatting the savegame. Retake a previous savegame if it exists instead of reporting them as not formatted every time a game is loaded. | |||||
2014-12-21 | More warning cleanups | Chin | 1 | -0/+6 | |
2014-12-21 | License change | purpasmart96 | 46 | -74/+74 | |
2014-12-20 | BitField: Add an explicit Assign method. | Tony Wasserka | 1 | -1/+5 | |
This is useful when doing crazy stuff like inheriting from BitField. | |||||
2014-12-20 | Common: Add a clone of std::make_unique | Yuri Kunde Schlesner | 2 | -0/+17 | |
2014-12-18 | SaveData: Implemented the SystemSaveData archive. | Subv | 3 | -0/+4 | |
It will be stored in the /syssavedata folder. This archive is user by various Services and possibly games via the FS:U service. | |||||
2014-12-18 | Filesystem/Archives: Implemented the SaveData archive | Subv | 3 | -0/+4 | |
The savedata for each game is stored in /savedata/<ProgramID> for NCCH files. ELF files and 3DSX files use the folder 0 because they have no ID information Got rid of the code duplication in File and Directory Files that deal with the host machine's file system now live in DiskFile, similarly for directories and DiskDirectory and archives with DiskArchive. FS_U: Use the correct error code when a file wasn't found | |||||
2014-12-14 | Restore the original console color after logging a message. | Yuri Kunde Schlesner | 2 | -13/+25 | |
Fixes #277 | |||||
2014-12-13 | Remove old logging system | Yuri Kunde Schlesner | 6 | -850/+2 | |
2014-12-13 | Add configurable per-class log filtering | Yuri Kunde Schlesner | 5 | -3/+205 | |
2014-12-13 | Convert old logging calls to new logging macros | Yuri Kunde Schlesner | 8 | -71/+94 | |
2014-12-13 | Implement text path trimming for shorter paths. | Yuri Kunde Schlesner | 3 | -1/+53 | |
2014-12-13 | Re-add coloring to the console logging output. | Yuri Kunde Schlesner | 1 | -0/+50 | |
2014-12-13 | New logging system | Yuri Kunde Schlesner | 11 | -66/+716 | |
2014-12-13 | Add SCOPE_EXIT macro to conveniently execute cleanup actions | Yuri Kunde Schlesner | 2 | -0/+38 | |
2014-12-13 | Added missing include in common_funcs.h | Yuri Kunde Schlesner | 1 | -0/+1 | |
2014-12-13 | Remove redundant include from common_funcs.h | Yuri Kunde Schlesner | 1 | -2/+0 | |
2014-12-13 | APT_U: Added GetSharedFont service function. | bunnei | 1 | -0/+3 | |
2014-12-12 | Common: Add "sysdata" to GetUserPath and cleanup. | bunnei | 3 | -26/+3 | |
2014-12-10 | Explicitly specify LE strings to iconv, fixes paths in Steel Diver | archshift | 1 | -2/+2 | |
2014-12-09 | Remove unused NDMA module | Yuri Kunde Schlesner | 2 | -2/+0 | |
2014-12-09 | Some code cleanup. | Tony Wasserka | 1 | -0/+2 | |
2014-12-09 | Fix some headers to include their dependencies properly. | Tony Wasserka | 2 | -0/+7 | |
2014-12-07 | StringUtil: Perform some minimal cleanup. | Tony Wasserka | 1 | -3/+3 | |
2014-12-03 | Change NULLs to nullptrs. | Rohit Nirmal | 17 | -92/+92 | |
2014-11-29 | Fix MinGW build | darkf | 7 | -21/+34 | |
2014-11-25 | Remove unused includes to common/thread.h | Emmanuel Gil Peyrot | 1 | -1/+0 | |
2014-11-19 | Remove tabs in all files except in skyeye imports and in generated GL code | Emmanuel Gil Peyrot | 3 | -100/+100 | |
2014-11-19 | Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generated | Emmanuel Gil Peyrot | 23 | -160/+160 | |
2014-11-18 | Remove extraneous semicolons | Lioncash | 2 | -2/+2 | |
2014-11-18 | EmuWindow: Add some explicit documentation and set proper minimal client area size. | Tony Wasserka | 1 | -2/+4 | |
2014-11-18 | EmuWindow: Add a TODO. | Tony Wasserka | 1 | -0/+1 | |
Implementing this function currently is not critical, as we don't perform any configuration changes, yet. However, the interface is a good starting point for adding this functionality. | |||||
2014-11-18 | MathUtil: Make Rectangle work with unsigned types. | Tony Wasserka | 1 | -4/+5 | |
2014-11-18 | EmuWindow: Better document the purpose of OnMinimalClientAreaChangeRequest. | Tony Wasserka | 1 | -0/+7 | |
2014-11-18 | EmuWindow: Remove window title getters/setters. | Tony Wasserka | 1 | -16/+1 | |
The window title is none of the emulation core's business. The GUI code is free to put whatever it wants there. Providing properly thread-safe window title getters and setters is a mess anyway. | |||||
2014-11-18 | EmuWindow: Add documentation. | Tony Wasserka | 1 | -18/+57 | |
2014-11-18 | EmuWindow: Add support for specifying minimal client area sizes. | Tony Wasserka | 1 | -8/+26 | |
2014-11-18 | Fixup EmuWindow interface and implementations thereof. | Tony Wasserka | 1 | -28/+33 | |
2014-11-18 | Viewport scaling and display density independence | Kevin Hartman | 1 | -2/+5 | |
The view is scaled to be as large as possible, without changing the aspect, within the bounds of the window. On "retina" displays, or other displays where window units != pixels, the view should no longer draw incorrectly. | |||||
2014-11-18 | Add a GUI logging channel. | Tony Wasserka | 2 | -0/+2 | |
Replace asserts with _dbg_assert_. | |||||
2014-11-17 | emu_window: Fix initializer list order. | Lioncash | 1 | -2/+2 | |
Gets rid of a warning on OSX. | |||||
2014-11-13 | Use std::u16string for conversion between UTF-8 and UTF-16, FS:USER functions | archshift | 2 | -51/+115 | |
2014-10-29 | Renamed souce files of services to match port names | Gareth Poole | 1 | -1/+1 | |
2014-10-26 | Add `override` keyword through the code. | Yuri Kunde Schlesner | 2 | -3/+3 | |
This was automated using `clang-modernize`. | |||||
2014-10-26 | Fix compile errors in Clang | Yuri Kunde Schlesner | 1 | -1/+0 | |
2014-10-25 | bit_field: Fix a typo in the sample usage. | Lioncash | 1 | -1/+1 | |
2014-10-24 | Removed uses of raw c-string manipulation functions. | archshift | 4 | -21/+10 | |
2014-10-23 | Use std sized types instead of platform specific typedefs | Yuri Kunde Schlesner | 2 | -32/+12 | |
2014-10-23 | Common: Return from CreateFullPath early if the directory creation fails | archshift | 1 | -2/+4 | |
2014-10-08 | Added configuration file system. | archshift | 6 | -69/+73 | |
Uses QSettings on citra-qt, and inih on citra-cli. | |||||
2014-10-06 | Common: Add a helper function to generate a 8.3 filename from a long one. | Emmanuel Gil Peyrot | 2 | -0/+53 | |
Core: Fix the SDMC Directory implementation to make blargSnes work. | |||||
2014-09-28 | Fix warnings in core and common | Lioncash | 3 | -15/+5 | |
2014-09-22 | chunk_file: General cleanup | Lioncash | 1 | -244/+0 | |
- Remove unnecessary ifdefs - Remove commented out code. Can be retrieved later if needed. | |||||
2014-09-21 | Use the citra user path for the sdmc directory | archshift | 3 | -0/+4 | |
2014-09-17 | Common: Rename the File namespace to FileUtil, to match the filename and prevent collisions. | Emmanuel Gil Peyrot | 4 | -25/+25 | |
2014-09-17 | Common: Return the number of items read/written in IOFile’s methods instead of a boolean. | Emmanuel Gil Peyrot | 1 | -8/+20 | |
2014-09-12 | Added support for multiple input device types for KeyMap and connected Qt. | Kevin Hartman | 5 | -40/+61 | |
2014-09-12 | Initial HID PAD work, with GLFW only. | Kevin Hartman | 4 | -0/+77 | |
2014-09-09 | Removed fixed_size_queue.h | archshift | 2 | -71/+0 | |
It's unused and doesn't look like it compiles anyway :/ | |||||
2014-09-09 | common: Prune all redundant includes | archshift | 10 | -34/+3 | |
2014-09-09 | Moved common_types::Rect from common to Common namespace | archshift | 1 | -1/+1 | |
2014-09-09 | Added string_util to common, small changes in loader.cpp | archshift | 11 | -32/+39 | |
2014-09-09 | loader.cpp: improved file extension checking, made Upper/LowerStr useful | archshift | 2 | -12/+9 | |
Instead of forcibly taking the last 4 characters, it now finds the last extension separator (the period) and takes a substr of its location. | |||||
2014-09-08 | Common: Remove HAVE_CXX11_SYNTAX define from Common.h | Lioncash | 1 | -6/+0 | |
2014-09-08 | Common: Fix a potential infinite loop in StringUtil's ReplaceAll | Lioncash | 1 | -3/+8 | |
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 | |