Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-28 | Service/BCAT: add module and services | mailwl | |
2018-05-01 | vector_math: Ensure members are always initialized | Lioncash | |
Ensures that values are always in a well-defined state. | |||
2018-04-29 | Merge pull request #424 from lioncash/string | bunnei | |
string_util: Remove StringFromFormat() and related functions | |||
2018-04-29 | string_util: Remove StringFromFormat() and related functions | Lioncash | |
Given we utilize fmt, we don't need to provide our own functions for formatting anymore | |||
2018-04-29 | file_util: Make move constructor/assignment operator and related functions ↵ | Lioncash | |
noexcept Without this, it's possible to get compilation failures in the (rare) scenario where a container is used to store a bunch of live IOFile instances, as they may be using std::move_if_noexcept under the hood. Given these definitely don't throw exceptions this is also not incorrect to add either. | |||
2018-04-29 | file_util: Add static assertions to ReadBytes() and WriteBytes() | Lioncash | |
Ensure that the actual types being passed in are trivially copyable. The internal call to ReadArray() and WriteArray() will always succeed, since they're passed a pointer to char* which is always trivially copyable. | |||
2018-04-28 | file_util: Remove compiler version checks around is_trivially_copyable() | Lioncash | |
The minimum clang/GCC versions we support already support this. We can also remove is_standard_layout(), as fread and fwrite only require the type to be trivially copyable. | |||
2018-04-27 | log: Remove old logging macros and functions | Lioncash | |
Now that the old macros are no longer used, we can remove all functionality related to them. | |||
2018-04-27 | general: Convert assertion macros over to be fmt-compatible | Lioncash | |
2018-04-27 | Merge pull request #380 from ogniK5377/service-impl | bunnei | |
Implemented some useful interfaces needed for games. | |||
2018-04-26 | Switched to NGLOG_WARNING | David Marcec | |
2018-04-26 | common: Move logging macros over to new fmt-capable macros where applicable | Lioncash | |
2018-04-26 | Merge branch 'master' of https://github.com/yuzu-emu/yuzu into service-impl | David Marcec | |
2018-04-26 | Added PREPO to logging backend, Removed comments from SaveReportWithUser | David Marcec | |
2018-04-26 | common: Remove chunk_file.h and linear_disk_cache.h | Lioncash | |
These are unused (and given chunk_file references Dolphin's >SVN< I doubt they were going to be used). | |||
2018-04-22 | GetIUserInterface->CreateUserInterface, Added todos and stub logs. ↵ | David Marcec | |
Playreport->PlayReport. | |||
2018-04-20 | Merge pull request #367 from lioncash/clamp | bunnei | |
math_util: Remove the Clamp() function | |||
2018-04-20 | Merge pull request #361 from lioncash/common | bunnei | |
common_types: Minor changes | |||
2018-04-20 | math_util: Remove the Clamp() function | Lioncash | |
C++17 adds clamp() to the standard library, so we can remove ours in favor of it. | |||
2018-04-20 | Merge pull request #364 from lioncash/thread-local | bunnei | |
common/thread: Remove unnecessary feature checking for thread_local | |||
2018-04-20 | Merge pull request #362 from lioncash/snprintf | bunnei | |
common_funcs: Remove check for VS versions that we don't even support | |||
2018-04-20 | Merge pull request #363 from lioncash/array-size | bunnei | |
common_funcs: Remove ARRAY_SIZE macro | |||
2018-04-20 | Merge pull request #366 from lioncash/vec | bunnei | |
vector_math: Remove AsArray() and Write() functions from Vec[2,3,4] | |||
2018-04-19 | vector_math: Remove AsArray() and Write() functions from Vec[2,3,4] | Lioncash | |
These are all unused and the Write() ones should arguably not even be in the interface. There are better ways to provide this if we ever need it (like iterators). | |||
2018-04-19 | common: Remove code_block.h | Lioncash | |
We use dynarmic, so this is unued. Anything else we need will likely use Xbyak, so this header isn't necessary any more. | |||
2018-04-19 | common/thread: Remove unnecessary feature checking for thread_local | Lioncash | |
Every compiler we require already supports it. | |||
2018-04-19 | common_funcs: Remove ARRAY_SIZE macro | Lioncash | |
C++17 has non-member size() which we can just call where necessary. | |||
2018-04-19 | common_funcs: Remove check for VS versions that we don't even support | Lioncash | |
We don't support any VS versions that don't already have snprintf in the standard library implementation. | |||
2018-04-19 | common_types: Convert typedefs to using aliases | Lioncash | |
May as well while we're making changes to this file. | |||
2018-04-19 | common_types: Remove unnecessary check for whether or not__func__ is defined | Lioncash | |
VS has supported this for quite a while. | |||
2018-04-17 | bit_field: Remove is_pod check, add is_trivially_copyable_v. | bunnei | |
2018-04-13 | common: Port cityhash code from Citra. | bunnei | |
2018-04-13 | bit_field: Make all methods constexpr. | bunnei | |
2018-04-05 | Update fmtlib to fix msvc warnings | James Rowe | |
Additionally, when updating fmtlib, there was a change in fmtlib broke how the old logging macro was overloaded, so this works around that by just naming the fmtlib macro impl something different | |||
2018-04-03 | logging: Change FmtLogMessage to use variadic template instead of FMT_VARIADIC | Daniel Lim Wee Soong | |
Due to premature merging of #262 I think the build may be failing right now. Should merge this ASAP to fix it. | |||
2018-04-02 | Merge pull request #262 from daniellimws/fmtlib-macros | bunnei | |
Logging: Add fmtlib-based macros | |||
2018-04-02 | Merge pull request #276 from N00byKing/acctoyuzu | bunnei | |
Change Telemetry Names to yuzu and remove links to citra | |||
2018-04-03 | common: fix swap functions on Bitrig and OpenBSD | Daniel Lim Wee Soong | |
swap{16,32,64} are defined as macros on the two, but client code tries to invoke them as Common::swap{16,32,64}, which naturally doesn't work. This hack redefines the macros as inline functions in the Common namespace: the bodies of the functions are the same as the original macros, but relying on OS-specific implementation details like this is of course brittle. | |||
2018-03-29 | service: Add NFP module interface. | bunnei | |
service: Initialize NFP service. Log: Add NFP service as a log subtype. | |||
2018-03-27 | telemetry.h: Reword comment from citra to yuzu | N00byKing | |
2018-03-26 | log.h: Change comment from citra to yuzu | N00byKing | |
2018-03-26 | file_util.h: Update Comment from citra to yuzu | N00byKing | |
2018-03-26 | cpu_detect.cpp: Change comment from citra to yuzu | N00byKing | |
2018-03-23 | Service/SSL: add ssl service | mailwl | |
2018-03-22 | Remove dependency chrono | Daniel Lim Wee Soong | |
Earlier chrono was included but after some code changed it was no longer needed Forgot to remove it so I'm removing it now | |||
2018-03-22 | Logging: Create logging macros based on fmtlib | Daniel Lim Wee Soong | |
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. | |||
2018-03-22 | Service/spl: add module and services | mailwl | |
2018-03-21 | CMake: Set EMU_ARCH_BITS in CMakeLists.txt | N00byKing | |
2018-03-20 | Service: add fatal:u, fatal:p services | mailwl | |
2018-02-20 | Merge pull request #206 from mailwl/aoc-listaddoncontent | bunnei | |
Service/AOC: stub ListAddOnContent function |