summaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2015-05-06Clean-up includesYuri Kunde Schlesner
2015-05-06Move typedefs from kernel.h to more appropriate placesYuri Kunde Schlesner
2015-05-06Common: Move NonCopyable to common_types.hYuri Kunde Schlesner
2015-05-06Common: Use C++11 deleted functions for NonCopyableYuri Kunde Schlesner
2015-05-06Common: Remove unused enumsYuri Kunde Schlesner
2015-05-01EmuWindow: Clip mouse input coordinates to emulated screen dimensions.Zaneo
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-16Common: thread.h cleanupsYuri Kunde Schlesner
The helper classes are rendered obsolete by C++11 lambdas. Also made formatting conform to our code style.
2015-04-09Thread: Implement priority boost for starved threads.bunnei
SVC: Return correct error code on invalid CreateThread processor ID. SVC: Assert when creating a thread with an invalid userland priority.
2015-04-03Merge pull request #641 from purpasmart96/service_stubsbunnei
Services: Stubs and minor changes
2015-04-02Services: Stubs and minor changespurpasmart96
2015-03-30disassembler: Get rid of a const_castLioncash
2015-03-16Common: Fix logic for setting EMU_DATA_DIR.Emmanuel Gil Peyrot
2015-03-16Common: Make a #else more apparent.Emmanuel Gil Peyrot
2015-03-14EmuWindow: Fixed a reference to a temporary variableSubv
in GetTouchState()
2015-03-11Merge pull request #642 from bunnei/touchpadbunnei
Touchpad support
2015-03-10HID: Complete refactor of pad/touch input to fix threading issues.bunnei
2015-03-10Merge pull request #629 from archshift/lcdfbbunnei
Implement SetLcdForceBlack and add implementation for color filling in the GPU code
2015-03-10EmuWindow: Made pad/touch functions non-static.bunnei
2015-03-10EmuWindow: Added infrastructure code to enable touchpad support.bunnei
2015-03-09Added LCD registers, and implementation for color filling in OGL code.archshift
2015-03-09Merge pull request #634 from linkmauve/logging-performancesbunnei
Apply the logging filter before sending the message to the queue
2015-03-08Merge pull request #584 from yuriks/outline-assertsbunnei
Asserts: Use lambdas to keep assertion code away from the main code path
2015-03-07Fixed EmuWindow typo (fixes OSX build)bunnei
2015-03-07Merge pull request #636 from bunnei/refactor-screen-winbunnei
Set framebuffer layout from EmuWindow.
2015-03-07Set framebuffer layout from EmuWindow.bunnei
2015-03-07Merge pull request #538 from yuriks/perf-statTony Wasserka
Add profiling infrastructure and widget
2015-03-06Logging: check for filter before sending to the queue, to skip all heavy ↵Emmanuel Gil Peyrot
formatting on the other thread.
2015-03-05Removed swap code redundancy and moved common swap code to swap.harchshift
2015-03-01Profiler: Implement QPCClock to get better precision on Win32Yuri Kunde Schlesner
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-01Add profiling infrastructure and widgetYuri Kunde Schlesner
2015-02-25Common: Switch to the XDG Base Directory Specification for directory selection.Emmanuel Gil Peyrot
This allows for easily movable and independent configuration and data directories, using standardized paths.
2015-02-23Merge pull request #581 from archshift/tfebunnei
Added information reporting from ThrowFatalError
2015-02-22Added information reporting from ThrowFatalErrorarchshift
This was RE'd from the errdisp applet.
2015-02-20Common: Change names containing “Dolphin” or “PPSSPP” to something ↵Emmanuel Gil Peyrot
more generic.
2015-02-19Misc cleanup of common and related functionsarchshift
2015-02-19Remove duplication of INSERT_PADDING_WORDS between pica.h and gpu.harchshift
2015-02-18Remove "super lame/broken" file_search compilation unit that was leftover ↵archshift
from Dolphin
2015-02-18Remove redundant utf8 compilation unit that was leftover from Dolphinarchshift
2015-02-18Remove useless extended_trace compilation unit that was leftover from Dolphinarchshift
2015-02-18Remove the useless msg_handler compilation unit that was left over from Dolphinarchshift
2015-02-18Merge pull request #570 from purpasmart96/config_membunnei
ConfigMem: Clean up the Config memory to be more like the shared page
2015-02-18Asserts: Use lambdas to keep assertion code away from the main code pathYuri Kunde Schlesner
2015-02-16ConfigMem: Clean up the Config memory to be more like the shared page and movedpurpasmart96
the helper macro for padding to common_funcs.h
2015-02-14Merge pull request #529 from Subv/masterbunnei
Build: Fixed some warnings
2015-02-12backend: Add logging subentry for ldrLioncash
Fixes an assertion upon executing citra in debug mode.
2015-02-12Build: Fixed some warningsSubv
2015-02-10Asserts: break/crash program, fit to style guide; log.h->assert.harchshift
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-10Merge pull request #526 from purpasmart96/citra_stubsbunnei
Services: Stub some functions
2015-02-07Services: Stub some functionspurpasmart96
2015-02-07Fix a wrong file name in a commentchinhodado