summaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2015-05-09Common: Remove the BIT macroYuri Kunde Schlesner
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-08Common: Add BIT macroYuri Kunde Schlesner
2015-05-08Common: Add StringFromFixedZeroTerminatedBufferYuri Kunde Schlesner
2015-05-07Merge pull request #725 from yuriks/remove-common-crapYuri Kunde Schlesner
Remove unused hash and mem_arena from common
2015-05-07Merge pull request #723 from lioncash/commonstrbunnei
string_util: Get rid of UriDecode/UriEncode
2015-05-07Profiler: Fix off-by-one error when computing average.Yuri Kunde Schlesner
2015-05-07Common: Remove mem_arena.cpp/hYuri Kunde Schlesner
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-07Common: Remove hash.cpp/hYuri Kunde Schlesner
Currently unused and the code quality is pretty questionable.
2015-05-07Common: Add proper macros to test for architecture pointer sizeYuri Kunde Schlesner
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-07string_util: Get rid of UriDecode/UriEncodeLioncash
2015-05-07Common: Remove common.hYuri Kunde Schlesner
2015-05-07Common: Move alignment macros to common_funcs.hYuri Kunde Schlesner
2015-05-07Common: Move SSE detection ifdefs to platform.hYuri Kunde Schlesner
2015-05-07Common: Remove more unused compatibility definesYuri Kunde Schlesner
2015-05-07Common: Move IO-specific compatibility macros to file_util.cppYuri Kunde Schlesner
2015-05-06Common: Remove many unnecessary cross-platform compatibility macrosYuri Kunde Schlesner
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.