summaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2015-05-22OpenGL renderertfarley
2015-05-22Service::Y2R: Support for grayscale decoding of specific formatsYuri Kunde Schlesner
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-15Merge pull request #758 from yuriks/sync-loggingYuri Kunde Schlesner
Common: Remove async logging
2015-05-15Remove unused concurrent_ring_buffer.hYuri Kunde Schlesner
2015-05-14Common: Remove unused cruft from math_util, and remove a duplicated Rect ↵Emmanuel Gil Peyrot
class in common_types.
2015-05-12Common: Use the log system to print assert messagesYuri Kunde Schlesner
2015-05-12Common: Remove async loggingYuri Kunde Schlesner
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-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.