Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | common/timer: Remove | Lioncash | 2021-01-15 | 1 | -2/+0 |
| | | | | | This is a leftover from citra and dolphin that isn't used at all, particularly given the <chrono> header exists. | ||||
* | common/color: Remove | ReinUsesLisp | 2021-01-15 | 1 | -1/+0 |
| | | | | This is a leftover from Citra we no longer use. | ||||
* | common: Introduce useful tree structures. | bunnei | 2021-01-11 | 1 | -0/+3 |
| | |||||
* | memory: Remove MemoryHook | MerryMage | 2021-01-01 | 1 | -2/+0 |
| | |||||
* | common: ThreadWorker: Add class to help do asynchronous work. | bunnei | 2020-12-30 | 1 | -0/+2 |
| | |||||
* | Merge pull request #5131 from bunnei/scheduler-rewrite | bunnei | 2020-12-21 | 1 | -1/+1 |
|\ | | | | | Rewrite Kernel scheduler based on Atmosphere | ||||
| * | hle: kernel: Separate KScheduler from GlobalSchedulerContext class. | bunnei | 2020-12-06 | 1 | -1/+0 |
| | | |||||
| * | common: Port BitSet from Mesosphere. | bunnei | 2020-12-06 | 1 | -0/+1 |
| | | |||||
* | | cmake: Fix generating CMake configs and linking with Boost | lat9nq | 2020-12-13 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes regression by 761206cf81b271f7f4dd6a167a120325b760dbf3, causing yuzu to not build on Linux with any version of Boost except a cached 1.73 Conan version from before about a day ago. Moves the Boost requirement out of the `REQUIRED_LIBS` psuedo-2D-array for Conan to instead be manually configured, using Conan as a fallback solution if the system does not meet our requirements. Requires any update from the linux-fresh container in order to build. **DO NOT MERGE** until someone with the MSVC toolchain can verify this works there, too. | ||||
* | | common: Update CMakeList to fix build issue with Boost. | bunnei | 2020-12-12 | 1 | -2/+1 |
|/ | |||||
* | common: Add Common::DivCeil and Common::DivCeilLog2 | ReinUsesLisp | 2020-11-26 | 1 | -0/+1 |
| | | | | Add an equivalent to 'Common::AlignUp(n, d) / d' and a log2 alternative. | ||||
* | common/bit_cast: Add function matching std::bit_cast without constexpr | ReinUsesLisp | 2020-11-20 | 1 | -0/+1 |
| | | | | | | | | Add a std::bit_cast-like function archiving the same runtime results as the standard function, without compile time support. This allows us to use bit_cast while we wait for compiler support, it can be trivially replaced in the future. | ||||
* | common: Enable warnings as errors | Lioncash | 2020-11-02 | 1 | -0/+16 |
| | | | | Cleans up common so that we can enable warnings as errors. | ||||
* | video_core: NVDEC Implementation | ameerj | 2020-10-27 | 1 | -0/+2 |
| | | | | | | | | | | | | | | This commit aims to implement the NVDEC (Nvidia Decoder) functionality, with video frame decoding being handled by the FFmpeg library. The process begins with Ioctl commands being sent to the NVDEC and VIC (Video Image Composer) emulated devices. These allocate the necessary GPU buffers for the frame data, along with providing information on the incoming video data. A Submit command then signals the GPU to process and decode the frame data. To decode the frame, the respective codec's header must be manually composed from the information provided by NVDEC, then sent with the raw frame data to the ffmpeg library. Currently, H264 and VP9 are supported, with VP9 having some minor artifacting issues related mainly to the reference frame composition in its uncompressed header. Async GPU is not properly implemented at the moment. Co-Authored-By: David <25727384+ogniK5377@users.noreply.github.com> | ||||
* | CMakeLists: use system zstd on Linux | lat9nq | 2020-09-29 | 1 | -1/+6 |
| | | | | | From what I understand, this tells CMake to use the system, not conan, version of zstd. Required to build on the coming MinGW Docker container. | ||||
* | CMakeLists: fix for finding zstd on linux-mingw | lat9nq | 2020-09-29 | 1 | -1/+1 |
| | |||||
* | web_service: Move web_result.h into web_service | Lioncash | 2020-08-23 | 1 | -1/+0 |
| | | | | | | | This is the only place it's actively used. It's also more appropriate for web-related structures to be within the web service target. Especially given this one doesn't rely on anything in the common library. | ||||
* | ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer (#4465) | David | 2020-08-03 | 1 | -0/+1 |
| | | | | | | | | | | | | | * ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer With the support of C++20, we can use concepts to deduce if a type is an STL container or not. * More agressive concept for stl containers * Add -fconcepts * Move to common namespace * Add Common::IsBaseOf | ||||
* | cmake: Fix libfmt linking errors | David Marcec | 2020-07-10 | 1 | -5/+1 |
| | |||||
* | cmake: fix fmt linking when found | John Galt | 2020-07-09 | 1 | -1/+5 |
| | | | | | | | This is a new attempt at #4206 that shouldn't break windows builds. If someone else could test on windows, it would be much appreciated. Previously, the build bot passed but the actual builds failed. | ||||
* | Revert "cmake: fix fmt linking" | bunnei | 2020-07-03 | 1 | -1/+1 |
| | |||||
* | cmake: fix fmt linking | John Galt | 2020-06-29 | 1 | -1/+1 |
| | | | | | | | | | On gcc/ld, and clang/lld, fmt::v6 symbols are excluded, so linking fails. This fixes the issue. Note: This was included in the FindBoost changes I shared with BlinkHawk, however only they were merged. I'm not sure if it was missed, or if there was an issue with this part of the change. | ||||
* | ARM/Memory: Correct Exclusive Monitor and Implement Exclusive Memory Writes. | Fernando Sahmkow | 2020-06-27 | 1 | -0/+2 |
| | |||||
* | Common: Fix non-conan build | Fernando Sahmkow | 2020-06-26 | 1 | -1/+2 |
| | |||||
* | Common: Implement WallClock Interface and implement a native clock for x64 | Fernando Sahmkow | 2020-06-18 | 1 | -0/+4 |
| | |||||
* | Common: Implement a basic Fiber class. | Fernando Sahmkow | 2020-06-18 | 1 | -0/+2 |
| | |||||
* | Common: Implement a basic SpinLock class | Fernando Sahmkow | 2020-06-18 | 1 | -0/+2 |
| | |||||
* | gl_arb_decompiler: Implement an assembly shader decompiler | ReinUsesLisp | 2020-06-12 | 1 | -0/+2 |
| | | | | | | Emit code compatible with NV_gpu_program5. This should emit code compatible with Fermi, but it wasn't tested on that architecture. Pascal has some issues not present on Turing GPUs. | ||||
* | Add xbyak external | David Marcec | 2020-05-30 | 1 | -1/+3 |
| | |||||
* | main: Log host system memory parameters | Morph | 2020-05-17 | 1 | -0/+2 |
| | | | | Logs both physical memory and swapfile sizes, this is useful for support. | ||||
* | common: Add module to get the current time zone. | bunnei | 2020-05-11 | 1 | -0/+2 |
| | |||||
* | Replace externals with Conan (#3735) | James Rowe | 2020-05-08 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | * Remove git submodules that will be loaded through conan * Move custom Find modules to their own folder * Use conan for downloading missing external dependencies * CI: Change the yuzu source folder user to the user that the containers run on * Attempt to remove dirty mingw build hack * Install conan on the msvc build * Only set release build type when using not using multi config generator * Re-add qt bundled to workaround an issue with conan qt not downloading prebuilt binaries * Add workaround for submodules that use legacy CMAKE variables * Re-add USE_BUNDLED_QT on the msvc build bot | ||||
* | common: Add VirtualBuffer class, to abstract memory virtualization. | bunnei | 2020-04-17 | 1 | -0/+2 |
| | |||||
* | common/dynamic_library: Import and adapt helper from Dolphin | ReinUsesLisp | 2020-04-07 | 1 | -0/+2 |
| | |||||
* | shader/transform_feedback: Add host API friendly TFB builder | ReinUsesLisp | 2020-03-13 | 1 | -0/+2 |
| | |||||
* | video_core: Rename "const buffer locker" to "registry" | ReinUsesLisp | 2020-03-09 | 1 | -2/+2 |
| | |||||
* | gl_shader_cache: Rework shader cache and remove post-specializations | ReinUsesLisp | 2020-03-09 | 1 | -2/+0 |
| | | | | | Instead of pre-specializing shaders and then post-specializing them, drop the later and only "specialize" the shader while decoding it. | ||||
* | Fix git version in scm_rev.cpp | James Rowe | 2020-01-16 | 1 | -0/+5 |
| | |||||
* | ci: Populate build repository from Azure environment | Zach Hilman | 2019-11-06 | 1 | -11/+2 |
| | |||||
* | VideoCore: Unify const buffer accessing along engines and provide ConstBufferLocker class to shaders. | Fernando Sahmkow | 2019-10-25 | 1 | -2/+4 |
| | |||||
* | common: Rename binary_find.h to algorithm.h | Lioncash | 2019-10-15 | 1 | -1/+1 |
| | | | | | | Makes the header more general for other potential algorithms in the future. While we're at it, include a missing <functional> include to satisfy the use of std::less. | ||||
* | Merge pull request #2943 from DarkLordZach/azure-titlebars-v2 | bunnei | 2019-10-06 | 1 | -0/+12 |
|\ | | | | | ci: Add custom titlebars for mainline and patreon | ||||
| * | common: Add additional SCM revision fields | Zach Hilman | 2019-10-05 | 1 | -0/+12 |
| | | |||||
* | | Shader_Ir: Refactor Decompilation process and allow multiple decompilation modes. | Fernando Sahmkow | 2019-10-05 | 1 | -0/+2 |
| | | |||||
* | | shader_ir: Corrections to outward movements and misc stuffs | Fernando Sahmkow | 2019-10-05 | 1 | -0/+4 |
|/ | |||||
* | cmake: Add SCM detection for Azure | Zach Hilman | 2019-09-22 | 1 | -0/+3 |
| | |||||
* | shader_ir: Implement VOTE | ReinUsesLisp | 2019-08-21 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement VOTE using Nvidia's intrinsics. Documentation about these can be found here https://developer.nvidia.com/reading-between-threads-shader-intrinsics Instead of using portable ARB instructions I opted to use Nvidia intrinsics because these are the closest we have to how Tegra X1 hardware renders. To stub VOTE on non-Nvidia drivers (including nouveau) this commit simulates a GPU with a warp size of one, returning what is meaningful for the instruction being emulated: * anyThreadNV(value) -> value * allThreadsNV(value) -> value * allThreadsEqualNV(value) -> true ballotARB, also known as "uint64_t(activeThreadsNV())", emits VOTE.ANY Rd, PT, PT; on nouveau's compiler. This doesn't match exactly to Nvidia's code VOTE.ALL Rd, PT, PT; Which is emulated with activeThreadsNV() by this commit. In theory this shouldn't really matter since .ANY, .ALL and .EQ affect the predicates (set to PT on those cases) and not the registers. | ||||
* | shader_ir: Implement a new shader scanner | Fernando Sahmkow | 2019-07-09 | 1 | -0/+2 |
| | |||||
* | texture_cache: Address Feedback | Fernando Sahmkow | 2019-07-05 | 1 | -0/+1 |
| | |||||
* | shader: Decode SUST and implement backing image functionality | ReinUsesLisp | 2019-06-21 | 1 | -0/+1 |
| | |||||
* | cmake: Add missing shader hash file entries | ReinUsesLisp | 2019-06-07 | 1 | -0/+3 |
| | |||||
* | common: Extract UUID to its own class | Zach Hilman | 2019-04-25 | 1 | -0/+2 |
| | | | Since the Mii database uses UUIDs very similar to the Accounts database, it makes no sense to not share code between them. | ||||
* | common/zstd_compression: Add Zstandard wrapper | unknown | 2019-03-29 | 1 | -0/+2 |
| | |||||
* | common: Link libzstd_static | unknown | 2019-03-29 | 1 | -1/+1 |
| | |||||
* | Addressed feedback | unknown | 2019-03-29 | 1 | -2/+2 |
| | |||||
* | data_compression: Move LZ4 compression from video_core/gl_shader_disk_cache to common/data_compression | unknown | 2019-03-29 | 1 | -0/+3 |
| | |||||
* | Implement a MultiLevelQueue | Fernando Sahmkow | 2019-03-27 | 1 | -0/+1 |
| | |||||
* | common/CMakeLists: Amend boost dependency | Lioncash | 2019-03-21 | 1 | -1/+1 |
| | | | | | | | When #2247 was created, thread_queue_list.h was the only user of boost-related code, however #2252 moved the page table struct into common, which makes use of Boost.ICL, so we need to add the dependency to the common library's link interface again. | ||||
* | Merge pull request #2247 from lioncash/include | bunnei | 2019-03-21 | 1 | -1/+1 |
|\ | | | | | common/thread_queue_list: Remove unnecessary dependency on boost | ||||
| * | common/thread_queue_list: Remove unnecessary dependency on boost | Lioncash | 2019-03-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | We really don't need to pull in several headers of boost related machinery just to perform the erase-remove idiom (particularly with C++20 around the corner, which adds universal container std::erase and std::erase_if, which we can just use instead). With this, we don't need to link in anything boost-related into common. | ||||
* | | core: Move PageTable struct into Common. | bunnei | 2019-03-17 | 1 | -0/+4 |
| | | |||||
* | | Merge pull request #2129 from FernandoS27/cntpct | bunnei | 2019-03-17 | 1 | -0/+2 |
|\ \ | |/ |/| | Correct CNTPCT from using CPU Cycles to using Clock Cycles | ||||
| * | Implement 128 bits Unsigned Integer Multiplication and Division. | Fernando Sahmkow | 2019-02-16 | 1 | -0/+2 |
| | | |||||
* | | shader/decode: Split memory and texture instructions decoding | ReinUsesLisp | 2019-02-26 | 1 | -0/+1 |
|/ | |||||
* | cmake: Fix title bar issue | ReinUsesLisp | 2019-02-07 | 1 | -1/+14 |
| | |||||
* | cmake: Use CMAKE_COMMAND instead of "cmake" | Frederic L | 2019-02-07 | 1 | -1/+1 |
| | | | Co-Authored-By: ReinUsesLisp <reinuseslisp@airmail.cc> | ||||
* | gl_shader_disk_cache: Invalidate shader cache changes with CMake hash | ReinUsesLisp | 2019-02-07 | 1 | -39/+53 |
| | |||||
* | common: Add basic bit manipulation utility function to Common | Lioncash | 2018-12-21 | 1 | -0/+1 |
| | |||||
* | common: Remove bit_set.h | Lioncash | 2018-11-22 | 1 | -1/+0 |
| | | | | | | | This is an analog of BitSet from Dolphin that was introduced to allow iterating over a set of bits. Given it's currently unused, and given that std::bitset exists, we can remove this. If it's ever needed in the future it can be brought back. | ||||
* | common: Remove dependency on xbyak | Lioncash | 2018-11-21 | 1 | -5/+0 |
| | | | | | | | Xbyak is currently entirely unused. Rather than carting it along, remove it and get rid of a dependency. If it's ever needed in the future, then it can be re-added (and likely be more up to date at that point in time). | ||||
* | common: Remove memory_util.cpp/.h | Lioncash | 2018-10-23 | 1 | -2/+0 |
| | | | | | | | | Everything from here is completely unused and also written with the notion of supporting 32-bit architecture variants in mind. Given the Switch itself is on a 64-bit architecture, we won't be supporting 32-bit architectures. If we need specific allocation functions in the future, it's likely more worthwhile to new functions for that purpose. | ||||
* | Remove "#" in the version number | fearlessTobi | 2018-10-06 | 1 | -1/+1 |
| | | | | So that people can stop using it in issue/pr comments and randomly link some other issue/pr unintentionally. | ||||
* | Port web_service from Citra | fearlessTobi | 2018-10-02 | 1 | -0/+3 |
| | |||||
* | common: Implement a ring buffer | MerryMage | 2018-09-08 | 1 | -0/+1 |
| | |||||
* | Better Title Bar Display | CaptV0rt3x | 2018-09-07 | 1 | -5/+19 |
| | |||||
* | Merge pull request #1005 from DarkLordZach/registered-fmt | bunnei | 2018-08-16 | 1 | -0/+2 |
|\ | | | | | file_sys: Add support for registration format | ||||
| * | common: Move hex string processing to separate file | Zach Hilman | 2018-08-12 | 1 | -0/+2 |
| | | |||||
* | | common: Remove unused old breakpoint source files | Lioncash | 2018-08-15 | 1 | -2/+0 |
|/ | | | | | | | These currently aren't used and contain commented out source code that corresponds to Dolphin's JIT. Given our CPU code is organized quite differently, we shouldn't be keeping this around (at the moment it just adds to compile times marginally). | ||||
* | common: Remove synchronized_wrapper.h | Lioncash | 2018-07-21 | 1 | -1/+0 |
| | | | | This is entirely unused in the codebase. | ||||
* | common: Remove chunk_file.h and linear_disk_cache.h | Lioncash | 2018-04-26 | 1 | -2/+0 |
| | | | | These are unused (and given chunk_file references Dolphin's >SVN< I doubt they were going to be used). | ||||
* | common: Remove code_block.h | Lioncash | 2018-04-20 | 1 | -1/+0 |
| | | | | | We use dynarmic, so this is unued. Anything else we need will likely use Xbyak, so this header isn't necessary any more. | ||||
* | common: Port cityhash code from Citra. | bunnei | 2018-04-14 | 1 | -1/+2 |
| | |||||
* | Merge pull request #262 from daniellimws/fmtlib-macros | bunnei | 2018-04-03 | 1 | -1/+1 |
|\ | | | | | Logging: Add fmtlib-based macros | ||||
| * | Logging: Create logging macros based on fmtlib | Daniel Lim Wee Soong | 2018-03-22 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | Add a new set of logging macros based on fmtlib Similar but not exactly the same as https://github.com/citra-emu/citra/pull/3533 Citra currently uses a different version of fmt, which does not support FMT_VARIADIC so make_args is used instead. On the other hand, yuzu uses fmt 4.1.0 which doesn't have make_args yet so FMT_VARIADIC is used. | ||||
* | | CMake: Set EMU_ARCH_BITS in CMakeLists.txt | N00byKing | 2018-03-21 | 1 | -1/+0 |
|/ | |||||
* | Fix spelling error in CMakeLists | Matthew Brener | 2018-01-21 | 1 | -1/+1 |
| | | | Minor spelling error of its --> it's | ||||
* | CMakeLists: Derive the source directory grouping from targets themselves | Lioncash | 2018-01-18 | 1 | -63/+57 |
| | | | | | Removes the need to store to separate SRC and HEADER variables, and then construct the target in most cases. | ||||
* | Minor cleanup | MerryMage | 2018-01-14 | 1 | -1/+1 |
| | |||||
* | CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119) | B3n30 | 2018-01-09 | 1 | -0/+1 |
| | | | | * CoreTiming: New CoreTiming; Add Test for CoreTiming | ||||
* | CMake: Create INTERFACE targets for microprofile and nihstro | Yuri Kunde Schlesner | 2017-05-28 | 1 | -1/+1 |
| | |||||
* | CMake: Use IMPORTED target for Boost | Yuri Kunde Schlesner | 2017-05-28 | 1 | -0/+1 |
| | |||||
* | CMake: Correct inter-module dependencies and library visibility | Yuri Kunde Schlesner | 2017-05-28 | 1 | -1/+1 |
| | | | | | | | | | | Modules didn't correctly define their dependencies before, which relied on the frontends implicitly including every module for linking to succeed. Also changed every target_link_libraries call to specify visibility of dependencies to avoid leaking definitions to dependents when not necessary. | ||||
* | Move framebuffer_layout from Common to Core | Yuri Kunde Schlesner | 2017-05-28 | 1 | -2/+0 |
| | | | | | | This removes a dependency inversion between core and common. It's also the proper place for the file since it makes screen layout decisions specific to the 3DS. | ||||
* | common: Add a generic interface for logging telemetry fields. | bunnei | 2017-05-25 | 1 | -0/+2 |
| | |||||
* | Remove unused symbols code | Yuri Kunde Schlesner | 2017-05-08 | 1 | -2/+0 |
| | |||||
* | Common: add ParamPackage | wwylele | 2017-03-01 | 1 | -0/+2 |
| | |||||
* | Merge pull request #2587 from yuriks/status-bar | Yuri Kunde Schlesner | 2017-02-27 | 1 | -2/+0 |
|\ | | | | | Replace built-in Profiler with indicators in status bar | ||||
| * | Remove built-in (non-Microprofile) profiler | Yuri Kunde Schlesner | 2017-02-27 | 1 | -2/+0 |
| | | |||||
* | | Gui: Change title bar to include build name | James Rowe | 2017-02-23 | 1 | -0/+23 |
|/ | | | | | Nightly builds now have "Citra Nightly" in the titlebar Bleeding edge builds now have "Citra Bleeding Edge" in the titlebar | ||||
* | Common/x64: remove legacy emitter and abi (#2504) | Weiyi Wang | 2017-01-31 | 1 | -4/+1 |
| | | | These are not used any more since we moved shader JIT to xbyak. | ||||
* | Common: add Quaternion | wwylele | 2016-12-26 | 1 | -0/+1 |
| | |||||
* | core: Move emu_window and key_map into core | MerryMage | 2016-12-23 | 1 | -4/+0 |
| | | | | * Removes circular dependences (common should not depend on core) | ||||
* | 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 |