aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common
Commit message (Collapse)AuthorAge
...
| | * Common: Remove mem_arena.cpp/hGravatar Yuri Kunde Schlesner2015-05-07
| | | | | | | | | | | | | | | | | | 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/hGravatar Yuri Kunde Schlesner2015-05-07
| |/ |/| | | | | Currently unused and the code quality is pretty questionable.
* | Common: Add proper macros to test for architecture pointer sizeGravatar Yuri Kunde Schlesner2015-05-07
| | | | | | | | | | | | | | 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.
| * string_util: Get rid of UriDecode/UriEncodeGravatar Lioncash2015-05-07
|/
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Common: Move alignment macros to common_funcs.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Common: Move SSE detection ifdefs to platform.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Common: Remove more unused compatibility definesGravatar Yuri Kunde Schlesner2015-05-07
|
* Common: Move IO-specific compatibility macros to file_util.cppGravatar Yuri Kunde Schlesner2015-05-07
|
* Common: Remove many unnecessary cross-platform compatibility macrosGravatar Yuri Kunde Schlesner2015-05-06
|
* Clean-up includesGravatar Yuri Kunde Schlesner2015-05-06
|
* Move typedefs from kernel.h to more appropriate placesGravatar Yuri Kunde Schlesner2015-05-06
|
* Common: Move NonCopyable to common_types.hGravatar Yuri Kunde Schlesner2015-05-06
|
* Common: Use C++11 deleted functions for NonCopyableGravatar Yuri Kunde Schlesner2015-05-06
|
* Common: Remove unused enumsGravatar Yuri Kunde Schlesner2015-05-06
|
* EmuWindow: Clip mouse input coordinates to emulated screen dimensions.Gravatar Zaneo2015-05-01
| | | | | | | 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.
* Common: thread.h cleanupsGravatar Yuri Kunde Schlesner2015-04-16
| | | | | The helper classes are rendered obsolete by C++11 lambdas. Also made formatting conform to our code style.
* Thread: Implement priority boost for starved threads.Gravatar bunnei2015-04-09
| | | | | | SVC: Return correct error code on invalid CreateThread processor ID. SVC: Assert when creating a thread with an invalid userland priority.
* Merge pull request #641 from purpasmart96/service_stubsGravatar bunnei2015-04-03
|\ | | | | Services: Stubs and minor changes
| * Services: Stubs and minor changesGravatar purpasmart962015-04-02
| |
* | disassembler: Get rid of a const_castGravatar Lioncash2015-03-30
|/
* Common: Fix logic for setting EMU_DATA_DIR.Gravatar Emmanuel Gil Peyrot2015-03-16
|
* Common: Make a #else more apparent.Gravatar Emmanuel Gil Peyrot2015-03-16
|
* EmuWindow: Fixed a reference to a temporary variableGravatar Subv2015-03-14
| | | | in GetTouchState()
* Merge pull request #642 from bunnei/touchpadGravatar bunnei2015-03-11
|\ | | | | Touchpad support
| * HID: Complete refactor of pad/touch input to fix threading issues.Gravatar bunnei2015-03-10
| |
* | Merge pull request #629 from archshift/lcdfbGravatar bunnei2015-03-10
|\ \ | | | | | | Implement SetLcdForceBlack and add implementation for color filling in the GPU code
| | * EmuWindow: Made pad/touch functions non-static.Gravatar bunnei2015-03-10
| | |
| | * EmuWindow: Added infrastructure code to enable touchpad support.Gravatar bunnei2015-03-10
| |/ |/|
| * Added LCD registers, and implementation for color filling in OGL code.Gravatar archshift2015-03-09
| |
* | Merge pull request #634 from linkmauve/logging-performancesGravatar bunnei2015-03-09
|\ \ | | | | | | Apply the logging filter before sending the message to the queue
* \ \ Merge pull request #584 from yuriks/outline-assertsGravatar bunnei2015-03-08
|\ \ \ | | | | | | | | Asserts: Use lambdas to keep assertion code away from the main code path
* | | | Fixed EmuWindow typo (fixes OSX build)Gravatar bunnei2015-03-07
| | | |
* | | | Merge pull request #636 from bunnei/refactor-screen-winGravatar bunnei2015-03-07
|\ \ \ \ | | | | | | | | | | Set framebuffer layout from EmuWindow.
| * | | | Set framebuffer layout from EmuWindow.Gravatar bunnei2015-03-07
| | |_|/ | |/| |
* | | | Merge pull request #538 from yuriks/perf-statGravatar Tony Wasserka2015-03-07
|\ \ \ \ | | | | | | | | | | Add profiling infrastructure and widget
| | | | * Logging: check for filter before sending to the queue, to skip all heavy ↵Gravatar Emmanuel Gil Peyrot2015-03-06
| |_|_|/ |/| | | | | | | | | | | formatting on the other thread.
* | | | Removed swap code redundancy and moved common swap code to swap.hGravatar archshift2015-03-05
| |/ / |/| |
| * | Profiler: Implement QPCClock to get better precision on Win32Gravatar Yuri Kunde Schlesner2015-03-01
| | | | | | | | | | | | | | | | | | 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.
| * | Add profiling infrastructure and widgetGravatar Yuri Kunde Schlesner2015-03-01
|/ /
* | Common: Switch to the XDG Base Directory Specification for directory selection.Gravatar Emmanuel Gil Peyrot2015-02-25
| | | | | | | | This allows for easily movable and independent configuration and data directories, using standardized paths.
* | Merge pull request #581 from archshift/tfeGravatar bunnei2015-02-23
|\ \ | | | | | | Added information reporting from ThrowFatalError
| * | Added information reporting from ThrowFatalErrorGravatar archshift2015-02-22
| | | | | | | | | | | | This was RE'd from the errdisp applet.
* | | Common: Change names containing “Dolphin” or “PPSSPP” to something ↵Gravatar Emmanuel Gil Peyrot2015-02-20
| | | | | | | | | | | | more generic.
* | | Misc cleanup of common and related functionsGravatar archshift2015-02-19
| | |
* | | Remove duplication of INSERT_PADDING_WORDS between pica.h and gpu.hGravatar archshift2015-02-19
| | |
* | | Remove "super lame/broken" file_search compilation unit that was leftover ↵Gravatar archshift2015-02-18
| | | | | | | | | | | | from Dolphin
* | | Remove redundant utf8 compilation unit that was leftover from DolphinGravatar archshift2015-02-18
| | |
* | | Remove useless extended_trace compilation unit that was leftover from DolphinGravatar archshift2015-02-18
| | |
* | | Remove the useless msg_handler compilation unit that was left over from DolphinGravatar archshift2015-02-18
|/ /