Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | VideoCore: Convert x64 shader JIT to use Xbyak for assembly | Yuri Kunde Schlesner | 2016-12-15 | 1 | -1/+7 |
| | |||||
* | Support additional screen layouts. | James Rowe | 2016-11-05 | 1 | -0/+2 |
| | | | | | Allows users to choose a single screen layout or a large screen layout. Adds a configuration option to change the prominent screen. | ||||
* | Common: Remove section measurement from profiler (#1731) | Yuri Kunde Schlesner | 2016-04-29 | 1 | -1/+0 |
| | | | | This has been entirely superseded by MicroProfile. The rest of the code can go when a simpler frametime/FPS meter is added to the GUI. | ||||
* | Common: Remove Common::make_unique, use std::make_unique | MerryMage | 2016-04-05 | 1 | -1/+0 |
| | |||||
* | PICA: Align vertex attributes | Jannik Vogel | 2016-03-13 | 1 | -0/+1 |
| | |||||
* | common: Get rid of debug_interface.h | Lioncash | 2015-09-11 | 1 | -1/+0 |
| | | | | | | This is technically unused. Also removes TMemChecks because it relies on this. Whenever memory breakpoints are implemented for real, it should be designed to match the codebase debugging mechanisms. | ||||
* | Common: Import BitSet from Dolphin | aroulin | 2015-09-01 | 1 | -0/+1 |
| | |||||
* | Integrate the MicroProfile profiling library | Yuri Kunde Schlesner | 2015-08-25 | 1 | -0/+3 |
| | | | | | This brings goodies such as a configurable user interface and multi-threaded timeline view. | ||||
* | Rename ARCHITECTURE_X64 definition to ARCHITECTURE_x86_64. | bunnei | 2015-08-16 | 1 | -1/+1 |
| | |||||
* | Common: Move cpu_detect to x64 directory. | bunnei | 2015-08-16 | 1 | -2/+2 |
| | |||||
* | x64: Refactor to remove fake interfaces and general cleanups. | bunnei | 2015-08-16 | 1 | -12/+6 |
| | |||||
* | Common: Added MurmurHash3 hash function for general-purpose use. | bunnei | 2015-08-15 | 1 | -1/+3 |
| | |||||
* | Common: Ported over boilerplate x86 JIT code from Dolphin/PPSSPP. | bunnei | 2015-08-15 | 1 | -2/+12 |
| | |||||
* | Common: Ported over Dolphin's code for x86 CPU capability detection. | bunnei | 2015-08-15 | 1 | -0/+8 |
| | |||||
* | Common: Remove thunk.h | Lioncash | 2015-07-11 | 1 | -1/+0 |
| | | | | This isn't used, and there's no implementations of the member functions. | ||||
* | Common: Remove unused fifo_queue.h. | Emmanuel Gil Peyrot | 2015-06-27 | 1 | -1/+0 |
| | |||||
* | Move video_core/color.h to common/color.h | archshift | 2015-05-30 | 1 | -0/+1 |
| | |||||
* | Move video_core/math.h to common/vector_math.h | archshift | 2015-05-30 | 1 | -0/+1 |
| | | | | The file only contained vector manipulation code, and such widely-useable code doesn't belong in video_core. | ||||
* | Merge pull request #758 from yuriks/sync-logging | Yuri Kunde Schlesner | 2015-05-16 | 1 | -1/+0 |
|\ | | | | | Common: Remove async logging | ||||
| * | Remove unused concurrent_ring_buffer.h | Yuri Kunde Schlesner | 2015-05-16 | 1 | -1/+0 |
| | | |||||
* | | Common: Remove unused cruft from math_util, and remove a duplicated Rect class in common_types. | Emmanuel Gil Peyrot | 2015-05-14 | 1 | -1/+0 |
|/ | |||||
* | Common: Remove mem_arena.cpp/h | Yuri Kunde Schlesner | 2015-05-08 | 1 | -2/+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. | ||||
* | Common: Remove hash.cpp/h | Yuri Kunde Schlesner | 2015-05-07 | 1 | -2/+0 |
| | | | | Currently unused and the code quality is pretty questionable. | ||||
* | Common: Remove common.h | Yuri Kunde Schlesner | 2015-05-07 | 1 | -1/+0 |
| | |||||
* | Add profiling infrastructure and widget | Yuri Kunde Schlesner | 2015-03-02 | 1 | -0/+4 |
| | |||||
* | Remove "super lame/broken" file_search compilation unit that was leftover from Dolphin | archshift | 2015-02-19 | 1 | -2/+0 |
| | |||||
* | Remove redundant utf8 compilation unit that was leftover from Dolphin | archshift | 2015-02-19 | 1 | -2/+0 |
| | |||||
* | Remove useless extended_trace compilation unit that was leftover from Dolphin | archshift | 2015-02-19 | 1 | -2/+0 |
| | |||||
* | Remove the useless msg_handler compilation unit that was left over from Dolphin | archshift | 2015-02-19 | 1 | -2/+0 |
| | |||||
* | Asserts: break/crash program, fit to style guide; log.h->assert.h | archshift | 2015-02-11 | 1 | -1/+1 |
| | | | | | | | 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. | ||||
* | Common: Add a clone of std::make_unique | Yuri Kunde Schlesner | 2014-12-20 | 1 | -0/+1 |
| | |||||
* | Remove old logging system | Yuri Kunde Schlesner | 2014-12-13 | 1 | -4/+0 |
| | |||||
* | Add configurable per-class log filtering | Yuri Kunde Schlesner | 2014-12-13 | 1 | -0/+2 |
| | |||||
* | New logging system | Yuri Kunde Schlesner | 2014-12-13 | 1 | -0/+6 |
| | |||||
* | Add SCOPE_EXIT macro to conveniently execute cleanup actions | Yuri Kunde Schlesner | 2014-12-13 | 1 | -0/+1 |
| | |||||
* | Added support for multiple input device types for KeyMap and connected Qt. | Kevin Hartman | 2014-09-12 | 1 | -0/+1 |
| | |||||
* | Initial HID PAD work, with GLFW only. | Kevin Hartman | 2014-09-12 | 1 | -0/+2 |
| | |||||
* | Removed fixed_size_queue.h | archshift | 2014-09-09 | 1 | -1/+0 |
| | | | | It's unused and doesn't look like it compiles anyway :/ | ||||
* | Removed common/std_xyz, instead using the std header | archshift | 2014-09-07 | 1 | -3/+0 |
| | |||||
* | Removed common/atomic, instead using std::atomic | archshift | 2014-09-03 | 1 | -3/+0 |
| | |||||
* | CMake cleanup | Yuri Kunde Schlesner | 2014-09-01 | 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. | ||||
* | CMakeLists: rename HEADS, improved comments | archshift | 2014-05-20 | 1 | -2/+2 |
| | | | | Changes for clarity of comments, removed redundant compiler flags. | ||||
* | Updated cmakelists | archshift | 2014-05-17 | 1 | -0/+1 |
| | |||||
* | Fixed indents | archshift | 2014-05-01 | 1 | -1/+1 |
| | |||||
* | IT'S ALIVE! | archshift | 2014-04-29 | 1 | -1/+39 |
| | |||||
* | fixes to scm_rev generation to make it conistent with windows build | bunnei | 2014-04-24 | 1 | -3/+3 |
| | |||||
* | added scm rev generation on Linux/cmake | bunnei | 2014-04-24 | 1 | -1/+3 |
| | |||||
* | updated CMakeLists for missing files | ShizZy | 2014-04-23 | 1 | -0/+1 |
| | |||||
* | updated CMakeLists | bunnei | 2014-04-10 | 1 | -16/+17 |
| | |||||
* | convert tabs to spaces | bunnei | 2014-04-02 | 1 | -16/+16 |
| | |||||
* | updated CMakeLists.txt file for new common files | ShizZy | 2013-09-05 | 1 | -9/+16 |
| | |||||
* | adding initial project layout | ShizZy | 2013-08-30 | 1 | -0/+11 |