| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | |/ / / / / / / / / /
| |/| | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Mimics hardware behavior.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
vm_manager: Make vma_map private
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Given memory should always be expected to be valid during normal
execution, this should be a debug assertion, rather than a check in
regular builds.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
This was only ever public so that code could check whether or not a
handle was valid or not. Instead of exposing the object directly and
allowing external code to potentially mess with the map contents, we
just provide a member function that allows checking whether or not a
handle is valid.
This makes all member variables of the VMManager class private except
for the page table.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| |_|_|_|_|/ / / / / / / /
|/| | | | | | | | | | | | |
gl_shader_decompiler: TLDS/TLD4/TLD4S Reworked reflecting the source registers, bugs fixed and modularize.
|
| | |/ / / / / / / / / /
| |/| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
service/ldr: Amend layouts of NRO and NRR headers
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
The first word is just a padding byte, it's not an actual entry
instruction. Also renames the rest of the entries according to
SwitchBrew.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
The padding after the magic signature value should be 12 bytes rather
than 28 bytes. The other 16 should be placed after the title ID pattern.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
hle/service, hle/sm: Minor cleanup
|
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
Combines the two into one, shortening the amount of code here.
|
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
Only one usage of the specified objects made use of the lack of
namespacing. Given the low usage, we can just remove these.
|
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
These auto-deduce the result based off its arguments, so there's no need
to do that work for the compiler, plus, the function return value itself
already indicates what we're returning.
|
| | |_|/ / / / / / / / / /
| |/| | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Gets rid of the need to keep the variables separate from their actual
initialization spots.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
Backport review comment from citra-emu/citra#4418
|
| | |_|/ / / / / / / / / /
| |/| | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Original reason:
As Windows multi-byte character codec is unspecified while we always assume std::string uses UTF-8 in our code base, this can output gibberish when the string contains non-ASCII characters. ::OutputDebugStringW combined with Common::UTF8ToUTF16W is preferred here.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / / / /
|/| | | | | | | | | | | | |
loaders: Make GetFileType() a const qualified member function
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Similarly, here we can avoid doing unnecessary work twice by retrieving
the file type only once and comparing it against relevant operands,
avoiding potential unnecessary object construction/destruction.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
While GetFileType() is indeed a getter function, that doesn't mean it's
a trivial function, given some case require reading from the data or
constructing other objects in the background. Instead, only do necessary
work once.
|
| | |_|/ / / / / / / / /
| |/| | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
No implementations actually modify instance state (and it would be
questionable to do that in the first place given the name), so we can
make this a const member function.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
configuration/config: Use an intermediary variable for accessing players
|
| |/ / / / / / / / / / /
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Avoids typing the same long accessor just to retrieve player attributes.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
system_archive: Implement open source NgWord2
|
| | |_|_|/ / / / / / / /
| |/| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \
| |_|_|_|_|_|_|/ / / / /
|/| | | | | | | | | | | |
kernel/svc: Correct behavior of svcResetSignal()
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
While partially correct, this service call allows the retrieved event to
be null, as it also uses the same handle to check if it was referring to
a Process instance. The previous two changes put the necessary machinery
in place to allow for this, so we can simply call those member functions
here and be done with it.
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Process instances can be waited upon for state changes. This is also
utilized by svcResetSignal, which will be modified in an upcoming
change. This simply puts all of the WaitObject related machinery in
place.
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
svcResetSignal relies on the event instance to have already been
signaled before attempting to reset it. If this isn't the case, then an
error code has to be returned.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
gl_rasterizer: Implement a framebuffer cache
|
| | | | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| |_|_|/ / / / / / / / / /
|/| | | | | | | | | | | | |
gl_shader_decompiler: Implement TEXS.F16
|
| | | | | | | | | | | | | |
|
| | |_|/ / / / / / / / /
| |/| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
system_archive: Use a regular function pointer instead of std::function for the file-scope system archive array
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
We've already given the constant to the vector itself, so we don't need
to re-hardcode it in the array.
|
| |/ / / / / / / / / / /
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
This allows the array to be constexpr. std::function is also allowed to
allocate memory, which makes its constructor non-trivial, we definitely
don't want to have all of these execute at runtime, taking up time
before the application can actually load.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / / / / /
|/| | | | | | | | | | | |
service/ldr: Deduplicate instruction cache clearing code in LoadNro()
|
| | |_|_|/ / / / / / /
| |/| | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
We don't need to specify all of the ARM interfaces explicitly.
|
|\ \ \ \ \ \ \ \ \ \ \
| |_|/ / / / / / / / /
|/| | | | | | | | | | |
Perf: Call shrink_to_fit after page-table vector resizing to actually reduce vector capacity
|
|/ / / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / /
|/| | | | | | | | | |
Convert high-frequency LUT arrays from constexpr to static constexpr
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
In some constexpr functions, msvc is building the LUT at runtime
(pushing each element onto the stack) out of an abundance of caution. Moving the
arrays into be file-scoped constexpr's avoids this and turns the functions into
simple look-ups as intended.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
file_sys: Implement open source system archives
|
| | | | | | | | | | | |
|
| | | | | | | | | | | |
|
| | | | | | | | | | | |
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Allows using constexpr/static const data with VFS.
|
|\ \ \ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / / / /
|/| | | | | | | | | | |
yuzu/game_list_worker: Minor cleanup and code deduplication
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Avoids potentially allocating a std::string instance when it isn't
needed.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Avoids duplicating the same code twice verbatim.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
We don't need to call out to our own file handling functions when we're
going to construct a QFileInfo instance right after it. We also don't
need to convert to a std::string again just to compare the file
extension.
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
file_sys/registered_cache: Eliminate variable shadowing
|
| |/ / / / / / / / / /
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Also inverts if statements where applicable to allow unindenting code a
little bit.
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
crypto/key_manager: Remove unused variable in GetTicketblob()
|
| |/ / / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \ \
| |_|_|/ / / / / / / /
|/| | | | | | | | | | |
kernel/svc: Implement svcCreateEvent and svcSignalEvent
|
| | | | | | | | | | | |
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
This function simply does a handle table lookup for a writable event
instance identified by the given handle value. If a writable event
cannot be found for the given handle, then an invalid handle error is
returned. If a writable event is found, then it simply signals the
event, as one would expect.
|
|/ / / / / / / / / /
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
svcCreateEvent operates by creating both a readable and writable event
and then attempts to add both to the current process' handle table.
If adding either of the events to the handle table fails, then the
relevant error from the handle table is returned.
If adding the readable event after the writable event to the table
fails, then the writable event is removed from the handle table and the
relevant error from the handle table is returned.
Note that since we do not currently test resource limits, we don't check
the resource limit table yet.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
loader/{nro, nso}: Remove dependency on the System class
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Similar to the NRO changes, we can also pass the process explicitly as a
parameter from Load instead of indirecting through the System class.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
This simply acts as a forwarding function for the Load() function, so
this doesn't need to be directly exposed.
|
| | |_|_|_|/ / / / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Load() is already given the process instance as a parameter, so instead
of coupling the class to the System class, we can just forward that
parameter to LoadNro()
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
kernel/object: Amend handle types to distinguish between readable and writable events
|
| | |_|_|_|_|_|/ / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Two kernel object should absolutely never have the same handle ID type.
This can cause incorrect behavior when it comes to retrieving object
types from the handle table. In this case it allows converting a
WritableEvent into a ReadableEvent and vice-versa, which is undefined
behavior, since the object types are not the same.
This also corrects ClearEvent() to check both kernel types like the
kernel itself does.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
* Rewrited TEX/TEXS (TEX Scalar).
* Style fixes.
* Styles issues.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
kernel/svc: Implement the resource limit svcGetInfo option
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Another hold-over from Citra.
|
| |/ / / / / / / / /
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Allows a process to register the resource limit as part of its handle
table.
|
|\ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / /
|/| | | | | | | | | |
Don't try to route PFIFO methods (0-0x40) to the other engines.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
This is a leftover from #1792
|
| | |/ / / / / / /
| |/| | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
[Kernel::CreateThread] Match format specifiers to LOG_TRACE's arguments
|
|/ / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \
| |_|_|_|_|/ / / /
|/| | | | | | | | |
svc: Reorganize svcGetInfo, handle more error cases for existing implemented info categories
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
The kernel uses the handle table of the current process to retrieve the
process that should be used to retrieve certain information. To someone
not familiar with the kernel, this might raise the question of "Ok,
sounds nice, but doesn't this make it impossible to retrieve information
about the current process?".
No, it doesn't, because HandleTable instances in the kernel have the
notion of a "pseudo-handle", where certain values allow the kernel to
lookup objects outside of a given handle table. Currently, there's only
a pseudo-handle for the current process (0xFFFF8001) and a pseudo-handle
for the current thread (0xFFFF8000), so to retrieve the current process,
one would just pass 0xFFFF8001 into svcGetInfo.
The lookup itself in the handle table would be something like:
template <typename T>
T* Lookup(Handle handle) {
if (handle == PSEUDO_HANDLE_CURRENT_PROCESS) {
return CurrentProcess();
}
if (handle == PSUEDO_HANDLE_CURRENT_THREAD) {
return CurrentThread();
}
return static_cast<T*>(&objects[handle]);
}
which, as is shown, allows accessing the current process or current
thread, even if those two objects aren't actually within the HandleTable
instance.
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Our implementation of svcGetInfo was slightly incorrect in that we
weren't doing proper error checking everywhere. Instead, reorganize it
to be similar to how the kernel seems to do it.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
yuzu/configuration: Minor clean-up related changes
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
These slots are only ever attached to event handling mechanisms within
the class itself, they're never used externally. Because of this, we can
make the functions private.
This also removes redundant usages of the private access specifier.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Resolves trivial compiler warnings.
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The previous code could potentially be a compilation issue waiting to
occur, given we forward declare the type for a std::unique_ptr. If the
complete definition of the forward declared type isn't visible in a
translation unit that the class is used in, then it would fail to
compile.
Defaulting the destructor in a cpp file ensures the std::unique_ptr's
destructor is only invoked where its complete type is known.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
filesystem: De-globalize registered_cache_union
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
We can just return a new instance of this when it's requested. This only
ever holds pointers to the existing registed caches, so it's not a large
object. Plus, this also gets rid of the need to keep around a separate
member function just to properly clear out the union.
Gets rid of one of five globals in the filesystem code.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
gl_shader_decompiler: Introduce a scoped object and style changes
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
kernel: Divide Event into ReadableEvent and WritableEvent
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Used to store ReadableEvents of all events on the system.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
More hardware accurate. On the actual system, there is a differentiation between the signaler and signalee, they form a client/server relationship much like ServerPort and ClientPort.
|
| | |_|_|_|/ / / /
| |/| | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
service/fsp_srv: Implement CleanDirectoryRecursively
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Ensures that read only indeed means read only.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
This is the same behavior-wise as DeleteDirectoryRecursively, with the
only difference being that it doesn't delete the top level directory in
the hierarchy, so given:
root_dir/
- some_dir/
- File.txt
- OtherFile.txt
The end result is just:
root_dir/
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
service/audio/audout_u: Amend constructor initialization list order
|
| | |_|_|/ / / / / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Orders the constructor initializer list the same way the members of the
class are declared. Prevents -Wreorder warnings
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Fixed crash with SetNpadMode
|
| | |_|_|_|/ / / / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
fixed crash due to handheld
|
|\ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / /
|/| | | | | | | | | |
hle/service: Update function tables for erpt:c and usb's IClientEpSession
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Updates the function table for IClientEpSession based off information
provided by SwitchBrew.
|
|/ / / / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Updates the function table according to information provided by
SwitchBrew.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
gl_rasterizer: Enable clip distances when set in register and in shader
|
| | |_|/ / / / / /
| |/| | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
gl_shader_manager: Update pipeline when programs have changed
|
| |/ / / / / / / / |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
video_core: Minor style changes
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | |_|_|/ / / / /
| |/| | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
gl_rasterizer_cache: Fix several surface copy issues.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
- Fixes issues with Breath of the Wild with use_accurate_gpu_emulation setting.
|
| |/ / / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
- BlitSurface with different texture targets is inherently broken.
- When target is the same, we can just use FastCopySurface.
- Fixes rendering issues with Breath of the Wild.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
UI: Remove border from Game List
|
| | |_|_|/ / / / /
| |/| | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / /
|/| | | | | | | | |
Services/VI: Dereferencing an uninitialized std::optional is undefined behavior.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Assert that it is not empty before using it in the DequeueBuffer wait callback.
|
| |/ / / / / / /
|/| | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
A non-existent parameter was left in some formatting calls (the logging
macro for which only does anything meaningful on debug builds)
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
service/set: Implement MakeLanguageCode
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This code was around prior to the introduction of PushEnum, so convert
it over so we don't need to cast here.
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
This function simply converts a given index into a language code.
|
| |/ / / / /
|/| | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Uncheck automatically joycons docked when docked mode is enable
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | | |
when docked mode is enable
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
Changed logging to be "Log before execution", Added more error logging, all services/svc should now log on some level
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fix clip distance and viewport
|
| | | | | | | | |
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Add Depth Clamp Support
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
npad: Use NPadIdToIndex to prevent invalid array access
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| |_|_|_|_|_|_|/
|/| | | | | | | |
gpu: Rewrite GPU command list processing with DmaPusher class.
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
- More accurate impl., fixes Undertale (among other games).
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Texture decoder: Implemented Tile Width Spacing
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
file_sys/registered_cache: Use regular const references instead of std::shared_ptr for InstallEntry()
|
| | | | | | | | | | |
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
These parameters don't need to utilize a shared lifecycle directly in
the interface. Instead, the caller should provide a regular reference
for the function to use. This also allows the type system to flag
attempts to pass nullptr and makes it more generic, since it can now be
used in contexts where a shared_ptr isn't being used (in other words, we
don't constrain the usage of the interface to a particular mode of
memory management).
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
yuzu/input: Minor changes
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Prevents compiler warnings related to truncation when invoking the
dialog. It's also extremely suspect to use a u8 value here instead of a
more general type to begin with.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
This doesn't depend on any part of the private interface, so it can be
made a non-member internal function.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
std::bind is the pre-C++11 way of doing this.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Orders the elements the way they would actually be initialized in.
Resolves compiler warnings with gcc and clang
|
| | | | | | | | | | | |
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
The common pattern is to put the data members after the function
interface where applicable.
|
| |/ / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
npad: Fix copy/paste error with LED position assignments
|
|/ / / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
profile_manager: Save and load ProfileData from disk
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
The ProfileData is a 0x80-sized structure that stores various pieces of miscellaneous data for the account.
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
control_metadata: Correct typo in language name (Portugese -> Portuguese)
|
| | |/ / / / / / / / /
| |/| | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
While we're at it, organize the array linearly, since clang formats the
array elements quite wide length-wise with the addition of the missing
'u'.
Technically also fixes patch lookup and icon lookup with Portuguese,
though I doubt anyone has actually run into this issue.
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
gl_shader_decompiler: Fixup clip distance index
|
|/ / / / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / /
|/| | | | | | | | | | |
gl_rasterizer: Fixup for #1723.
|
|/ / / / / / / / / /
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
On invalidating the streaming buffer, we need to reupload all vertex buffers.
But we don't need to reconfigure the vertex format.
This was a (silly) misstake in #1723.
Thanks at Rodrigo for discovering the issue.
Fun fact, as configuring the vertex format also invalidate the vertex buffer,
this misstake had no affect on the behavior.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
morton: Fixup compiler warning
|
| | |_|_|/ / / / / /
| |/| | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / / /
|/| | | | | | | | | |
gdbstub: Silence value truncation warning within FpuWrite()
|
| | |_|/ / / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Previously this would cause an implicit truncation warning about
assigning a u64 value to a u32 value without an explicit cast.
|
|\ \ \ \ \ \ \ \ \
| |_|/ / / / / / /
|/| | | | | | | | |
svc: Implement svcCreateResourceLimit, svcGetResourceLimitCurrentValue(), svcGetResourceLimitLimitValue(), and svcSetResourceLimitLimitValue()
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
The opposite of the getter functions, this function sets the limit value
for a particular ResourceLimit resource category, with the restriction
that the new limit value must be equal to or greater than the current
resource value. If this is violated, then ERR_INVALID_STATE is returned.
e.g.
Assume:
current[Events] = 10;
limit[Events] = 20;
a call to this service function lowering the limit value to 10 would be
fine, however, attempting to lower it to 9 in this case would cause an
invalid state error.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This kernel service function is essentially the exact same as
svcGetResourceLimitLimitValue(), with the only difference being that it
retrieves the current value for a given resource category using the
provided resource limit handle, rather than retrieving the limiting
value of that resource limit instance.
Given these are exactly the same and only differ on returned values, we
can extract the existing code for svcGetResourceLimitLimitValue() to
handle both values.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This kernel service function retrieves the maximum allowable value for
a provided resource category for a given resource limit instance. Given
we already have the functionality added to the resource limit instance
itself, it's sufficient to just hook it up.
The error scenarios for this are:
1. If an invalid resource category type is provided, then ERR_INVALID_ENUM is returned.
2. If an invalid handle is provided, then ERR_INVALID_HANDLE is returned (bad thing goes in, bad thing goes out, as one would expect).
If neither of the above error cases occur, then the out parameter is
provided with the maximum limit value for the given category and success
is returned.
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This function simply creates a ResourceLimit instance and attempts to
create a handle for it within the current process' handle table. If the
kernal fails to either create the ResourceLimit instance or create a
handle for the ResourceLimit instance, it returns a failure code
(OUT_OF_RESOURCE, and HANDLE_TABLE_FULL respectively). Finally, it exits
by providing the output parameter with the handle value for the
ResourceLimit instance and returning that it was successful.
Note: We do not return OUT_OF_RESOURCE because, if yuzu runs out of
available memory, then new will currently throw. We *could* allocate the
kernel instance with std::nothrow, however this would be inconsistent
with how all other kernel objects are currently allocated.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Add support for viewport_transfom_enable register
|
| | | | | | | | | |
|
| | |/ / / / / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
gl_rasterizer: Skip VB upload if the state is clean.
|
| | | | | | | | | |
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
* GPU States: Implement Polygon Offset. This is used in SMO all the time.
* Clang Format fixes.
* Initialize polygon_offset in the constructor.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Implemented BRA CC conditional and FSET CC Setting
|
| | |/ / / / / / /
| |/| | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| |_|_|/ / / / / /
|/| | | | | | | | |
gl_shader_decompiler: Implement S2R's Y_DIRECTION
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
gl_shader_decompiler: Implement BFI_IMM_R
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
service/sm: Take std::string by const reference in UnregisterService
|
| | |/ / / / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Avoids the need to create a copy of the std::string instance
(potentially allocating).
The only reason RegisterService takes its argument by value is because
it's std::moved internally.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
gl_shader_decompiler: Implement R2P_IMM
|
| | |/ / / / / / /
| |/| | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Fixed Coordinate Encodings in TEX and TEXS instructions
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
gl_shader_decompiler: Implement clip distances
|
| | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| |_|_|_|_|_|/ / / / /
|/| | | | | | | | | | |
video_core: Move morton functions out of gl_rasterizer_cache
|
| | | | | | | | | | | |
|
| | |_|_|/ / / / / /
| |/| | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
svc: Return ERR_INVALID_ENUM_VALUE from svcGetInfo
|
|/ / / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
nvdrv: Implement/stub DumpGraphicsMemoryInfo and GetStatus.
|
| | |_|/ / / / / / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
- Used by Undertale.
|
|\ \ \ \ \ \ \ \ \ \
| |_|/ / / / / / / /
|/| | | | | | | | | |
memory_manager: Do not allow 0 to be a valid GPUVAddr.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
- Fixes a bug with Undertale using 0 for a render target.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
sm: Implement RegisterService and UnregisterService
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
These are needed by Edizon to boot. They are used to see if a user is using SX OS, as SX OS registers a custom service called 'tx' and attempting to register a service of the same name lets the application know if it is present.
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
filesystem: Clear registered union paths on factory creation
|
| | |_|_|_|_|_|_|_|/ /
| |/| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
Update OpenGL's backend version from 3.3 to 4.3
|
| | | | | | | | | | | | |
|
| | | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Add support for clear_flags register
|
| | |_|_|_|/ / / / / / /
| |/| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
GDBStub Improvements
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
- Add FPU support
- Fix access to TLS
Fix clang-format.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
Report resolution scaling support for vi and am
|
| | | | | | | | | | | | | | |
|
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
Specifying an internal resolution in yuzu now will report the scaled changes to vi and am.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
patch_manager: Add support for applying LayeredFS patches to ExeFS
|
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
The decision was made to name them LayeredExeFS instead of just LayeredFS to differentiate from normal RomFS-based mods. The name may be long/unweildy, but conveys the meaning well.
|
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
This will scan the <mod>/exefs dir for all files and then layer those on top of the game's exefs and use this as the new exefs. This allows for overriding of the compressed NSOs or adding new files. This does use the same dir as IPS/IPSwitch patch, but since the loader will not look for those they are ignored.
|
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
When enabled, all exefs(es) will be copied to yuzu/dump/<title_id>/exefs.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / / / / / / / /
|/| | | | | | | | | | | | | | |
gl_shader_decompiler: Rename cc to condition code and name internal flags
|
| | | | | | | | | | | | | | | |
|
| | | | | | | | | | | | | | | |
|
| | |_|_|_|_|_|_|_|_|_|/ / /
| |/| | | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
shader_cache: Only lock covered instructions.
|
| | |_|_|_|/ / / / / / / / /
| |/| | | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| |_|_|_|_|_|_|_|/ / / / / /
|/| | | | | | | | | | | | | |
software_keyboard: Minor changes
|
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
Uses Qt's built-in interface instead of rolling our own separate one on
top of it. This also fixes a bug in reject() where we were calling
accept() instead of reject().
|
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
std::function instances can potentially allocate. std::moveing them
prevents an avoidable allocation in that case.
|
| |/ / / / / / / / / / / /
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
These aren't required to be public.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
applets: Add StubApplet and use it as fallback when AppletId is not implemented
|
| | | | | | | | | | | | | | |
|
| | |/ / / / / / / / / / /
| |/| | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
This will log all data it receives, log all calls to its methods and push dummy data into both channels on execution.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
core: Relocate CPU core management to its own class
|
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
Keeps the CPU-specific behavior from being spread throughout the main
System class. This will also act as the home to contain member functions
that perform operations on all cores. The reason for this being that the
following pattern is sort of prevalent throughout sections of the
codebase:
If clearing the instruction cache for all 4 cores is necessary:
Core::System::GetInstance().ArmInterface(0).ClearInstructionCache();
Core::System::GetInstance().ArmInterface(1).ClearInstructionCache();
Core::System::GetInstance().ArmInterface(2).ClearInstructionCache();
Core::System::GetInstance().ArmInterface(3).ClearInstructionCache();
This is kind of... well, silly to copy around whenever it's needed.
especially when it can be reduced down to a single line.
This change also puts the basics in place to begin "ungrafting" all of the
forwarding member functions from the System class that are used to
access CPU state or invoke CPU-specific behavior. As such, this change
itself makes no changes to the direct external interface of System. This
will be covered by another changeset.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
common/thread: Minor cleanup
|
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
This is inconsistent with our coding style.
|
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
While admirable as a means to ensure immutability, this has the
unfortunate downside of making the class non-movable. std::move cannot
actually perform a move operation if the provided operand has const data
members (std::move acts as an operation to "slide" resources out of an
object instance). Given Barrier contains move-only types such as
std::mutex, this can lead to confusing error messages if an object ever
contained a Barrier instance and said object was attempted to be moved.
|
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
Simplifies the constructor interfaces for Barrier and Event classes.
|
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
Keeps the non-member interface in one spot instead of split into two
places, making it nicer to locate functions.
|
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
This is also unused and superceded by standard functionality. The
standard library provides std::this_thread::sleep_for(), which provides
a much more flexible interface, as different time units can be used with
it.
|
| | |/ / / / / / / / / / / /
| |/| | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
This is an old function that's no longer necessary. C++11 introduced
proper threading support to the language and a thread ID can be
retrieved via std::this_thread::get_id() if it's ever needed.
|
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
* Added predicate comparison LessEqualWithNan
* oops
* Clang fix
|
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
gl_shader_decompiler: Fix register overwriting on texture calls
|
| |/ / / / / / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
Properly Implemented TXQ Instruction
|
| | |_|/ / / / / / / / / / /
| |/| | | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
nvhost_ctrl_gpu: Implement IoctlGetGpuTime.
|
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
- Used by Undertale.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| |_|_|_|_|_|_|_|_|_|/ / / / /
|/| | | | | | | | | | | | | | |
debug_pad: Avoid loading input for nonexistent buttons (Home and Screenshot)
|
|/ / / / / / / / / / / / / /
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
Prevents memory exceptions when the debug pad is enabled.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
maxwell_3d: Implement alternate blend equations.
|
| |/ / / / / / / / / / / / /
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
- Used by Undertale.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | |
audout_u: Add support for multiple IAudioOut streams.
|
| |/ / / / / / / / / / / / /
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
- Used by Undertale.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / / / / / / /
|/| | | | | | | | | | | | | |
macro_interpreter: Implement AddWithCarry and SubtractWithBorrow.
|
| |/ / / / / / / / / / / /
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
- Used by Undertale.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
Implemented Fast Layered Copy
|
| | |_|_|_|_|_|/ / / / / /
| |/| | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
common: Remove bit_set.h
|
| | |_|_|/ / / / / / / / /
| |/| | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
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.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / / / /
|/| | | | | | | | | | | | |
kernel/handle_table: Minor changes
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
These don't depend on class state, and are effectively implementation
details, so they can go into the cpp file .
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
The previous handle table size is a holdover from Citra. The actual
handle table construct on Horizon only allows for a maximum of 1024
entries.
|
| | |_|_|_|_|_|_|/ / / /
| |/| | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
We don't need to potentially inline the teardown logic of all of the
handle instances.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Use default values for unknown framebuffer pixel format
|
| | |_|_|/ / / / / / / /
| |/| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
gl_shader_decompiler: Use UNIMPLEMENTED when applicable
|
| | | | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| |_|_|_|_|/ / / / / / / /
|/| | | | | | | | | | | | |
am/applets: Minor cleanup
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
The accessor should be doing just that, accessing, rather than retaining
the lifetime of the data broker as well.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Also resolve places where includes should have been provided, but
weren't.
|
| | |/ / / / / / / / / /
| |/| | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Avoids wonky wrapping and makes it nicer to read.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
gl_shader_decompiler: Remove UNREACHABLE when setting RZ
|
| | | | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
common/math_util: Minor cleanup
|
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
Gets rid of the need to use typename to access the ::type alias.
|
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
Allows objects that contain rectangle instances to be constexpr
constructible as well.
|
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | |
| | | | | | | | | | | | | | |
const/constexpr variables have internal linkage by default.
|
| | |_|_|/ / / / / / / / /
| |/| | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
This hasn't been used since the project started, so we may as well get
rid of it to keep it from bit rotting.
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / / / /
|/| | | | | | | | | | | | |
common: Remove depencency on xbyak
|
|/ / / / / / / / / / / /
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
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).
|
|\ \ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / / /
|/| | | | | | | | | | | |
maxwell_3d: Initialize rasterizer color mask registers as enabled.
|
| | |/ / / / / / / / /
| |/| | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
- Fixes rendering regression with Sonic Mania.
|
|\ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / /
|/| | | | | | | | | | |
am: Correct build failure
|
|/ / / / / / / / / /
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
The interface for shared memory was changed, but another commit was
merged that relied on the (previously public) internals of SharedMemory.
This amends that discrepancy.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
kernel/shared_memory: Make data members private, plus minor interface changes
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Both member functions assume the passed in target process will not be
null. Instead of making this assumption implicit, we can change the
functions to be references and enforce this at the type-system level.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Given this doesn't mutate instance state, we can provide a
const-qualified variant as well.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Keeps the interface consistent with the regular Create() function.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Makes the interface nicer to use in terms of 64-bit code, as it makes it
less likely for one to get truncation warnings (and also makes sense in
the context of the rest of the interface where 64-bit types are used for
sizes and offsets
|
| | |/ / / / / / / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Rather than allow unfettered access to the class internals, we hide all
members by default and create and API that other code can operate
against.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
ldr: Clean up error codes
|
| |/ / / / / / / / /
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
The separate enum isn't particularly necessary here, and the values can
just be directly put into the ResultCode instances, given the names are
also self-documenting here.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
kernel/process: Move <random> include to the cpp file
|
| | |/ / / / / / / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
<random> isn't necesary directly within the header and can be placed in
the cpp file where its needed. Avoids propagating random generation
utilities via a header file.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
common/assert: Make the UNIMPLEMENTED macro properly assert
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Currently, there's no way to specify if an assertion should
conditionally occur due to unimplemented behavior. This is useful when
something is only partially implemented (e.g. due to ongoing RE work).
In particular, this would be useful within the graphics code.
The rationale behind this is it allows a dev to disable unimplemented
feature assertions (which can occur in an unrelated work area), while
still enabling regular assertions, which act as behavior guards for
conditions or states which must not occur. Previously, the only way a
dev could temporarily disable asserts, was to disable the regular
assertion macros, which has the downside of also disabling, well, the
regular assertions which hold more sanitizing value, as opposed to
unimplemented feature assertions.
|
| |/ / / / / / / / /
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Currently, this was only performing a logging call, which doesn't
actually invoke any assertion behavior. This is unlike
UNIMPLEMENTED_MSG, which *does* assert.
This makes the expected behavior uniform across both macros.
|
|\ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / /
|/| | | | | | | | | |
file_sys/card_image: Provide named members for the GamecardInfo struct
|
|/ / / / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Fills out the struct according to information provided by SwitchBrew
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
am: Implement HLE software keyboard applet
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
This cleans up most of the callbacks and such in the Applets::Applet interface, while also properly implementing all four data channels.
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
a
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Allows the game to verify and send a message to the frontend.
|
| | | | | | | | | | |
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Allows using Qt provider over default.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Allows use of software keyboard applet and future applets to be easily added by adding enum ID and a switch case.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Implements all of the features of the keyboard, including length, default text, character validation, and UTF-16 character support.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Provides a middleman between the Frontend provider class and the expected AM::Applets::Applet class needed by ILibraryAppletAccessor
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Default implementation will return "yuzu" for any string. GUI clients (or CLI) can implement the Frontend::SoftwareKeyboardApplet class and register an instance to provide functionality.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Adds an Initialize and Execute methods which are used by the ILibraryAppletAccessor to start and control the applet.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Now starts the applet provided in constructor.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Used by software keyboard applet for data transfer.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
std::stack was no longer suitable for non-trivial operations
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Needs to be accessible by applet files.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Writes to an AM::IStorage object through an IStorageAccessor will now be preserved once the accessor is destroyed.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Creates an AM::IStorage object with the contents of the transfer memory located at the handle provided.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Needed as most all software keyboard functions use fixed-length UTF16 string buffers.
|
| | |/ / / / / / /
| |/| | | | | | |
| | | | | | | | | |
Seems to be used and created identically to SharedMemory, so just reuse that.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
lm: Implement SetDestination by doing nothing
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
This service function was likely intended to be a way to redirect where
the output of a log went. e.g. Firing a log over a network, dumping over
a tunneling session, etc.
Given we always want to see the log and not change its output. It's one
of the lucky service functions where the easiest implementation is to
just do nothing at all and return success.
|
|\ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / /
|/| | | | | | | | | |
kernel/resource_limit: Clean up interface
|
|/ / / / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Cleans out the citra/3DS-specific implementation details that don't
apply to the Switch. Sets the stage for implementing ResourceLimit
instances properly.
While we're at it, remove the erroneous checks within CreateThread() and
SetThreadPriority(). While these are indeed checked in some capacity,
they are not checked via a ResourceLimit instance.
In the process of moving out Citra-specifics, this also replaces the
system ResourceLimit instance's values with ones from the Switch.
|
|\ \ \ \ \ \ \ \ \
| |_|/ / / / / / /
|/| | | | | | | | |
hid: Add support for multiplayer and multilayout controllers
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Handles button configuration for all controller layouts and debug pads. Configurable at construction.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This allows adjusting the finger, diameter, and angle of the emulated touchscreen. It also provides a warning to the user about what changing these parameters can do.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Supports setting the five mouse buttons to any valid controller button/keyboard key (Left, Right, Middle, Foward, Back)
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This moves the actual button configuration to a separate dialog and only has the enabled and type controls in the tab.
|
| | | | | | | | | |
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Including finger ID, diamater x/y, and angle. Additionally, checks if the touchscreen is enabled.
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Used by developers to test games, not present on retail systems. Some games are known to respond to DebugPad input though, for example Kirby Star Allies.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Defaults to full keyboard for keyboard -- It did not seem to be necessary to make the keyboard configurable (besides enabled/disabled).
|
| | | | | | | | | |
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Uses the PlayerInput struct to represent all of the data that constitutes a player.
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
|/ / / / / / / / |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
textures/decoders: Replace magic numbers
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Missing ogl states
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
only enable color mask for the first framebuffer id independent blending is disabled
|
| | | | | | | | | | |
|
| | |/ / / / / / /
| |/| | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
travis: Use pre-built image for clang-format target
|
| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Handle missing git info when building
|
| | | | | | | | | | | |
|
| | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
game_list: Only reload game list after relevant settings changed
|
| | |_|_|_|_|_|/ / / /
| |/| | | | | | | | |
| | | | | | | | | | | |
Prevents unnecessary reloads on every configuration operation.
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
ldr_ro: Complete LDR:RO implementation
|
| | | | | | | | | | | | |
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Includes actual unmapping and address error checking.
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Includes NRO and BSS error checking, maximum loaded NRO check, NRR hash check, and proper remapping of BSS data.
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Includes initialization check, proper address check, alignment check, and actual unloading of a loaded NRR.
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Includes parameter error checking, hash enforcement, initialization check, and max NRR load check.
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Credits to Subv
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Fixes unmapped spam in SMP and buffer size errors in some other games
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Implemented CalculateStandardUserSystemClockDifferenceByUser
|
| | |_|_|_|_|/ / / / / /
| |/| | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Seems pokemon calls this sometimes and it caused "random crashes"
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
* Correctly sets default system language for yuzu-CLI
A user reported that yuzu_cmd runs games in Japanese rather than the correct default of English (like yuzu-qt does correctly), this change fixes that.
* fix clang issue
deleted whitespace
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
gl_rasterizer: Remove default clip distance
|
| | | | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / / / /
|/| | | | | | | | | | | | |
vi: Implement TransactParcel for Disconnect and DetachBuffer
|
| | |_|/ / / / / / / / /
| |/| | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Used by homebrew on exit. According to switchbrew, returns an empty response parcel with one zero in it.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| |_|_|_|_|_|/ / / / / /
|/| | | | | | | | | | | |
svc: ResetSignal is not stubbed
|
| | |_|_|_|_|_|_|_|_|/
| |/| | | | | | | | |
| | | | | | | | | | | |
https://user-images.githubusercontent.com/20753089/48677874-b8e01c80-eb7b-11e8-8043-b99faa29022c.PNG
|
|\ \ \ \ \ \ \ \ \ \ \
| |_|_|_|_|_|_|_|_|/ /
|/| | | | | | | | | | |
am: Stub EnableApplicationCrashReport
|
|/ / / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Port citra-emu/citra#4387: "yuzu: Add hotkey for Amiibo loading"
|
| | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
Include QT imageformat dependencies with releases
|
| | | | | | | | | | | | |
|
| | | | | | | | | | | | |
|
| | |_|_|_|_|_|_|/ / /
| |/| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
Added various bluetooth based cmds for palma
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
It seems palma is done through bluetooth, we need this for pokemon go however more research needs to be done when we actually get palma working. This is presumably used for transfering data between the controller and the console, it does not seem for actual input as far as I know.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
hwopus: DecodeInterleavedWithPerformance: Fix ordering of output parameters.
|
| | |_|_|_|_|/ / / / / /
| |/| | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
- Fixes audio issues with Pokemon: Let's Go Pikachu & Eevee.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / / /
|/| | | | | | | | | | | |
kernel/errors: Clean up error codes
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Similar to PR 1706, which cleans up the error codes for the filesystem
code, but done for the kernel error codes. This removes the ErrCodes
namespace and specifies the errors directly. This also fixes up any
straggling lines of code that weren't using the named error codes where
applicable.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / / /
|/| | | | | | | | | | | |
Port citra-emu/citra#4426: "Common/Bitfield: store value as unsigned type"
|
| |/ / / / / / / / / /
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Storing signed type causes the following behaviour: extractValue can do overflow/negative left shift. Now it only relies on two implementation-defined behaviours (which are almost always defined as we want): unsigned->signed conversion and signed right shift
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
Implement SetMemoryPermission
|
| | | | | | | | | | | | |
|
| | |_|_|_|/ / / / / /
| |/| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
gl_rasterizer_chache: Minor cleanup
|
| | |_|_|_|_|/ / / / /
| |/| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
textures/decoders: Minor cleanup
|
| |/ / / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
game_list: Optimize game list refresh
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
As the add-ons column takes the most processing time out of any (as it needs to search registration for updates/dlc, patch control NCAs, search for mods, etc.), an option was added to disable it. This does not affect the application of add-ons. In large game collections, this decreases game list refresh time by as much as 70%.
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Prevents unnecessary re-reads of the metadata and unnecessary temporary objects.
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Creates a single KeyManager for the entire container and then passes it into the NCA constructor, eliminating several unnecessary KeyManager reads.
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Allows resuing a common KeyManager when a large amount of NCAs are handled by the same class. Should the parameter not be provided, a new KeyManager will be constructed, as was the default behavior prior to this.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
gl_state: Amend compilation warnings
|
| | |_|_|_|_|_|_|_|_|/ /
| |/| | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Makes float -> integral conversions explicit via casts and also silences
a sign conversion warning.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
file_sys/errors: Clean up error code values
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Rather than keeping around unused values, we can just introduce them as
needed.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
There's no real point to keeping the separate enum around, especially
given the name of the error code itself is supposed to document what the
value actually represents.
|
| | |_|_|_|_|/ / / / / /
| |/| | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Keeps filesystem-related error codes in one spot.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| |_|_|_|_|_|/ / / / / /
|/| | | | | | | | | | | |
Added SetIsPalmaAllConnectable, SetPalmaBoostMode
|
|/ / / / / / / / / / /
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Currently unclear what these do yet, will be researched at a later time when we want to implement palma.
|
|\ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / /
|/| | | | | | | | | | |
Fixed switching operation modes when not running a game
|
|/ / / / / / / / / /
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
The service manager seems to be a nullptr before a game boots
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
* Fixed priority switching edge case for handheld
We accidently used controller index instead of npad id
* Moved NPadIdToIndex
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
csrng: Use random integer distribution instead of raw engine
|
| | |_|/ / / / / / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Prevents returning the same value every single call.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
kernel/thread: Deduplicate scheduler switching code
|
| | |/ / / / / / / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
The code in both places was the same verbatim, so we can extract it to a
function to deduplicate the logic.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
patch_manager: Add support for dumping uncompressed NSOs
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
When enabled in settings, PatchNSO will dump the unmodified NSO that it was passed to a file named <build id>.nso in the dump root for the current title ID.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Also adds UI option in Debug > Dump section, with the idea later things to be dumped (i.e. other game data or textures, etc) will use the same group box.
|
| | |_|_|_|_|_|/ / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Equates to yuzu_dir/dump/<title id>/
|
|\ \ \ \ \ \ \ \ \ \
| |_|_|/ / / / / / /
|/| | | | | | | | | |
service/audren_u: Forward RequestUpdateAuto through the same function as RequestUpdate
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Based off RE, they both currently go through the same codepath with no
difference in behavior.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Improved GPU Caches lookup Speed
|
| | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
acc/profile_manager: Minor cleanup-related changes
|
| | | | | | | | | | | | |
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Avoids relying on fmt always being indirectly included.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
service/acc: Correct error case within TrySelectUserWithoutInteraction()
|
| |/ / / / / / / / / / /
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
empty() in this case will always return false, since the returned
container is a std::array. Instead, check if all given users are invalid
before returning the error code.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
yuzu/configure_system: Mark the entropy mask string as nontranslatable
|
| |/ / / / / / / / / / /
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
There's no need for translators to concern themselves with the
validation mask used by the entry field.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
nfp: Correct erroneous sizeof expression within GetTagInfo()
|
| | |_|_|_|/ / / / / / /
| |/| | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
The previous expression would copy sizeof(size_t) amount of bytes (8 on
a 64-bit platform) rather than the full 10 bytes comprising the uuid
member.
Given the source and destination types are the same, we can just use an
assignment here instead.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
hid/npad: Add missing break in switch statement within Controller_NPad::OnUpdate
|
| |/ / / / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
service: Mark MakeFunctionString with the [[maybe_unused]] attribute.
|
| |/ / / / / / / / / / /
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
When yuzu is compiled in release mode this function is unused, however,
when compiled in debug mode, it's used within a LOG_TRACE statement.
This prevents erroneous compilation warnings about an unused function
(that isn't actually totally unused).
|
|\ \ \ \ \ \ \ \ \ \ \ \
| |_|/ / / / / / / / / /
|/| | | | | | | | | | | |
common/string_util: Minor cleanup
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
An old function from Dolphin. This is also unused, and pretty inflexible
when it comes to printing out different data types (for example, one
might not want to print out an array of u8s but a different type
instead. Given we use fmt, there's no need to keep this implementation
of the function around.
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
This is an unused hold-over from Dolphin that was primarily used to
parse values out of the .ini files. Given we already have libraries that
do this for us, we don't need to keep this around.
|
| |/ / / / / / / / / /
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
This is currently unused and doesn't really provide much value to keep
around either.
|
|\ \ \ \ \ \ \ \ \ \ \
| |_|_|/ / / / / / / /
|/| | | | | | | | | | |
svc: Use proper random entropy generation algorithm
|
| |/ / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
gl_rasterizer_cache: CopySurface optimization
|
| | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
qt: Move Open yuzu Folder action from Help to File
|
| | |/ / / / / / / / /
| |/| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
video_core/renderer_base: Remove GL include from the renderer base class files
|
| |/ / / / / / / / / /
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Keeps the base class source files implementation-agnostic.
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
engines/maxwell_3d: Minor cleanup
|
| |/ / / / / / / / / /
| | | | | | | | | | |
| | | | | | | | | | | |
Minor code cleanup from unaddressed feedback in #1654
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
kernel/process: Migrate heap-related memory management out of the process class and into the vm manager
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Now that we've moved all of the heap-related stuff to the VMManager
class, we can unstub this function, as the necessary members are visible
now.
|
| |/ / / / / / / / / /
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Avoids a breach of responsibilities in the interface and keeps the
direct code for memory management within the VMManager class.
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
hle/audren_u: Implement Get/SetRenderingTimeLimit
|
| |/ / / / / / / / / /
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
These appear to be a basic getter and setter pair, so these are fairly
trivial to implement and get out of the way.
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
audio_core/audio_renderer: Fix typo in AuxInfo member name
|
| |/ / / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / /
|/| | | | | | | | | | |
[ns|fsp_srv]: Implement various functions to boot Checkpoint
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Returns the raw NACP bytes and the raw icon bytes into a title-provided buffer. Pulls from Registration Cache for control data, returning all zeros should it not exist.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
An object to read SaveDataInfo objects, which describe a unique save on the system. This implementation iterates through all the directories in the save data space and uses the paths to reconstruct the metadata.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Needed by Checkpoint. Returns an object that can iterate through all savedata on the system.
|
| | | | | | | | | | | |
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Allows NRO homebrew to use the RomFS in the ASET section.
|
| | |_|_|_|_|_|/ / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Returns the raw bytes of the NACP file. Needed for GetApplicationControlData which returns the raw, unprocessed NACP to the game.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Implement SurfaceTarget Texture2DArray
|
| |\ \ \ \ \ \ \ \ \ \ |
|
| | | | | | | | | | | | |
|
| |\ \ \ \ \ \ \ \ \ \ \ |
|
| | |_|_|_|_|_|/ / / / /
| |/| | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
( needed by Mario+Rabbids Kingdom Battle )
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
csrng: Add config option to set RNG seed
|
| | | | | | | | | | | | | |
|
| | | | | | | | | | | | | |
|
| | |_|_|_|_|_|_|_|_|_|/
| |/| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Implement GetClockSnapshot, ToPosixTime & ToPosixTimeWithMyRule
|
| | | | | | | | | | | | | |
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Added instead of using a seperate PR to prevent conflicts
|
| | | | | | | | | | | | | |
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Needed by megaman 11
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
* Implement ASTC_2D_10X8 & ASTC_2D_10X8_SRGB
( needed by Mario+Rabbids Kingdom Battle )
* Small placement correction
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| |_|_|_|_|_|_|_|_|_|_|/ /
|/| | | | | | | | | | | | |
yuzu/main: Fix compiler warning
|
| | | | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \ \
| |_|_|/ / / / / / / / / /
|/| | | | | | | | | | | | |
yuzu: Add a missing "!" to fix the stuck-in-fullscreen bug
|
| | |_|_|_|_|/ / / / / /
| |/| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Map more missing opengl states
|
| | | | | | | | | | | | | |
|
| | | | | | | | | | | | | |
|
| | | | | | | | | | | | | |
|
| | |_|_|_|_|_|_|/ / / /
| |/| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
configure_system: Fix compiler warning
|
| | |_|/ / / / / / / / /
| |/| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \
| |_|/ / / / / / / / / /
|/| | | | | | | | | | | |
gl_rasterizer: Fix compiler warnings
|
| | |_|_|_|_|_|/ / / /
| |/| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
gl_shader_decompiler: Guard out of bound geometry shader input reads
|
| | |_|_|/ / / / / / /
| |/| | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Geometry shaders follow a pattern that results in out of bound reads.
This pattern is:
- VSETP to predicate
- Use that predicate to conditionally set a register a big number
- Use the register to access geometry shaders
At the time of writing this commit I don't know what's the intent of
this number. Some drivers argue about these out of bound reads. To avoid
this issue, input reads are guarded limiting reads to the highest
posible vertex input of the current topology (e.g. points to 1 and
triangles to 3).
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
rasterizer_cache: Remove reliance on the System singleton
|
| |/ / / / / / / / / /
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Rather than have a transparent dependency, we can make it explicit in
the interface. This also gets rid of the need to put the core include in
a header.
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
Implement 3 coordinate array in TEXS instruction
|
| | | | | | | | | | | | |
|
| | |/ / / / / / / / /
| |/| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
gl_rasterizer: Skip VAO binding if the state is clean.
|
| | | | | | | | | | | | |
|
| | |_|_|_|_|_|/ / / /
| |/| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
Ability to switch between docked and undocked mode in-game
|
| | | | | | | | | | | | |
|
| | | | | | | | | | | | |
|
| |/ / / / / / / / / /
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Started implementation of the AM message queue mainly used in state getters. Added the ability to switch docked mode whilst in game without stopping emulation. Also removed some things which shouldn't be labelled as stubs as they're implemented correctly
|
|\ \ \ \ \ \ \ \ \ \ \
| |_|_|/ / / / / / / /
|/| | | | | | | | | | |
rasterizer_cache: Add missing virtual destructor to RasterizerCacheObject
|
|/ / / / / / / / / /
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Ensures that destruction will always do the right thing in any context.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Fixes the buildbot.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Updated npad styles on holdtype switches
|
| | |/ / / / / / / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Fixes input for megaman
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
* svcBreak now dumps information from the debug buffer passed
info1 and info2 seem to somtimes hold an address to a buffer, this is usually 4 bytes or the size of the int and contains an error code. There's other circumstances where it can be something different so we hexdump these to examine them at a later date.
* Addressed comments
|
|\ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / /
|/| | | | | | | | | |
Implement acc:TrySelectUserWithoutInteraction
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| |/ / / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Needed for Shantae - Half-Genie Hero - Ultimate Edition!
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
memory_manager: Do not MapBufferEx over already in use memory.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
- This fixes rendering when changing areas in Super Mario Odyssey.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Implement multi-target viewports and blending
|
| | | | | | | | | | | |
|
| | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| |_|_|/ / / / / / / /
|/| | | | | | | | | | |
gl_rasterizer: Update microprofile scopes.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
They were missed, and Copy is very high in profile here. It doesn't block the GPU,
but it stalls the driver thread. So with our bad GL instructions, this might block quite a while.
|
| | | | | | | | | | | |
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
This serialize to the driver thread and so it may block for a while.
So if it is in the benchmark, we get noticed if it happens too often.
|
|/ / / / / / / / / /
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
This was created with the unfinished resampling PR in mind.
As the resampling is now on the audio thread, we don't need to care about this here any more.
|
|\ \ \ \ \ \ \ \ \ \
| |_|_|/ / / / / / /
|/| | | | | | | | | |
gl_resource_manager: Split implementations in .cpp file.
|
|/ / / / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Those implementations are quite costly, so there is no need to inline them to the caller.
Ressource deletion is often a performance bug, so in this way, we support to add breakpoints to them.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Implement Cube Arrays
|
| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Fixed HID crash when launching more than 1 game & signaled styleset change event
|
| | |_|_|_|_|/ / / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
This should fix crashes when launching multiple games in yuzu
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
logging: Add DebuggerBackend for logging to Visual Studio
|
| | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / / / /
|/| | | | | | | | | | |
qt: Add help option to open yuzu folder
|
| | |_|_|_|_|_|_|/ /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Opens a new file manager window at the UserDir.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Implement ASTC Textures 5x5 and fix a bunch of ASTC texture problems
|
| | | | | | | | | | | |
|
| | | | | | | | | | | |
|
| | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
Fix quickstart link
|
| | |/ / / / / / / / /
| |/| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / /
|/| | | | | | | | | | |
Fix typo in BufferTransformFlags
|
|/ / / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \
| |_|_|/ / / / / / /
|/| | | | | | | | | |
Fixed incorrect hwopus assert
|
|/ / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / /
|/| | | | | | | | |
configure_system: Contrain profile usernames to 32 characters
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Previously, we would let a user enter an unbounded name and then
silently truncate away characters that went over the 32-character limit.
This is kind of bad from the UX point of view, because we're essentially
not doing what the user intended in certain scenarios.
Instead, we clamp it to 32 characters and make that visually apparent in
the dialog box to provide a name for a user.
|
|\ \ \ \ \ \ \ \ \
| |_|/ / / / / / /
|/| | | | | | | | |
Improve OpenGL state handling
|
| | |_|_|_|/ / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Assert Control Flow Instructions using Control Codes
|
| | |/ / / / / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
maxwell_3d: Restructure macro upload to use a single macro code memory.
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
- Fixes an issue where macros could be skipped.
- Fixes rendering of distant objects in Super Mario Odyssey.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Port citra-emu/citra#4369: "compatdb: Use a seperate endpoint for testcase submission"
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| |_|_|_|_|/ / / /
|/| | | | | | | | |
Assert Control Codes Generation on Shader Instructions
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
video_core: Move surface declarations out of gl_rasterizer_cache
|
| | |_|_|/ / / / /
| |/| | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| |/ / / / / / / /
|/| | | | | | | | |
service/usb: Update IPdSession's function table
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Updated based off information on SwitchBrew.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
general: Remove unused boost inclusions where applicable
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Cleans up unused includes and trims off some dependencies on externals.
|
|\ \ \ \ \ \ \ \ \
| |/ / / / / / / /
|/| | | | | | | | |
configure_system: Fix compiler warning
|
| | | | | | | | | |
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
* get rid of boost::optional
* Remove optional references
* Use std::reference_wrapper for optional references
* Fix clang format
* Fix clang format part 2
* Adressed feedback
* Fix clang format and MacOS build
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
hle_ipc: Make GetDomainMessageHeader return a regular pointer
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Gets rid of the need to call the getter and then check for null.
|
| | |_|_|/ / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Nothing requires the shared owner ship here, so we can just return a
plain pointer.
|
|\ \ \ \ \ \ \ \ \
| |_|_|/ / / / / /
|/| | | | | | | | |
core: Add missing const variants of getters for the System class
|
| | | | | | | | | |
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Many of the Current<Thing> getters (as well as a few others) were
missing const qualified variants, which makes it a pain to retrieve
certain things from const qualified references to System.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Implemented Mipmaps
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| |_|_|_|_|_|/ /
|/| | | | | | | |
time_stretch: Switch to values of Citra
|
| | |_|_|_|/ /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
video_core: Move OpenGL specific utils to its renderer
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
renderer_opengl: Enable alpha channel for DXT1 texture format
|
| |/ / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
renderer_opengl: Correct bpp value for ASTC_2D_8X5_SRGB
|
|/ / / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
renderer_opengl: Correct bpp value for ASTC_2D_8X5
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Improved Shader accuracy on Vertex and Geometry Shaders.
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
Revert "Update MACOSX_DEPLOYMENT_TARGET to 10.14"
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
svc: Implement svcGetInfo command 0xF0000002
|
| | | | |
| | | | |
| | | | |
| | | | | |
Nothing from this enum is intended to be used outside of this function.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This retrieves:
if (curr_thread == handle_thread) {
result = total_thread_ticks + (hardware_tick_count - last_context_switch_ticks);
} else if (curr_thread == handle_thread && sub_id == current_core_index) {
result = hardware_tick_count - last_context_switch_ticks;
}
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Update MACOSX_DEPLOYMENT_TARGET to 10.14
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* remove unnecessary if-statements
* Addressed feedback
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
service/filesystem: Implemented DeleteDirectory & DeleteDirectoryRecursive
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
loader/nsp: Move secondary loader initialization to constructor
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
Prevents nullptr bug when trying to dump the RomFS of an NSP resulting from secondary_loader not being initialized.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Implement sRGB support
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
key_manager: Use isxdigit instead of isdigit when reading key file
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
Crypto revisions are hex numbers and this function only checks if the string is valid for stoul in base 16, so it should be isxdigit.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
configure_system: Indicate when filesystem operations fail
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Avoids the need to put the scaling parameters all over the place for the
common case. The only other time scaling is done is to generate the
smaller 48x48 image, so this is fine.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Avoids the need to duplicate this all over the place, and makes it
translator-friendly across the board.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We should display an error to the user if setting a user image for an
account fails, rather than continuing onwards.
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
gl_rasterizer_cache: Fix compiler warning
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Port citra-emu/citra#4367: "cubeb_sink: ignore null-name device when selecting"
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
We already ignore them on listing devices. We should do the same when selecting devices. This fix a crash when opening a specific device while there is a null device in the list
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_rasterizer: Implement primitive restart.
|
| |/ / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Implement Default Block Height for each format
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Implemented Shader Local Memory
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
vfs: Remove InterpretAsDirectory and related functions
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
When writing VFS, it initally seemed useful to include a function to in-place convert container files into directories in one homogenous directory structure, but re-evaluating it now there have been plenty of chances to use it and there has always been a better way. Removing as it is unused and likely will not be used.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_rasterizer: Implement depth range.
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
yuzu/main: Notify user of loading errors with Amiibo data
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
We shouldn't silently continue if loading failed, since the general
assumption is that no messages showing up implicitly indicates success.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
configure_system: Minor cleanup-related changes
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This should be localizable, since it's user-facing text.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
We can just make the function accept an arbitrary ProfileManager
reference and operate on that instead of tying the function to the class
itself. This allows us to keep the function internal to the cpp file and
removes the need to forward declare the UUID struct.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
These should be initialized to deterministic values so it's easier to
catch improper behavior, as it'll always be reproducable, instead of
performing uninitialized reads.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This is a static function so we can just perform an assignment directly.
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
These are only used within this class, so we can make them private to
keep their use contained. This also gets rid of the pre-Qt5 'slot'
identifier, since Qt 5's connection syntax doesn't require a function to
be declared a slot anymore.
|
|\ \ \ \ \ \ \ \ \
| |_|_|/ / / / / /
|/| | | | | | | | |
Implement the LoadNro functions from the ldr:ro service.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
- This is an incomplete implementation. It was tested with Super Mario Party.
|
| | | | | | | | | |
|
| | | | | | | | | |
|
|/ / / / / / / / |
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
ips_layer: Use rle_size instead of data_size in RLE patch application
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Prevents a potential bug when using RLE records in an IPS patch.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
Delete git file
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
service/usb: Update service function tables
|
| | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | | |
Updated based off the information provided by Hexkyz on Switchbrew.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
service/acc: Silence compiler truncation warnings
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This is just flat data, so it doesn't really need to be in the function
itself. This also allows deduplicating the constant for the backup size
in GetImageSize().
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Silences compiler warnings related to truncation. This also introduces a
small helper function to perform the clamping of the image size.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Allows unindenting the other branch's code.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/error: Amend error return code values
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Now that we've gotten the innaccurate error codes out of the way, we can
finally toss away a bunch of these, trimming down the error codes to
ones that are actually used and knocking out two TODO comments.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This is more consistent with what the kernel does.
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This is what the kernel does in this instance.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
These are now entirely unused and can be removed.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Like with the previous change, the kernel doesn't return NOT_AUTHORIZED
here. It returns INVALID_THREAD_PRIORITY.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
All priority checks are supposed to occur before checking the validity
of the thread handle, we're also not supposed to return
ERR_NOT_AUTHORIZED here.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The kernel appears to return 0xE601 for this situation. Particularly in
svcWaitSynchronization, svcReplyAndReceive, and svcGetThreadContext
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
The kernel appears to return 0xF601 for this case.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
rasterizer: Fix Layered Textures Loading and Cubemaps
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
game_list_worker: Use QString's formatting instead of fmt in FormatPatchNameVersions()
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Using fmt here requires unnecessary string conversions back into
QString. Instead, we can just use QString's formatting and get the end
result of the formatting operation in the proper type.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
profile_manager: Use std::optional instead of boost::optional
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Now that we can actually use std::optional on macOS, we don't need to
continue using boost::optional here.
|
|\ \ \ \ \ \ \ \
| |_|_|_|_|/ / /
|/| | | | | | | |
yuzu/configuration/config: Use a std::unique_ptr for qt_config instead of a raw pointer
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Same behavior, less code.
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
Makes the class layout consistent with the others.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
time_stretch: Remove unused m_channel_count member variable
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
This is only stored to, but never read from.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Implement PointSize Output Attribute.
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
graphic_breakpoints: Correct translation of strings in BreakpointModel's data() function
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
tr() will not function properly on static/global data like this, as the
object is only ever constructed once, so the strings won't translate if
the language is changed without restarting the program, which is
undesirable. Instead we can just turn the map into a plain old function
that maps the values to their equivalent strings. This is also lessens
the memory allocated, since it's only allocating memory for the strings
themselves, and not an encompassing map as well.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
npad: Remove unused controller variable from OnInit()
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This also gets rid of variable shadowing related to the lambda parameter
a little bit below this code as well.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
game_list: Use QFileInfo instead of common's file functions
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
We can just use the facilities that Qt provides instead of pulling in
stuff from common. While we're at it, we can also simplify the nearby
logging statement's argument by just calling .toStdString()
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
game_list: Make game list column headers translatable
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | | |
These are user-facing strings, so they should be marked as translatable
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
bootmanager: Use QStringLiteral instead of std::string to represent the window title.
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This gets rid of an unnecessary type conversion. We can just use the
regular QStringLiteral to already format the string as the type
setWindowTitle accepts instead of converting from a std::string
instance.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
perf_stats: Remove unused variable within DoFrameLimiting()
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
This hasn't been used since ba8ff096fdc9f7ab101851c4cd06c3244a7d84c3
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
aoc_u: Make use of previously-unused CheckAOCTitleIDMatchesBase() function
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
We can just call the function instead of duplicating the code here. This
also prevents an unused function warning.
We also don't need to take the lambda capture by reference. It's just a
u64 value, so by value is fine here.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
maxwell_3d/decoders: Remove unused variables
|
| | | | | | | | | |
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
file_sys: Remove unused variables
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Also gets rid of an unused variable.
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| |_|_|/ / / / /
|/| | | | | | | |
logging/backend: Add missing services to the log filters
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Just a few overlooked services.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
qt: Add UI to manage emulated user profiles
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Prevents bug where old username would remain if the new username was shorter in length.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Added break types to svcBreak
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
There seems to be more such as type 1, and 2. Unsure what these currently are but when a game hits them we can investigate and add the rest
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
* Fixed conflict with nfp
* Few fixups for nfc
* Conflict 2
* Fixed AttachAvailabilityChangeEvent
* Conflict 3
* Fixed byte padding
* Refactored amiibo to not reside in "System"
* Removed remaining references of nfc from system
* used enum for Nfc GetStateOld
* Added missing newline
* Moved file operations to front end
* Conflict 4
* Amiibos now use structs and added mutexes
* Removed amiibo_path
|
|\ \ \ \ \ \ \
| |_|_|_|_|_|/
|/| | | | | | |
patch_manager: Add support for LayeredFS on DLC RomFS
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Prevents a Entry from appearing in the list twice if the user has it installed in two places (e.g. User NAND and SDMC)
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
CMakeLists: Use PROJECT_SOURCE_DIR instead of CMAKE_SOURCE_DIR
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This is more localized to what we want to enforce directory-wise with
the project. CMAKE_SOURCE_DIR indicates the root of the source tree, but
this would cause the wrong behavior if someone included yuzu as part of
a larger buildsystem (for whatever reason). Instead, we want to use the
directory where the "project(yuzu)" command was declared as the root
path reference.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
common: Remove memory_util.h/.cpp
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This was only ever used by the now-removed memory_util functions. Also,
given we don't plan to support 32-bit architectures, this is just a
leftover from citra at this point.
|
| | |_|_|/ / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
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.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
kernel/process: Make the handle table per-process
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
In the kernel, there isn't a singular handle table that everything gets
tossed into or used, rather, each process gets its own handle table that
it uses. This currently isn't an issue for us, since we only execute one
process at the moment, but we may as well get this out of the way so
it's not a headache later on.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Port citra-emu/citra#4336: "Only redefine some 64-bit file operation for MSVC"
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
MinGW provides POSIX functions
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
gl_shader_decompiler: Implement VSETP
|
| | | | | | | | | |
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
maxwell_dma: Silence compilation warnings
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
These three source files are the only ones within the engines directory
that don't use nested namespaces. We may as well change these over to
keep things consistent.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
These are never modified, so we can make that assumption explicit.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
This prevents truncation warnings at the lambda's usage sites.
|
| | |_|/ / / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | | |
These pointer variables are never used, so we can get rid of them.
|
|\ \ \ \ \ \ \ \ \
| |_|_|/ / / / / /
|/| | | | | | | | |
Implemented Alpha Test using Shader Emulation
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| |_|_|/ / / / / /
|/| | | | | | | | |
gl_shader_decompiler: Implement PBK and BRK
|
| | |_|/ / / / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| |_|_|_|/ / / /
|/| | | | | | | |
Added Saturation to FMUL32I
|
| | |/ / / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
CMakeLists: Use target_compile_definitions instead of add_definitions to define YUZU_ENABLE_COMPATIBILITY_REPORTING
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Keeps the definition constrained to the yuzu target and prevents
polluting anything else in the same directory (should that ever happen).
It also keeps it consistent with how the USE_DISCORD_PRESENCE definition
is introduced below it.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
gl_shader_decompiler: Minor changes
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
If the variable being moved is const, then std::move will always perform
a copy (since it can't actually move the data).
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
A variable with the same name was previously declared in an outer scope.
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
psm: Add psm service and stub commands 0 and 1
|
| | | | | | |
| | | | | | |
| | | | | | | |
Used by LovePotion Lua Homebrew. Stubbed as connected to official Nintendo Switch dock.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Used by LovePotion Lua Homebrew. Stubbed to return 100% charge.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
Seems to be the power controller. Listed in switchbrew under the category PTM services.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
web_service/CMakeLists: Make the CPPHTTPLIB_OPENSSL_SUPPORT constrained to the web_service library only
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Given we link in httplib privately, we can also make the definition
enabling OpenSSL support private as well. Prevents leaking a definition
into other libraries that link with this one, like the core library.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
svc: Fix vma boundary check in svcQueryMemory
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This should be comparing against the queried process' vma_map, not the
current process'. The only reason this hasn't become an issue yet is we
currently only handle one process being active at any time.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fixed FSETP and FSET
|
| | |_|/ / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
service: Update service function tables
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Updated based off information provided by Switchbrew.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Added based off information provided by Switchbrew.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Updated based off information from Switchbrew
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Also introduces the new prepo:a2 service.
Updated based off information provided by Switchbrew.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
Updated based off information provided by Switchbrew.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fixed VAOs Float types only returning GL_FLOAT
|
| |/ / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
qt: Move Reinitialize Keys to Tools menu
|
| |/ / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Added auto controller switching to supported controllers and single joycon button rotation
|
| | | | |
| | | | |
| | | | |
| | | | | |
This is a subset of the better-hid-2 changes, this fixes input in various games which don't support dual joycons. This pr will search for the next best controller which is supported by the current game
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
gl_shader_decompiler: Move position varying declaration back to gl_shader_gen
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The intention of declaring them in gl_shader_decompiler was to be able
to use blocks to implement geometry shaders. But that wasn't needed in
the end and it caused issues when both vertex stages were being used,
resulting in a redeclaration of "position".
|
|\ \ \ \
| | | | |
| | | | | |
gl_shader_decompiler: Implement H* instructions
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
svc: Add missing sanitizing checks for MapSharedMemory/UnmapSharedMemory
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Now that the changes clarifying the address spaces has been merged, we
can wrap the checks that the kernel performs when mapping shared memory
(and other forms of memory) into its own helper function and then use
those within MapSharedMemory and UnmapSharedMemory to complete the
sanitizing checks that are supposed to be done.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU/DMA: Flush the source region and invalidate the destination region when doing a DMA transfer.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
service: Update function tables
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Updated based off information provided by Switchbrew.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Updated based off information provided by Switchbrew.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Updated based off information provided by Switchbrew.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Updated based off information provided by switchbrew.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Updated based off information provided by Switchbrew.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Added based off information provided by Switchbrew
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Updated based off information provided by Switchbrew.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Updated based on information from Switchbrew.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
aoc_u: Stub GetAddOnContentListChangedEvent
|
| | |_|_|_|/ /
| |/| | | | |
| | | | | | |
| | | | | | | |
This event signals the game when new DLC is purchased from the eShop while the game is running. Since, for the forseeable future, yuzu will not have this ability, it seems safe to stub with a dummy event that will never fire. This is needed to boot Sonic Mania Plus (update v1.04).
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
hid: Minor cleanup-related changes
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
swap.h only needs to be present in the header for the type aliases and
definitions, it's not actually needed in the cpp files though. input.h
is just unused entirely in xpad.h
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Given it's unused, we may as well toss it.
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This is only useful in headers.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This is just a lookup table, and since it's private, there's nothing
really stateful about it, so we can just move it into the cpp file.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This literally does nothing.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
These classes are non-trivial and are definitely going to be changed in
the future, so we default these to prevent issues with forward
declarations, and to keep the compiler from inlining tear-down code.
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
The destructor doesn't need to be a pure-virtual function.
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
crypto: Use compressed sizes in offset calculation for KIP decompression
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
Fixes a fatal crash on start when deriving keys.
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Home button blocking stub
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
Needed by arms due to new hid rework
|
|\ \ \ \ \
| | | | | |
| | | | | | |
svc: Add missing error checks in svcArbitrateLock/svcArbitrateUnlock
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The kernel itself checks whether or not the provided addresses are word
aligned before continuing, so we should be doing the same.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This will be used in a following change to svcArbitrateLock() and
svcArbitrateUnlock()
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Aligning on 4KB pages isn't a Switch-specific thing, so this can be
moved to common so it can be used with other things as well.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
content_archive: Minor reorganization changes
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
std::move doesn't actually dereference the data, so it doesn't matter
whether or not the type is null.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This is only ever used within the cpp file, so it can just be an
internal function.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This is the same as using std::any_of with an inverted predicate.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The constructor alone is pretty large, the reading code should be split
into its consistuent parts to make it easier to understand it without
having to build a mental model of a 300+ line function.
|
| | |_|_|/ /
| |/| | | |
| | | | | |
| | | | | |
| | | | | | |
Each header is 512 bytes in size, which is kind of an excessive amount
to copy all the time when it's possible to avoid doing so.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Used better names for mm:u and fixed a bad stub
|
| | |_|/ / /
| |/| | | |
| | | | | |
| | | | | | |
InitializeWithId needs to return an id which is a u32 which should be a non zero value
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
core: Remove unnecessary assert in ArmInterface()
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | | |
CpuCore already does this sort of checking, so we can just call that
instead of duplicating the assertions.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
XCI: Add function for checking the existence of the program NCA
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | | |
The only reason the getter existed was to check whether or not the
program NCA was null. Instead, we can just provide a function to query
for the existence of it, instead of exposing it entirely.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Implemented 3D Textures
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
"Better Hid" Rework Part 1
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Reason for the change is to allow both docked and undocked mode to work
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Kirby input still doesn't work, should fix a lot of other games
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Used by Mario Party
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
HandheldVariant is for specific games which expect handheld controllers to be at position 8(kirby), however this doesn't fix all games as some games require handhelds to be at position 0(snipperclips)
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Fixes arms
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
shader_decompiler: Fix TLDS
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Implement flushing in the rasterizer cache
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- This will be used as a catch-all for slow-but-accurate GPU emulation paths.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- This does not really have anything to do with OpenGL.
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- These cannot be used within the cache, as they change cache state.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
svc: Clarify enum values for AddressSpaceBaseAddr and AddressSpaceSize in svcGetInfo()
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
So, one thing that's puzzled me is why the kernel seemed to *not* use
the direct code address ranges in some cases for some service functions.
For example, in svcMapMemory, the full address space width is compared
against for validity, but for svcMapSharedMemory, it compares against
0xFFE00000, 0xFF8000000, and 0x7FF8000000 as upper bounds, and uses
either 0x200000 or 0x8000000 as the lower-bounds as the beginning of the
compared range. Coincidentally, these exact same values are also used in
svcGetInfo, and also when initializing the user address space, so this
is actually retrieving the ASLR extents, not the extents of the address
space in general.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Implement Arrays on Tex Instruction
|
| | |_|/ / /
| |/| | | | |
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
savedata_factory: Add DeviceSaveData and fix TemporaryStorage
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Required for TemporaryStorage saves (in addition to SaveDataType)
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Uses the same path as SaveData except with UID 0. Adds a warning if UID is not 0.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
content_archive/patch_manager: Lower log levels to eliminate some unnecessary logs
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Normal Program-type patches will still be logged to aid in debugging, but for others (mainly Control), it was moved to Debug.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Avoids printing live keys in the general log.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
* Implement VI ConvertScalingMode
* Fixed push enum
* Scale mode now uses Nintendo scale mode as an enum as well
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
core: Convert shared_ptr instances into unique_ptr instances where applicable for System and Cpu
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
There's no need for shared ownership here, as the only owning class
instance of those Cpu instances is the System class itself. We can also
make the thread_to_cpu map use regular pointers instead of shared_ptrs,
given that the Cpu instances will always outlive the cases where they're
used with that map.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Like the barrier, this is owned entirely by the System and will always
outlive the encompassing state, so shared ownership semantics aren't
necessary here.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This will always outlive the Cpu instances, since it's destroyed after
we destroy the Cpu instances on shutdown, so there's no need for shared
ownership semantics here.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
file_sys/registered_cache: Use unique_ptr and regular pointers instead of shared_ptrs where applicable
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The data retrieved in these cases are ultimately chiefly owned by either
the RegisteredCache instance itself, or the filesystem factories. Both
these should live throughout the use of their contained data. If they
don't, it should be considered an interface/design issue, and using
shared_ptr instances here would mask that, as the data would always be
prolonged after the main owner's lifetime ended.
This makes the lifetime of the data explicit and makes it harder to
accidentally create cyclic references. It also makes the interface
slightly more flexible than the previous API, as a shared_ptr can be
created from a unique_ptr, but not the other way around, so this allows
for that use-case if it ever becomes necessary in some form.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
Port citra-emu/citra#4327: "travis: Ignore binary files when checking for trailing whitespace"
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
web_service: Make linkage of web_service-related externals and the library private
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Now that all external dependencies are hidden, we can remove
json-headers from the publically linked libraries, as the use of this
library is now completely hidden from external users of the web_service
library. We can also make the web_services library private as well,
considering it's not a requirement. If a library needs to link in
web_service, it should be done explicitly -- not via indirect linking.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Like with TelemetryJson, we can make the implementation details private
and avoid the need to expose httplib to external libraries that need to
use the Client class.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Users of the web_service library shouldn't need to care about an
external library like json.h. However, given it's exposed in our
interface, this requires that other libraries publicly link in the JSON
library. We can do better.
By using the PImpl idiom, we can hide this dependency in the cpp file
and remove the need to link that library in altogether.
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Taking them by const reference isn't advisable here, because it means
the std::move calls were doing nothing and we were always copying the
std::string instances.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Removes unused includes. Also rectifies a missing <chrono> include.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Avoids introducing the definition to the whole directory space and
localizes it to being added to the library that needs it.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
yuzu/main: Apply the [[maybe_unused]] attribute to the parameter of SetDiscordEnabled
|
| | |_|_|/ / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Depending on whether or not USE_DISCORD_PRESENCE is defined, the "state"
parameter can be used or unused. If USE_DISCORD_PRESENCE is not defined,
the parameter will be considered unused, which can lead to compiler
warnings. So, we can explicitly mark it with [[maybe_unused]] to inform
the compiler that this is intentional.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
file_sys/control_metadata: Get rid of magic constants
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
These are just the size of the data being passed in, so we can specify
that via the size() member function.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
aoc: Fix various bugs in current AOC implementation
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Falls back to title ID + 0x1000, which is what HOS does.
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
nro/nso: Minor error handling changes
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
If a malformed NSO is attempted to be loaded, we shouldn't continue
onwards. We should be reporting an error and bailing out.
|
| | | | | | | | | |
|
| | |_|_|_|/ / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This function doesn't need to care about ownership semantics, so we can
just pass it a reference to the file itself, rather than a
std::shared_ptr alias.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
crypto: Various crypto fixes for quickstart guide
|
| | |_|_|/ / / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
video_core: Minor style changes
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Control Code 0xf means to unconditionally execute the instruction. This
value is passed to most BRA, EXIT and SYNC instructions (among others)
but this may not always be the case.
|
| | | | | | | | |
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
key_manager/partition_data_manager: Minor changes
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
We can just reserve the memory then perform successive insertions
instead of needing to use memcpy. This also avoids the need to zero out
the output vector's memory before performing the insertions.
We can also std::move the output std::vector into the destination so
that we don't need to make a completely new copy of the vector, getting
rid of an unnecessary allocation.
Additionally, we can use iterators to determine the beginning and end
ranges of the std::vector instances that comprise the output vector, as
the end of one range just becomes the beginning for the next successive
range, and since std::vector's iterator constructor copies data within
the range [begin, end), this is more straightforward and gets rid of the
need to have an offset variable that keeps getting incremented to
determine where to do the next std::memcpy.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Aside from emplacing elements into the map, the map itself is never
actually queried for contained data.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
These are only ever read from, so we don't need to make a copy of all
the keys here.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Given it's only used in one spot and has a fairly generic name, we can
just specify it directly in the function call. This also the benefit of
automatically moving it.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Commented out code shouldn't be left in without a reason indicating why
in a comment.
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Instead, we can make it part of the type and make named variables for
them, so they only require one definition (and if they ever change for
whatever reason, they only need to be changed in one spot).
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Given the VirtualFile instance isn't stored into the class as a data
member, or written to, this can just be turned into a const reference,
as the constructor doesn't need to make a copy of it.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Orders the members in the exact order they would be initialized. This
also prevents compiler warnings about this sort of thing.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Gets unused includes out of the headers and moves them into the cpp file
if they're used there instead.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
If the data is unconditionally being appended to the back of a
std::vector, we can just directly insert it there without the need to
insert all of the elements one-by-one with a std::back_inserter.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
If a conditional (or it's body) travels more than one line, it should be
braced.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Given the filesystem should always be assumed to be volatile, we should
check and bail out if a seek operation isn't successful. This'll prevent
potentially writing/returning garbage data from the function in rare
cases.
This also allows removing a check to see if an offset is within the
bounds of a file before perfoming a seek operation. If a seek is
attempted beyond the end of a file, it will fail, so this essentially
combines two checks into one in one place.
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Given the file is opened a few lines above and no operations are done,
other than check if the file is in a valid state, the read/write pointer
will always be at the beginning of the file.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
yuzu/main: Simplify OnMenuLoadFile()
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
We can utilize QStringList's join() function to perform all of the
appending in a single function call.
While we're at it, make the extension list a single translatable string
and add a disambiguation comment to explain to translators what %1
actually is.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
video_core: Added ASTC 5x4; 8x5 types
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
filesystem: Make CreateFactories() and InstallInterface() take a VfsFilesystem by reference
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Neither of these functions alter the ownership of the provided pointer,
so we can simply make the parameters a reference rather than a direct
shared pointer alias. This way we also disallow passing incorrect memory values like
nullptr.
|
|\ \ \ \ \ \ \ \
| |_|_|/ / / / /
|/| | | | | | | |
Introduce 3D Swizzle seamlessly
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
svc: Implement svcGetProcessInfo
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
A fairly basic service function, which only appears to currently support
retrieving the process state. This also alters the ProcessStatus enum to
contain all of the values that a kernel process seems to be able of
reporting with regards to state.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Stop all threads on svcBreak
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
This should help diagnose crashes easier and prevent many users thinking that a game is still running when in fact it's just an audio thread still running(this is typically not killed when svcBreak is hit since the game expects us to do this)
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
crypto: Add support for full key derivation
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
x
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Keeps track of system files for key derivation
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Derives titlekeys
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Derives master keys, game encryption keys, and package1/2 keys
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
TSEC, SBK, BIS, and other Sources for proper derivation
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Required for keyblob verification
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/process: Make CodeSet a regular non-inherited object
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
These only exist to ferry data into a Process instance and end up going
out of scope quite early. Because of this, we can just make it a plain
struct for holding things and just std::move it into the relevant
function. There's no need to make this inherit from the kernel's Object
type.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Implemented helper function to correctly calculate a texture's size
|
| | |_|_|_|/ / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
svc: Fix typos in sanitizing checks for MapMemory/UnmapMemory
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fixed incorrect types for svcBreak
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
signal_debugger seems like a more fitting name
|
| | |_|_|_|/ /
| |/| | | | |
| | | | | | |
| | | | | | | |
svcBreak reason should be a u32, not a u64.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Passing an invalid nmap handle to Remap should throw an error
|
| | | | | | | | |
|
| | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | | |
Added error for invalid nmap handles
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
thread: Remove unnecessary memset from ResetThreadContext()
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Regular value initialization is adequate here for zeroing out data. It
also has the benefit of not invoking undefined behavior if a non-trivial
type is ever added to the struct for whatever reason.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Added error codes for nvmap
|
| | | | | | | |
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
HwOpus, Implemented DecodeInterleavedWithPerformance
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
Used by sonic ages
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
svc: Add missing address range sanitizing checks to MapMemory/UnmapMemory
|
| | |_|_|/ /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This adds the missing address range checking that the service functions
do before attempting to map or unmap memory. Given that both service
functions perform the same set of checks in the same order, we can wrap
these into a function and just call it from both functions, which
deduplicates a little bit of code.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
nvhost_as_gpu: Flush/invalidate CPU VAddr on UnmapBuffer.
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
gl_shader_decompiler: Implement VMAD
|
|/ / / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Fixed block height settings for RenderTargets and Depth Buffers
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Implemented Scissor Testing
|
| | | | | | |
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_shader_decompiler: Implement geometry shaders
|
| | | | | | |
|
| | | | | | |
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
kernel/thread: Use a regular pointer for the owner/current process
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
There's no real need to use a shared pointer in these cases, and only
makes object management more fragile in terms of how easy it would be to
introduce cycles. Instead, just do the simple thing of using a regular
pointer. Much of this is just a hold-over from citra anyways.
It also doesn't make sense from a behavioral point of view for a
process' thread to prolong the lifetime of the process itself (the
process is supposed to own the thread, not the other way around).
|
|\ \ \ \ \
| | | | | |
| | | | | | |
ips_layer: Silence truncation and conversion warnings
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
Makes type conversions explicit to avoid compiler warnings.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
patch_manager: Return a std::unique_ptr from ParseControlNCA() and GetControlMetadata() instead of a std::shared_ptr
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Neither of these functions require the use of shared ownership of the
returned pointer. This makes it more difficult to create reference
cycles with, and makes the interface more generic, as std::shared_ptr
instances can be created from a std::unique_ptr, but the vice-versa
isn't possible. This also alters relevant functions to take NCA
arguments by const reference rather than a const reference to a
std::shared_ptr. These functions don't alter the ownership of the memory
used by the NCA instance, so we can make the interface more generic by
not assuming anything about the type of smart pointer the NCA is
contained within and make it the caller's responsibility to ensure the
supplied NCA is valid.
|
|\ \ \ \
| | | | |
| | | | | |
gl_shader_decompiler: Remove unused variables in TMML's implementation
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Given "y" isn't always used, but "x" is, we can rearrange this to avoid
unused variable warnings by changing the names of op_a and op_b
|
|\ \ \ \
| | | | |
| | | | | |
Port citra-emu/citra#4310: "Handle touch input"
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
change TouchToPixelPos to return std::pair<int, int>
static_cast (SDL)
various minor style and code improvements
style - PascalCase for function names
made touch events private
const pointer arg in touch events
make TouchToPixelPos a const member function
did I do this right?
braces on barely-multiline if
remove question comment (confirmed in Discord)
fixed consts
remove unused parameter from TouchEndEvent
DRY - High-DPI scaled touch put in separate function
also fixes a bug where if you start touching (with either mouse or touchscreen) and drag the mouse to the LEFT of the emulator window, the touch point jumps to the RIGHT side of the touchscreen; draggin to above the window would make it jump to the bottom.
implicit conversion from QPoint to QPointF, apparently
I have no idea what const even means but I'll put it here anyway
remove unused or used-once variables
make touch scaling functions const, and put their implementations together
removed unused FingerID parameters
QTouchEvent forward declaration; add comment to TouchBegin that was lost in an edit
better DRY in SDL
To do -> TODO(NeatNit)
remove unused include
|
|\ \ \ \
| | | | |
| | | | | |
svcBreak, Signalling to the debugger should not kill execution
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
When loading NROs, svcBreak is called to signal to the debugger that a new "module" is loaded. As no debugger is technically attached we shouldn't be killing the programs execution.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
telemetry_session: Minor miscellaneous changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
There's no "func" parameter, so this can just be removed.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Prevents potential compilation issues in the future by including missing
headers for certain functions and types.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This isn't implemented anywhere, so it can just be removed.
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | | |
We don't need to potentially heap-allocate a std::string instance here,
given the data is known ahead of time. We can just place it within an
array and pass this to the mbedtls functions.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
ips_layer: Minor miscellaneous changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We can just compare the existing std::vector instance with a constexpr
std::array containing the desired match. This is lighter resource-wise,
as we don't need to allocate on the heap.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Makes the layout of the array consistent, by making all elements match,
instead of special-casing the first one.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Adds missing includes to prevent potential compilation issues in the
future. Also moves the definition of a struct into the cpp file, so that
some includes don't need to be introduced within the header.
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
We don't need to make a copy of the read data, so we can std::move it
into the make_shared call here.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Fixed smo softlock due to incorrect effect state updating
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Softlock explanation:
after effects are initialized in smo, nothing actually changes the state. It expects the state to always be initialized. With the previous testing, updating the states much like how we handle the memory pools continue to have the softlock(which is why I said it probably wasn't effects) after further examination it seems like effects need to be initialized but the state remains unchanged until further notice. For now, assertions are added for the aux buffers to see if they update, unable to check as I haven't gotten smo to actually update them yet.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
fsmitm_romfsbuild: Add support for stubbing and IPS patches in LFS
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
ips_layer: Add support for IPSwitch executable patches
|
| | | | | |
| | | | | |
| | | | | | |
Specifically bugs/crashes that arise when putting them in positions that are legal but not typical, such as midline, between patch data, or between patch records.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
More accurately follows IPSwitch specification.
|
| | | | | | |
|
| | | | | | |
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Converts between bytes and strings when the size is not known at compile time.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fixed assertion due to CountAddOnContent & Casting warnings
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | | |
Word count should be 3 since we're pushing a result code and a u32.
Also fixed up compiler warnings due to casting
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Unmapping an unmapped buffer should succeed
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Hardware tests show that trying to unmap an unmapped buffer already should always succeed. Hardware test was tested up to 32 iterations of attempting to unmap
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
nso/nro: Add support for passing command-line arguments to executable
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Uses -p (--program) and following string as args.
|
| | | | | |
|
| | | | | |
|
|/ / / /
| | | |
| | | |
| | | | |
Only added if arguments string is non-empty and a pass is requested by loader.
|
|\ \ \ \
| | | | |
| | | | | |
loader: Add support for packed updates
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Reads as Update (NSP) in add-ons
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Will prefer any installed update over the packed version.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Reads the update included with the game if it has one and adds the new ErrorNoPackedUpdate status.
|
| |/ / /
| | | |
| | | |
| | | | |
Fixes errors with certain updates
|
|\ \ \ \
| | | | |
| | | | | |
gl_rasterizer: Implement accelerated Fermi2D copies.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Implemented Depth Compare, Shadow Samplers and Texture Processing Modes for TEXS and TLDS
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Port citra-emu/citra#4311: "Remove "#" in the version number"
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | | |
So that people can stop using it in issue/pr comments and randomly link some other issue/pr unintentionally.
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
Port citra-emu/citra#4140: "misc input tab improvements"
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Added a context menu on the buttons including Clear & Restore Default
* Allow clearing (unsetting) inputs. Added a Clear All button
* Allow restoring a single input to default (instead of all)
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Port citra-emu/citra#4312: "Update fmt to 5.2.1"
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
It seems to fix msvc warnings
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Ported #4296 from citra
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This will allow us to easily remove the use of "NFC" in "System"
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
gl_rasterizer: Fixup undefined behaviour in SetupDraw
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
Port citra-emu/citra#4313: "CONTRIBUTING.md - remove note about casting numeric types"
|
|/ / / / /
| | | | |
| | | | | |
Apparently it's not true: https://github.com/citra-emu/citra/pull/4310#discussion_r223174725
|
|\ \ \ \ \
| | | | | |
| | | | | | |
qt: Update telemetry links
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
These were pointing to a non-existent webpage.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Port web_service from Citra
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | |/ /
| |/| | |
|
|\ \ \ \
| |_|/ /
|/| | | |
kernel/mutex: Amend behavior of TransferMutexOwnership()
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This was the result of a typo accidentally introduced in
e51d715700a35a8f14e5b804b6f7553c9a40888b. This restores the previous
correct behavior.
The behavior with the reference was incorrect and would cause some games
to fail to boot.
|
|\ \ \
| | | |
| | | | |
ui_settings: Place definition of the theme array within the cpp file
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Placing the array wholesale into the header places a copy of the whole
array into every translation unit that uses the data, which is wasteful.
Particularly given that this array is referenced from three different
translation units.
This also changes the array to contain pairs of const char*, rather than
QString instances. This way, the string data is able to be fixed into
the read-only segment of the program, as well as eliminate static
constructors/heap allocation immediately on program start.
|
|\ \ \ \
| | | | |
| | | | | |
gl_rasterizer: Implement quads topology
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
thread: Make the scheduler pointer a regular pointer
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Conceptually, it doesn't make sense for a thread to be able to persist
the lifetime of a scheduler. A scheduler should be taking care of the
threads; the threads should not be taking care of the scheduler.
If the threads outlive the scheduler (or we simply don't actually
terminate/shutdown the threads), then it should be considered a bug
that we need to fix.
Attributing this to balika011, as they opened #1317 to attempt to fix
this in a similar way, but my refactoring of the kernel code caused
quite a few conflicts.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
kernel/thread: Make all instance variables private
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Many of the member variables of the thread class aren't even used
outside of the class itself, so there's no need to make those variables
public. This change follows in the steps of the previous changes that
made other kernel types' members private.
The main motivation behind this is that the Thread class will likely
change in the future as emulation becomes more accurate, and letting
random bits of the emulator access data members of the Thread class
directly makes it a pain to shuffle around and/or modify internals.
Having all data members public like this also makes it difficult to
reason about certain bits of behavior without first verifying what parts
of the core actually use them.
Everything being public also generally follows the tendency for changes
to be introduced in completely different translation units that would
otherwise be better introduced as an addition to the Thread class'
public interface.
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
text_formatter: Avoid unnecessary string temporary creation in PrintMessage()
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
operator+ for std::string creates an entirely new string, which is kind
of unnecessary here if we just want to append a null terminator to the
existing one.
Reduces the total amount of potential allocations that need to be done
in the logging path.
|
|\ \ \ \
| | | | |
| | | | | |
file_sys: Add support for loading IPS patches
|
| | | | |
| | | | |
| | | | |
| | | | | |
Avoid resource-heavy classes and remove quasi-duplicated code.
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
While PatchExeFS operated on the entire directory, this function operates on the uncompressed NSO. Avoids copying decompression code to PatchManager.
|
| | | | | |
|
| | | | | |
|
| | |_|/
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
aoc_u: Fix edge case with DLC that causes breaks
|
| |/ / /
| | | |
| | | |
| | | | |
In some games (Splatoon 2 and Splatoon 2 Splatfest World Premiere, notably), pass offset=0 and count=2047 into the ListAddOnContent method which should return all DLCs for the current title. The (presumably) intended behavior is to successfully return a empty array but because of a < v. <= in an if statement, a failure error code was returned causing these games to svcBreak. This fixes that if statement.
|
|\ \ \ \
| | | | |
| | | | | |
configure_graphics: Make functions internally linked where applicable
|
| | |/ /
| |/| |
| | | |
| | | |
| | | | |
These aren't used outside of this translation unit, so they can be
internally linked.
|
|\ \ \ \
| | | | |
| | | | | |
configure_audio: Minor cleanup-related changes
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Keeps the individual behaviors in their own functions, and cleanly
separate. We can also do a little better by converting the relevant IDs
within the core to a QString only once, instead of converting every
string into a std::string.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This ensures that the proper codec will always be used no matter what.
It also avoids relying on ASCII conversions.
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Disambiguates what the string represents to help translators more easily
understand what it is that they're translating. While we're at it, we
can move the code to its own function, so that we don't need to specify
the same string twice.
|
|\ \ \ \
| | | | |
| | | | | |
services/fsp_srv: Amend service function table
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Adds new functions that have been given names to the table. Information
is based off what is provided on Switchbrew.
|
|\ \ \ \
| | | | |
| | | | | |
configure_input: Make analog mapping strings translatable
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
These strings are user-facing, so they should be specified as
translatable with tr().
|
|\ \ \ \
| | | | |
| | | | | |
submission_package: Cleanup and bug fixes
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
GetName() returns a std::string by value, not by reference, so after the
std::string_view is constructed, it's not well defined to actually
execute any member functions of std::string_view that attempt to access
the data, as the std::string has already been destroyed. Instead, we can
just use a std::string and erase the last four characters.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
If a ticket file was ever a null pointer, we'd cause a null pointer
dereference, as we were calling GetExtension() on the pointer instance.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
When searching for a file extension, it's generally preferable to begin
the search at the end of the string rather than the beginning, as the
whole string isn't going to be walked just to check for something at the
end of it.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
If an error occurs when constructing the PartitionFilesystem instance,
the constructor would be exited early, which wouldn't initialize the
extracted data member, making it possible for other code to perform an
uninitialized read by calling the public IsExtractedType() member
function. This prevents that.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Like the other two bits of factored out code, this can also be put
within its own function. We can also modify the code so that it accepts
a const reference to a std::vector of files, this way, we can
deduplicate the file retrieval.
Now the constructor for NSP isn't a combination of multiple behaviors in
one spot. It's nice and separate.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This too, is completely separate behavior from what is in the
constructor, so we can move this to its own isolated function to keep
everything self-contained.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This behavior is entirely independent of the surrounding code, so it can
be put in its own function to keep the behavior separate.
|
| |/ / /
| | | |
| | | |
| | | | |
We can use early continues here to reduce the amount of nesting.
|
|\ \ \ \
| | | | |
| | | | | |
service/lbl: Update service function table
|
| | |/ /
| |/| |
| | | |
| | | |
| | | | |
Amends the lbl service table to include new names of functions that were
added to Switchbrew.
|
|\ \ \ \
| | | | |
| | | | | |
Port citra-emu/citra#4253: "common/string_util cleanup"
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
First of all they are foundamentally broken. As our convention is that std::string is always UTF-8, these functions assume that the multi-byte character version of TString (std::string) from windows is also in UTF-8, which is almost always wrong. We are not going to build multi-byte character build, and even if we do, this dirty work should be handled by frontend framework early.
|
| |/ / /
| | | |
| | | |
| | | | |
We always use unicode internally. Any dirty work of conversion with other codec should be handled by frontend framework (Qt). Further more, ShiftJIS/CP1252 are not special (they are not code set used by 3ds, or any guest/host dependencies we have), so there is no reason to specifically include them
|
|\ \ \ \
| |/ / /
|/| | | |
card_image: Ensure program_nca_status is always initialized
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
If any of the error paths before the NCA retrieval are taken, it'll
result in program_nca_status being left in an inconsistent state. So we
initialize it by default with a value indicating an error.
|
|\ \ \
| |_|/
|/| | |
aoc_u: Implement functions and add support for DLC loading
|
| | | |
|
| | |
| | |
| | | |
Command #5
|
| | |
| | |
| | |
| | | |
Commands #2, #3, and #7
|
| | |
| | |
| | |
| | | |
Previous behavior was to assert. Seems to mirror expected game behavior.
|
| | | |
|
|\ \ \
| |_|/
|/| | |
gl_rasterizer: Fixup unassigned point sizes
|
|/ / |
|
|\ \
| | |
| | | |
TLDS: Add 1D sampler
|
| | | |
|
| |\ \ |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
externals: Update dynarmic to 4e6848d
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
4e6848d A32/ir_emitter: Bugfix: ExceptionRaised was producing incorrect PC
41ba9fd value: Move ImmediateToU64() to be a part of Value's interface
c6a6271 reg_alloc: Emit AVX instructions where able
aedd32a abi: Emit AVX instructions where able
f2d9337 a64_exclusive_monitor: Loosen memory ordering requirements
7ca709d travis: Make macOS builds use Xcode 10
14dd45e Fix VShift terminology
88554c4 emit_x64_vector: AVX512 implementation of EmitVectorLogicalVShiftS16
ab4e316 emit_x64_vector: AVX512 implementation of EmitVectorLogicalVShiftS64
0ea84f3 emit_x64_vector: AVX2 implementation of EmitVectorLogicalVShiftS32
c77a2c5 emit_x64_vector: AVX512 implementation of EmitVectorLogicalVShiftU16()
e9441fd emit_x64_vector: AVX2 implementation of EmitVectorLogicalVShiftU64()
0e9c33c emit_x64_vector: AVX2 implementation of EmitVectorLogicalVShiftU32()
8f85274 emit_x64_vector: SSSE3 variant of EmitVectorCountLeadingZeros8()
be05e75 Merge pull request #397 from VelocityRa/dec-shift-fix
bc328fc decoders: Cast to correctly-sized type before shifting
9c3d2d1 a64_emit_x64: Lowercase PAGE_SIZE
f538d29 emit_x64_vector_floating_point: SSE4.1 implementation of EmitFPVectorToFixed
1603a6e emit_x64_vector_floating_point: EmitFPVectorRoundInt: Use FCODE
2e1ccaf emit_x64_vector: AVX implementation for EmitVectorCountLeadingZeros8
555bfda emit_x64_vector: SSE implementation of EmitVectorCountLeadingZeros16
71c2589 externals: Update Xbyak to 5.73
1ec1b2f Squashed 'externals/xbyak/' changes from 1de435ed..42462ef9
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_rasterizer_cache: Implement cubemap textures.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- Fixes issues with Splatoon 2.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| |/ / / / |
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
qt: Install System TitleTypes to System NAND
|
| | | | |
| | | | |
| | | | | |
Fixes an issue where installed system archive NCAs would be installed to user NAND and not recognized by games.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Implement ISystemDisplayService::GetDisplayMode
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
svc: Implement svcGetThreadContext
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Now that we have all of the rearranging and proper structure sizes in
place, it's fairly trivial to implement svcGetThreadContext(). In the
64-bit case we can more or less just write out the context as is, minus
some minor value sanitizing. In the 32-bit case we'll need to clear out
the registers that wouldn't normally be accessible from a 32-bit
AArch32 exectuable (or process).
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This will be necessary for the implementation of svcGetThreadContext(),
as the kernel checks whether or not the process that owns the thread
that has it context being retrieved is a 64-bit or 32-bit process.
If the process is 32-bit, then the upper 15 general-purpose registers
and upper 16 vector registers are cleared to zero (as AArch32 only has
15 GPRs and 16 128-bit vector registers. not 31 general-purpose
registers and 32 128-bit vector registers like AArch64).
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Makes the public interface consistent in terms of how accesses are done
on a process object. It also makes it slightly nicer to reason about the
logic of the process class, as we don't want to expose everything to
external code.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Internally within the kernel, it also includes a member variable for the
floating-point status register, and TPIDR, so we should do the same here to match
it.
While we're at it, also fix up the size of the struct and add a static
assertion to ensure it always stays the correct size.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Port citra-emu/citra#4269: "OSX: Set MACOSX_DEPLOYMENT_TARGET to 10.13"
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
loader: Make the Load() function take a process as a regular reference, not a SharedPtr
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
A process should never require being reference counted in this
situation. If the handle to a process is freed before this function is
called, it's definitely a bug with our lifetime management, so we can
put the requirement in place for the API that the process must be a
valid instance.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Port citra-emu/citra#4258: "Meta: Add gitattributes file"
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Github Linguist will read this file when calculating language stats for
the repository. We can use this to exclude any vendored dependencies in
externals and dist. Also makes all h files be considered cpp
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/object: Remove unnecessary std::move from DynamicObjectCast()
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
boost::static_pointer_cast for boost::intrusive_ptr (what SharedPtr is),
takes its parameter by const reference. Given that, it means that this
std::move doesn't actually do anything other than obscure what the
function's actual behavior is, so we can remove this. To clarify, this
would only do something if the parameter was either taking its argument
by value, by non-const ref, or by rvalue-reference.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
video_core: Implement point_size and add point state sync
|
| | |_|/ / / / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
gl_state: Pack sampler bindings into a single ARB_multi_bind
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| |_|/ / / / / / /
|/| | | | | | | | |
process/vm_manager: Initial modifications to load NPDM metadata
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
The locations of these can actually vary depending on the address space
layout, so we shouldn't be using these when determining where to map
memory or be using them as offsets for calculations. This keeps all the
memory ranges flexible and malleable based off of the virtual memory
manager instance state.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Previously, these were reporting hardcoded values, but given the regions
can change depending on the requested address spaces, these need to
report the values that the memory manager contains.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Given games can also request a 32-bit or 39-bit address space, we
shouldn't be hardcoding the address space range as 36-bit.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Rather than hard-code the address range to be 36-bit, we can derive the
parameters from supplied NPDM metadata if the supplied exectuable
supports it. This is the bare minimum necessary for this to be possible.
The following commits will rework the memory code further to adjust to
this.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Port citra-emu/citra#3979 game_list: move SearchField to game_list_p.h and fix untranslated text
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
I have tested and made sure the text is translatable, but this would require a translation update to take effect.
|
|\ \ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / / /
|/| | | | | | | | | |
stream: Preserve enum class type in GetState()
|
| | |/ / / / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Preserves the meaning/type-safetiness of the stream state instead of
making it an opaque u32. This makes it usable for other things outside
of the service HLE context.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
FPCR register was uninitialized at start up
|
| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
CMake: Remove superfluous CMAKE_RUNTIME_OUTPUT_DIRECTORY assignment
|
| | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
Improved Fast Swizzle and Legacy Swizzle
|
| | | | | | | | | | | | |
|
| | | | | | | | | | | | |
|
| | | | | | | | | | | | |
|
| | | | | | | | | | | | |
|
| | | | | | | | | | | | |
|
| | | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \ \
| |_|_|_|_|_|/ / / / / /
|/| | | | | | | | | | | |
fsmitm_romfsbuild: Minor changes
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Avoids making copies of large std::vector instances where it's trivially
avoidable to do so.
|
|/ / / / / / / / / / /
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Theres no need to do explicit bitwise arithmetic here, when we have a
function that does this with a more descriptive name.
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
kernel/scheduler: Take ARM_Interface instances by reference
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
This is only exposed by reference, so we can just make it a unique
pointer to get rid of the need to also use reference counting for the
pointer.
|
| | |_|/ / / / / / / /
| |/| | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
It doesn't make sense to allow a scheduler to be constructed around a
null pointer.
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
service: Add missing headers inclusions where applicable
|
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Gets rid of a few indirect inclusions.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
video_core: Add asserts for CS, TFB and alpha testing
|
| | |_|_|_|_|_|_|_|/ / /
| |/| | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
Add asserts for compute shader dispatching, transform feedback being
enabled and alpha testing. These have in common that they'll probably break
rendering without logging.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
vfs: Minor cleanup related changes to layered VFS code
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Avoids the need to nest code quite a bit by early-exiting in error
cases.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Orders the initializer list members to be in the same order that they
would be initialized in. Avoids compiler warnings.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Cast where explicitly necessary and in other cases we can simply modify
the algorithm to accomodate larger data.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
There's no need to duplicate in-class initializers with a constructor
initializer list. std::strings also initialize to empty by default.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
The std::vector instances are already initially allocated with all
entries having these values, there's no need to loop through and fill
them with it again when they aren't modified.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
auto x = 0;
auto-deduces x to be an int. This is undesirable when working with
unsigned values. It also causes sign conversion warnings. Instead, we
can make it a proper unsigned value with the correct width that the
following expressions operate on.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Ternary operators have a lower precedence than arithmetic operators, so
what was actually occurring here is "return (out + full) ? x : y" which most
definitely isn't intended, given we calculate out recursively above. We
were essentially doing a lot of work for nothing.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
This can cause warnings about static constructors, and is also not ideal
performance-wise due to the indirection through std::function. This also
keeps the behavior itself separate from the surrounding code, which can
make it nicer to read, due to the size of the code.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Given we just recently had a patch backport this from citra, let's try
and keep the convention uniform.
|
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | |
| | | | | | | | | | | | | |
Given these are only added to the class to allow those functions to
access the private constructor, it's a better approach to just make them
static functions in the interface, to make the dependency explicit.
|
| |/ / / / / / / / / / /
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | |
| | | | | | | | | | | | |
This converts it into a regular constructor parameter. There's no need
to make this a template parameter on the class when it functions
perfectly well as a constructor argument.
This also reduces the amount of code bloat produced by the compiler, as
it doesn't need to generate the same code for multiple different
instantiations of the same class type, but with a different fill value.
|
|\ \ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / / /
|/| | | | | | | | | | | |
travis: Make macOS builds utilize Xcode 10
|
| | |/ / / / / / / / /
| |/| | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Keeps the used toolchain up to date and finally allows the use of
<optional> and <variant> standard library headers within the codebase.
|
|\ \ \ \ \ \ \ \ \ \ \
| |_|/ / / / / / / / /
|/| | | | | | | | | | |
file_sys: Add support for LayeredFS mods
|
| | | | | | | | | | | |
|
| | | | | | | | | | | |
|
| | | | | | | | | | | |
|
| | | | | | | | | | | |
|
| | | | | | | | | | | |
|
| | | | | | | | | | | |
|
| | | | | | | | | | | |
|
| | | | | | | | | | | |
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Reads multiple dirs through as if a waterfall.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Maps a vector into the VFS interface.
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Always returns the template argument byte for all reads. Doesn't support writes.
|
| | | | | | | | | | | |
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
Maps name string to directory or file.
|
| | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / / / /
|/| | | | | | | | | | |
svc: Updated svc names
|
| | | | | | | | | | | |
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
* Implemented fatal:u properly
fatal:u now is properly implemented with all the ipc cmds. Error reports/Crash reports are also now implemented for fatal:u. Crash reports save to yuzu/logs/crash_reports/
The register dump is currently known as sysmodules send all zeros. If there are any non zero values for the "registers" or the unknown values, let me know!
* Fatal:U fixups
* Made fatal:u execution break more clear
* Fatal fixups
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
* Stubbed IRS
Currently we have no ideal way of implementing IRS. For the time being we should have the functions stubbed until we come up with a way to emulate IRS properly.
* Added IRS to logging backend
* Forward declared shared memory for irs
|
|\ \ \ \ \ \ \ \ \ \ \
| |_|_|_|_|/ / / / / /
|/| | | | | | | | | | |
Corrected SSL::SetInterfaceVersion
|
| | |_|_|_|_|_|_|_|/
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Should be a single u32
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
* Added glObjectLabels for renderdoc for textures and shader programs
* Changed hardcoded "Texture" name to reflect the texture type instead
* Removed string initialize
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Port citra-emu/citra#4245: "common/thread: remove YieldCPU()"
|
| | |_|_|_|_|_|/ / /
| |/| | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
simply use the standard library yield()
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
Port citra-emu/citra#4214: "Set citra-qt project as default StartUp Project in Visual Studio"
|
| | | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| | | | | | | | | | | |
| | | | | | | | | | | | |
Added audren:u#GetAudioRendererState
|
| | |_|_|_|_|/ / / / /
| |/| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / / /
|/| | | | | | | | | | |
Correction of the ComponentType of BC6H_UF16 & BC6H_SF16
|
|/ / / / / / / / / / |
|
|\ \ \ \ \ \ \ \ \ \
| |_|/ / / / / / / /
|/| | | | | | | | | |
process: Make a few member variables private where applicable
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Reduces the use of Process class members externally and keeps most code
related to tearing down a process with the rest of the process code.
|
| | |_|_|_|_|/ / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Allows making several members of the process class private, it also
avoids going through Core::CurrentProcess() just to retrieve the owning
process.
|
|\ \ \ \ \ \ \ \ \
| |_|/ / / / / / /
|/| | | | | | | | |
Build: Reintroduce Appveyor deploy
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This was erroneously removed when we added travis mingw builds. We still
want to push MSVC builds to github for the time being
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
shader_bytecode: Make operator== and operator!= of IpaMode const qualified
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This is more consistent with the surrounding enums.
|
| | |_|_|_|/ / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
These don't affect the state of the struct and can be const member
functions.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
gl_state: Remove unused type alias
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This isn't used anywhere within the header, so we can remove it, along
with the include that was previously necessary. This also uncovers an
indirect include in the cpp file for the assertion macros.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Logging: Change the TimeStretch::Process log from debug to trace level.
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This function is called too many times and makes the debug logging basically unusable due to the spam.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
yuzu_cmd: fix sd card directory set to nand directory
|
| | |_|_|_|/ / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
game_list: Add Qt SmoothTransformation to picture scaling
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
gl_stream_buffer: Fix use of bitwise OR instead of logical OR in Map()
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This was very likely intended to be a logical OR based off the
conditioning and testing of inversion in one case.
Even if this was intentional, this is the kind of non-obvious thing one
should be clarifying with a comment.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* Added support for uncompressed NSOs
* Moved compressed section check to NsoHeader
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
travis: running mingw build on travis ci
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This commit also fixed a broken cmake dependency with unicorn
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
yuzu-cmd: Add filesystem service initializer call
|
| | |_|_|_|_|/
| |/| | | | |
| | | | | | |
| | | | | | | |
Ensures all relevant filesystem objects are initialized and eliminates a crash related to the RegisteredCache.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/thread: Use owner_process when setting the page table in SetupMainThread()
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The owning process of a thread is required to exist before the thread,
so we can enforce this API-wise by using a reference. We can also avoid
the reliance on the system instance by using that parameter to access
the page table that needs to be set.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
arm_interface: Replace kernel vm_manager include with a forward declaration
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Avoids an unnecessary inclusion and also uncovers three places where
indirect inclusions were relied upon, which allows us to also resolve
those.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
RasterizerGL: Use the correct framebuffer when clearing via the CLEAR_BUFFERS register.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Previously we were clearing the default backbuffer framebuffer.
Found thanks to a Piglit test :)
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
file-sys: Default heavy-weight class destructors in the cpp file
|
| | |_|_|_|/ /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Several classes have a lot of non-trivial members within them, or don't
but likely should have the destructor defaulted in the cpp file for
future-proofing/being more friendly to forward declarations.
Leaving the destructor unspecified allows the compiler to inline the
destruction code all over the place, which is generally undesirable from
a code bloat perspective.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
game_list: Handle plurals within setFilterResult() better
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Qt provides an overload of tr() that operates on quantities in relation
to pluralization. This also allows the translation to adapt based on the
target language rules better.
For example, the previous code would result in an incorrect translation
for the French language (which doesn't use the pluralized version of
"result" in the case of a total of zero. While in English it's
correct to use the pluralized version of "result", that is, "results"
---
For example:
English: "0 results"
French: "0 résultat" (uses the singular form)
In French, the noun being counted is singular if the quantity is 0 or 1.
In English, on the other hand, if the noun being counted has a quantity
of 0 or N > 1, then the noun is pluralized.
---
For another example in a language that has different counting methods
than the above, consider English and Irish. Irish has a special form of
of a grammatical number called a dual. Which alters how a word is
written when N of something is 2. This won't appear in this case with a
direct number "2", but it would change if we ever used "Two" to refer to
two of something. For example:
English: "Zero results"
Irish: "Toradh ar bith"
English: "One result"
Irish: "Toradh amháin"
English: "Two results"
Irish: "Dhá thorthaí" <- Dual case
Which is an important distinction to make between singular and plural,
because in other situations, "two" on its own would be written as "dó"
in Irish. There's also a few other cases where the order the words are
placed *and* whether or not the plural or singular variant of the word
is used *and* whether or not the word is placed after or between a set
of numbers can vary. Counting in Irish also differs depending on whether or not
you're counting things (like above) or counting people, in which case an
entirely different set of numbers are used.
It's not important for this case, but it's provided as an example as to why one
should never assume the placement of values in text will be like that of
English or other languages. Some languages have very different ways to
represent counting, and breaking up the translated string like this
isn't advisable because it makes it extremely difficult to get right
depending on what language a translator is translating text into due to
the ambiguity of the strings being presented for translation.
In this case a translator would see three fragmented strings on
Transifex (and not necessarily grouped beside one another, but even
then, it would still be annoying to decipher):
- "of"
- "result"
- "results"
There is no way a translator is going to know what those sets of words
are actually used for unless they look at the code to see what is being
done with them (which they shouldn't have to do).
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Added IRequest::Submit
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This fixes updated versions of SMO. Currently unable to test as I don't have an updated version
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
ring_buffer: Use std::hardware_destructive_interference_size to determine alignment size for avoiding false sharing
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Avoids the need to repeat "std::" twice
|
| | |_|_|_|_|/ /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
MSVC 19.11 (A.K.A. VS 15.3)'s C++ standard library implements P0154R1
(http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0154r1.html)
which defines two new constants within the <new> header, std::hardware_destructive_interference_size
and std::hardware_constructive_interference_size.
std::hardware_destructive_interference_size defines the minimum
recommended offset between two concurrently-accessed objects to avoid
performance degradation due to contention introduced by the
implementation (with the lower-bound being at least alignof(max_align_t)).
In other words, the minimum offset between objects necessary to avoid
false-sharing.
std::hardware_constructive_interference_size on the other hand defines
the maximum recommended size of contiguous memory occupied by two
objects accessed wth temporal locality by concurrent threads (also
defined to be at least alignof(max_align_t)). In other words the maximum
size to promote true-sharing.
So we can simply use this facility to determine the ideal alignment
size. Unfortunately, only MSVC supports this right now, so we need to
enclose it within an ifdef for the time being.
|
|\ \ \ \ \ \ \ \
| |_|_|_|/ / / /
|/| | | | | | | |
Revert GetRequestState
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Even though setting this value to 3 is more correct. We break more games than we fix due to missing implementations. We should keep this as 0 for the time being
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Correct endianness of BRK
|
| | |/ / / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
externals: Update dynarmic to 171d116
|
| | | | | | | |
|
| | | | | | | |
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
171d116 A64: Implement SCVTF, UCVTF (vector, fixed-point), scalar variant
f221bb0 emit_x64_floating_point: Reduce fallback LUT code in EmitFPToFixed
eb123e2 A64: Implement FCVTZS, FCVTZU, UCVTF, SCVTF (vector, fixed-point), vector variant
487d37a A64: Implement UQSHL's vector immediate and register variants
f698933 ir: Add opcodes for unsigned saturating left shifts
7148e66 A64/translate/impl: Make signatures consistent for unimplemented by-element SIMD variants
fdde4ca A64: Implement BRK
b1490db A64/imm: Add full range of comparison operators to Imm template
1ec40ef IR: Add fbits argument to FPVectorFrom{Signed,Unsigned}Fixed
d6d5e98 A64: Implement SCVTF, UCVTF (scalar, fixed-point)
6513595 opcodes.inc: Align columns to a tabstop of 4
6b0d2b5 IR: Add fbits argument to FixedToFP-related opcodes
c4b3831 A64: Implement SQSHL's vector immediate variant
e0d8d2d A64: Implement SQSHL's vector register variant
5327625 ir: Add opcodes for left signed saturated shifts
9705252 branch: Make variables const where applicable
650946e move_wide: Make variables const where applicable
62b3a6d load_store_register_unprivileged: Make variables const where applicable
3add1c7 load_store_register_immediate: Place conditional bodies on their own line
2fc4088 load_store_load_literal: Make variables const where applicable
b2c1462 data_processing_logical: Move datasize declarations after early-exit conditionals
028028f data_processing_conditional_select: Make variables const where applicable
c66042d data_processing_addsub: Move datasize declarations after early-exit conditionals
6bc546e data_processing_bitfield: Move datasize variables after early-exit conditionals
2aad5fa A64: Implement CLS's vector variant
6c877ff emit_x64_vector: Make EmitVectorUnsignedSaturatedAccumulateSigned() internally linked
4b5926d perf_map: Use std::string_view instead of std::string for PerfMapRegister()
7445947 A64: Implement SQRDMULH (vector), vector variant
03b80f2 A64: Implement SQDMULL (vector), vector variant
4a2c596 IR: Add VectorSignedSaturatedDoublingMultiplyLong
59dc33e emit_x64_vector: Changes to VectorSignedSaturatedDoublingMultiply
bbaebeb IR: Implement Vector{Signed,Unsigned}Multiply{16,32}
baac5a8 backend_x64/a64_interface: Re-enable the constant folding pass
e78ca19 emit_x64_vector_floating_point: Hardware FMA implementation for RSqrtStepFused
8a5ae9a emit_x64_vector_floating_point: Hardware FMA implementation of FPVectorRecipStepFused
39818f9 emit_x64_floating_point: Hardware FMA implementation of FPRSqrtStepFused
3d0a0b4 emit_x64_floating_point: Hardware FMA implementation of FPRecipStepFused{32,64}
2293dff emit_x64_vector: SSE implementation of VectorSignedSaturatedAccumulateUnsigned{8,16,32}
2047683 emit_x64_vector: Correct static asserts for < 64-bit type checks in saturated accumulate fallbacks
55e9e40 emit_x64_vector: EmitVectorSignedSaturatedAccumulateUnsigned64: SSE implementation
1076651 emit_x64_vector: Simplify fpsr_qc related code
4039030 A64: Implement CLZ's vector variant
0bb908f ir: Add opcodes for vector CLZ operations
3b13259 A64/translate: VectorZeroUpper for V(64) stores
1931d44 simd_two_register_misc: FNEG (vector) with Q == 0 had dirty upper
a0790f0 emit_x64_vector: Remove unnecessary [[maybe_unused]] attributes
b0e1eb5 A64: Implement USQADD's scalar and vector variants
28424c7 ir: Add opcodes form unsigned saturated accumulations of signed values
9923ea0 A64: Implement SUQADD's scalar and vector variants
4c0adbb ir: Add opcodes for signed saturated accumulations of unsigned values
799bfed A64: Implement SMLAL{2}, SMLSL{2}, UMLAL{2}, and UMLSL{2}'s vector by-element variants
94451ec A64: Implement UMULL{2}'s vector by-element variant
45867de A64: Implement SMULL{2}'s vector by-element variant
0235793 ir/value: Replace includes with forward declarations
450f721 ir/cond: Migrate to C++17 nested namespace specifiers
e649988 CMakeLists: Add missing cond.h header to file listing
d20e769 A64: Implement URSQRTE
4f3bde5 ir: Add opcodes for performing unsigned reciprocal square root estimates
cfeeaec A64: Implement URECPE
622b60e ir: Add opcodes for unsigned reciprocal estimate
d17599a Update Xbyak to 5.71
f7c26e9 Squashed 'externals/xbyak/' changes from 671fc805..1de435ed
8782b69 travis: Make macOS build with Xcode 9.4.1
b575b23 A64: Implement SQNEG's scalar and vector variant
06062a9 A64: Add opcodes for signed saturating negations
1c40579 emit_x64_vector: Simplify "position == 0" case for EmitVectorExtract()
e335050 emit_x64_vector: Simplify "position == 0" case for EmitVectorExtractLower()
8b13421 A64: Implement SQDMULH's by-element scalar variant
9122a6e A64: Implement SQDMULH's by-element vector variant
176e60e backend/x64: Do not clear fast_dispatch_table if not enabled
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
savedata_factory: Add TemporaryStorage SaveDataType
|
| | |_|/ / /
| |/| | | |
| | | | | | |
Seems to be used by NSO NES Emulator
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
control_metadata: Move language name array definition to the cpp file
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
There's no need to indent the code here, given the if case contains a
return statement at the end of it.
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This was used in two different translation units
(deconstructed_rom_directory and patch_manager). This means we'd be
pointlessly duplicating the whole array twice due to it being defined
within the header.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
xts_archive/nax: Minor interface changes
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
These variables aren't used, which still has an impact, as std::vector
cannot be optimized away by the compiler (it's constructor and
destructor are both non-trivial), so this was just wasting memory.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
std::shared_ptr isn't strictly necessary here and is only ever used in
contexts where the object doesn't depend on being shared. This also
makes the interface more flexible, as it's possible to create a
std::shared_ptr from a std::unique_ptr (std::shared_ptr has a
constructor that accepts a std::unique_ptr), but not the other way
around.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
An instance of the NAX apploader already has an existing NAX instance in
memory. Calling directly into IdentifyType() directly would re-parse the
whole file again into yet another NAX instance, only to toss it away
again.
This gets rid of unnecessary/redundant file parsing and allocations.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
AsNCA() allocates an NCA instance every time it's called. In the current
manner it's used, it's quite inefficient as it's making a redundant
allocation.
We can just amend the order of the conditionals to make it easier to
just call it once.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Ensures that the member always has a deterministic value.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Orders the initializer list in the same order the members would be
initialized. Avoids compiler warnings.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Implemented NTC & IEnsureNetworkClockAvailabilityService
|
| | | | | | |
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
Needed because of the recent nim fixes
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Reworked incorrect nifm stubs
Need confirmation on `CreateTemporaryNetworkProfile`, unsure which game uses it but according to reversing. It should return a uuid which we currently don't do.
Any 0 client id is considered an invalid client id.
GetRequestState 0 is considered invalid.
* Fixups for nifm
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_rasterizer: Fix StartAddress handling with indexed draw calls.
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | | |
We uploaded the wrong data before. So the offset on the host GPU pointer may work for the first vertices, the last ones run out bounds.
Let's just offset the upload instead.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fixed GetAccountId stub, Added error code for OpenDirectory and added ActivateNpadWithRevision
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
With these, `Nintendo Entertainment System - Nintendo Switch Online` loads
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Removed the use of rp.MakeBuilder in the yuzu codebase
|
| | | | | |
|
|/ / / /
| | | |
| | | |
| | | | |
Due to keeping the code style consistent in the yuzu codebase. `rb = rp.MakeBuilder(...)` was replaced with `rb{ctx, ...}`
|
|\ \ \ \
| | | | |
| | | | | |
Implemented IProfile::GetImageSize
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
audio_core: Replace includes with forward declarations where applicable.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This isn't used within this header and isn't necessary.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids propagating includes in headers where it's not necessary to do
so.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids including unnecessary headers within the audio_renderer.h header,
lessening the likelihood of needing to rebuild source files including
this header if they ever change.
Given std::vector allows forward declaring contained types, we can move
VoiceState to the cpp file and hide the implementation entirely.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Implemented GetDefaultDisplayResolution
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
core/core_cpu: Replace exclusive monitor include with forward declaration
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | | |
We don't need to include this as a dependency within the header. A
regular forward declaration will suffice here.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
svc_wrap: Convert the PARAM macro into a function
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This can just be a regular function, getting rid of the need to also
explicitly undef the define at the end of the file. Given FuncReturn()
was already converted into a function, it's #undef can also be removed.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Stubbed ActivateConsoleSixAxisSensor & StartConsoleSixAxisSensor
|
| | | | | | | |
|
| | | | | | | |
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_shader_decompiler: Avoid truncation warnings within LD_A and ST_A code
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
These are internally stored as u64 values, so using u32 here causes
truncation warnings. Instead, we can just use u64 and preserve the bit
width.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
shader_decompiler: Implemented (Partialy) Control Codes and CSETP
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
shader_decompiler: Asserts for Texture Instructions
|
| | | | | | | |
|
| |/ / / / / |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* Fix bug where default username value for yuzu_cmd create an userprofile with uninitialize data as username
* Fix format
* Apply code review changes
* Remove nullptr check
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
kernel/svc: Handle invalid address cases within svcArbitrateLock() and svcArbitrateUnlock()
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
We already have a ResultCode constant for the case of an invalid
address, so we can just use it instead of re-rolling that ResultCode
type.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The kernel does the equivalent of the following check before proceeding:
if (address + 0x8000000000 < 0x7FFFE00000) {
return ERR_INVALID_MEMORY_STATE;
}
which is essentially what our IsKernelVirtualAddress() function does. So
we should also be checking for this.
The kernel also checks if the given input addresses are 4-byte aligned,
however our Mutex::TryAcquire() and Mutex::Release() functions already
handle this, so we don't need to add code for this case.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
arm_interface: Remove ARM11-isms from the CPU interface
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This modifies the CPU interface to more accurately match an
AArch64-supporting CPU as opposed to an ARM11 one. Two of the methods
don't even make sense to keep around for this interface, as Adv Simd is
used, rather than the VFP in the primary execution state. This is
essentially a modernization change that should have occurred from the
get-go.
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
arm_dynarmic: Correct ExclusiveWrite128()'s operation
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Previously the second half of the value being written would overwrite
the first half. Thankfully this wasn't a bug that was being encountered,
as the function is currently unused.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Implemented (Partialy) Shader Header
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Optimized Texture Swizzling
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
service/vi: Replace includes with forward declarations where applicable
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/errors: Amend error code for ERR_NOT_FOUND
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This is the value returned by the kernel for svcConnectToNamedPort() if
the named port cannot be found.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
audio_core/time_stretch: Silence truncation warnings in Process()
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
The SoundTouch API only accepts uint amount of samples.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
gl_shader_decompiler: Get rid of variable shadowing within LEA instructions
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
These variables are already defined within an outer scope.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
services/sm: Amend error code constants
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Courtesy of @ogniK5377.
This also moves them into the cpp file and limits the visibility to
where they're directly used. It also gets rid of unused or duplicate
error codes.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
cubeb_sink: Get rid of variable shadowing within CubebSink's constructor
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The parameter of the lambda was shadowing the variable that was being
assigned to.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/svc: Handle a few error cases within memory-related functions
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The kernel caps the size limit of shared memory to 8589930496 bytes (or
(1GB - 512 bytes) * 8), so approximately 8GB, where every GB has a 512
byte sector taken off of it.
It also ensures the shared memory is created with either read or
read/write permissions for both permission types passed in, allowing the
remote permissions to also be set as "don't care".
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Part of the checking done by the kernel is to check if the given
address and size are 4KB aligned, as well as checking if the size isn't
zero. It also only allows mapping shared memory as readable or
read/write, but nothing else, and so we shouldn't allow mapping as
anything else either.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The kernel checks if the addresses and given size is 4KB aligned before
continuing onwards to map the memory.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The kernel checks if the given size is a multiple of 2MB and <= to 4GB
before going ahead and attempting to allocate that much memory.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
cubeb_sink: Correct context name in ListCubebSinkDevices()
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
This ain't Citra.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Port #4192 from Citra: "svc: change unknown to thread in CreateThread"
|
| | |_|_|_|_|/
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Port #4171 from Citra: "Tests: Remove glad test OS X work-around"
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Port #4182 from Citra: "Prefix all size_t with std::"
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Implement RenderTargetFormat::BGR5A1_UNORM
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
game_list_p: Take map iterator contents by const reference
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Adds a missing 'i' character that was missing in compatibility.
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
We don't need to copy the whole struct in this instance, we can just
utilize a reference instead.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
yuzu/util: Antialias game list compatibility pixmaps
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
We pass a hint to the QPainter instance that we want anti-aliasing on
the compatibility icons, which prevents the circles from looking fairly
jagged, and actually makes them look circular.
|
|\ \ \ \ \ \ \
| |_|_|_|_|/ /
|/| | | | | | |
Implement ASTC_2D_8X8
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Shaders: Implemented multiple-word loads and stores to and from attribute memory.
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | | |
This seems to be an optimization performed by nouveau.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
GPU: Basic implementation of the Kepler Inline Memory engine (p2mf).
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This engine writes data from a FIFO register into the configured address.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
kernel/thread: Include thread-related enums within the kernel namespace
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Previously, these were sitting outside of the Kernel namespace, which
doesn't really make sense, given they're related to the Thread class
which is within the Kernel namespace.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
service: Use nested namespace specifiers where applicable
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
There were a few places where nested namespace specifiers weren't being
used where they could be within the service code. This amends that to
make the namespacing a tiny bit more compact.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
services/pl_u: Add missing Korean font to the fallback case for shared fonts
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Previously this wasn't using the Korean font at all.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
ipc: fix spelling mistake
|
|/ / / / / / |
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* gl_rasterizer: use ARB_multi_bind for uniform buffers
* address feedback
|
|\ \ \ \ \
| | | | | |
| | | | | | |
audio_core/sink_details: Change std::string parameter into std::string_view
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | | |
The given string is only ever used for lookup and comparison, so we can
just utilize a non-owning view to string data here
|
|\ \ \ \ \
| | | | | |
| | | | | | |
yuzu/configure_gamelist: Mark combo-box strings as translatable
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Given these are shown to the user, they should be translatable.
While we're at it, also set up the dialog to automatically retranslate
the dialog along with the combo boxes if it receives a LanguageChange
event.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We don't need to use an allocating container for these, given we know
the fixed amount of strings being used. This is just a waste of memory.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Keeps the individual initialization of the combo boxes logically separate.
We also shouldn't be dumping this sort of thing in the constructor
directly.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
audio_core: Add audio stretching support
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This reduces clicking in output audio should we underrun.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |_|_|_|_|/ /
|/| | | | | | |
gl_rasterizer_cache: B5G6R5U should use GL_RGB8 as an internal format.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
- Fixes a regression with Sonic Mania with ARB_texture_storage.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
pl_u: Eliminate mutable file-scope state
|
| | |_|/ / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | | |
Converts the PL_U internals to use the PImpl idiom and makes the state
part of the Impl struct, eliminating mutable global/file state.
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
shader_decompiler: Implemented (Partially) Texture Processing Modes
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
kernel/errors: Amend invalid thread priority and invalid processor ID error codes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is what the kernel does for an out-of-range processor ID.
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
svc: Do nothing in svcOutputDebugString() if given a length of zero
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
While unlikely, it does avoid constructing a std::string and
unnecessarily calling into the memory code if a game or executable
decides to be really silly about their logging.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
This should be a u64 to represent size.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Set yuzu project as default StartUp Project in Visual Studio
|
|/ / / / /
| | | | |
| | | | | |
Set yuzu project as default StartUp Project in Visual Studio
|
|\ \ \ \ \
| | | | | |
| | | | | | |
service/prepo: Move class into the cpp file
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This doesn't need to be exposed within the header and be kept in the
translation unit, eliminating the need to include anything within the
header.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
game_list: Resolve variable shadowing within LoadCompatibilityList()
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
"value" is already a used variable name within the outermost ranged-for
loop, so this variable was shadowing the outer one. This isn't a bug,
but it will get rid of a -Wshadow warning.
|
| |/ / /
| | | |
| | | |
| | | | |
This way, we aren't constructing unnecessary QJsonValue instances.
|
|\ \ \ \
| | | | |
| | | | | |
service/audio: Replace includes with forward declarations where applicable
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
A few headers were including other headers when a forward declaration
can be used instead, allowing the include to be moved to the cpp file.
|
|\ \ \ \
| | | | |
| | | | | |
Port Citra #4047 & #4052: add change background color support
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_rasterizer_cache: Improve accuracy of caching and copies.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- Fixes several rendering issues with Super Mario Odyssey.
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | | |
- This was once an optimization, but we no longer need it with the cache reserve.
- This is also inaccurate.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_rasterizer: Use ARB_texture_storage.
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
It allows us to use texture views and it reduces the overhead within the GPU driver.
But it disallows us to reallocate the texture, but we don't do so anyways.
In the end, it is the new way to allocate textures, so there is no need to use the old way.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
shader_decompiler: Implemented LEA and PSET
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
hle/service: Default constructors and destructors in the cpp file where applicable
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
When a destructor isn't defaulted into a cpp file, it can cause the use
of forward declarations to seemingly fail to compile for non-obvious
reasons. It also allows inlining of the construction/destruction logic
all over the place where a constructor or destructor is invoked, which
can lead to code bloat. This isn't so much a worry here, given the
services won't be created and destroyed frequently.
The cause of the above mentioned non-obvious errors can be demonstrated
as follows:
------- Demonstrative example, if you know how the described error happens, skip forwards -------
Assume we have the following in the header, which we'll call "thing.h":
\#include <memory>
// Forward declaration. For example purposes, assume the definition
// of Object is in some header named "object.h"
class Object;
class Thing {
public:
// assume no constructors or destructors are specified here,
// or the constructors/destructors are defined as:
//
// Thing() = default;
// ~Thing() = default;
//
// ... Some interface member functions would be defined here
private:
std::shared_ptr<Object> obj;
};
If this header is included in a cpp file, (which we'll call "main.cpp"),
this will result in a compilation error, because even though no
destructor is specified, the destructor will still need to be generated by
the compiler because std::shared_ptr's destructor is *not* trivial (in
other words, it does something other than nothing), as std::shared_ptr's
destructor needs to do two things:
1. Decrement the shared reference count of the object being pointed to,
and if the reference count decrements to zero,
2. Free the Object instance's memory (aka deallocate the memory it's
pointing to).
And so the compiler generates the code for the destructor doing this inside main.cpp.
Now, keep in mind, the Object forward declaration is not a complete type. All it
does is tell the compiler "a type named Object exists" and allows us to
use the name in certain situations to avoid a header dependency. So the
compiler needs to generate destruction code for Object, but the compiler
doesn't know *how* to destruct it. A forward declaration doesn't tell
the compiler anything about Object's constructor or destructor. So, the
compiler will issue an error in this case because it's undefined
behavior to try and deallocate (or construct) an incomplete type and
std::shared_ptr and std::unique_ptr make sure this isn't the case
internally.
Now, if we had defaulted the destructor in "thing.cpp", where we also
include "object.h", this would never be an issue, as the destructor
would only have its code generated in one place, and it would be in a
place where the full class definition of Object would be visible to the
compiler.
---------------------- End example ----------------------------
Given these service classes are more than certainly going to change in
the future, this defaults the constructors and destructors into the
relevant cpp files to make the construction and destruction of all of
the services consistent and unlikely to run into cases where forward
declarations are indirectly causing compilation errors. It also has the
plus of avoiding the need to rebuild several services if destruction
logic changes, since it would only be necessary to recompile the single
cpp file.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fixed renderdoc input/output textures not working due to multiple render targets
|
| |/ / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
externals: Place font data within cpp files
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This places the font data within cpp files, which mitigates the
possibility of the font data being duplicated within the binary if it's
referred to in more than one translation unit in the future. It also
stores the data within a std::array, which is more flexible when it
comes to operating with the standard library.
Furthermore, it makes the data arrays const. This is what we want, as it
allows the compiler to store the data within the read-only segment. As
it is, having several large sections of mutable data like this just
leaves spots in memory that we can accidentally write to (via accidental
overruns, what have you) and actually have it work. This ensures the
font data remains the same no matter what.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Add open-source shared fonts
* Address review comments
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Joystick hotplug support (#4141)
* use SDL_PollEvent instead of SDL_JoystickUpdate
Register hot plugged controller by GUID if they were configured in a previous session
* Move SDL_PollEvent into its own thread
* Don't store SDLJoystick pointer in Input Device; Get pointer on each GetStatus call
* Fix that joystick_list gets cleared after SDL_Quit
* Add VirtualJoystick for InputDevices thats never nullptr
* fixup! Add VirtualJoystick for InputDevices thats never nullptr
* fixup! fixup! Add VirtualJoystick for InputDevices thats never nullptr
* Remove SDL_GameController, make SDL_Joystick* unique_ptr
* fixup! Remove SDL_GameController, make SDL_Joystick* unique_ptr
* Adressed feedback; fixed handling of same guid reconnects
* fixup! Adressed feedback; fixed handling of same guid reconnects
* merge the two joystick_lists into one
* make SDLJoystick a member of VirtualJoystick
* fixup! make SDLJoystick a member of VirtualJoystick
* fixup! make SDLJoystick a member of VirtualJoystick
* fixup! fixup! make SDLJoystick a member of VirtualJoystick
* SDLJoystick: Addressed review comments
* Address one missed review comment
|
|\ \ \ \
| | | | |
| | | | | |
gl_rasterizer: Implement clear for non-zero render targets.
|
| | | | |
| | | | |
| | | | |
| | | | | |
- Several misc. changes to ConfigureFramebuffers in support of this.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_rasterizer_cache: Only use depth for applicable texture formats.
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
- Fixes an issue with Octopath Traveler leaving stale data here.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_rasterizer_cache: Implement RenderTargetFormat::BGRA8_SRGB.
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
- Used by Octopath Traveler (with multiple render targets).
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Remove the multi-core option from the UI
|
| | | | | | |
|
| |/ / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
video_core: Optimize the command processor.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Inline the WriteReg helper as it is called ~20k times per frame.
|
| | | | |
| | | | |
| | | | |
| | | | | |
This moves the hot loop into video_core. This refactoring shall reduce the CPU overhead of calling ProcessCommandList.
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This virtual function is called in a very hot spot, and it does nothing.
If this kind of feature is required, please be more specific and add callbacks
in the switch statement within Maxwell3D::WriteReg. There is no point in having
another switch statement within the rasterizer.
|
|\ \ \ \
| | | | |
| | | | | |
gl_rasterizer: Implement multiple color attachments.
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
yuzu-cmd: fix SDL logging
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
yuzu: Move compatibility list specifics to their own source files
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The compatibility list isn't modified within any of the slots connected
to this signal, so we can make it const to enforce immutability.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Lets us keep the generic portions of the compatibility list code
together, and allows us to introduce a type alias that makes it so we
don't need to type out a very long type declaration anymore, making the
immediate readability of some code better.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
hid: Implement ReloadInputDevices
|
| | |_|/ / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
service: Remove unused g_kernel_named_ports variable
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
With the named port functionality all migrated over to the kernel,
there's no need to keep this around anymore.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
shader_decompiler: Implemented TMML
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
GPU/DMA: Partially implemented the 'enable_2d' bit in the DMA engine.
|
| | |_|_|_|/ /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
When not set, this tells the GPU to only use the X size when performing a DMA copy.
This is only implemented for linear->linear and tiled->tiled copies. Conversion copies still retain the assert.
This bit is unset by some games for various purposes, and by nouveau when copying the vertex buffers.
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
video_core: fixed arithmetic overflow warnings & improved code style
|
| | |_|/ / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- Fixed all warnings, for renderer_opengl items, which were indicating a
possible incorrect behavior from integral promotion rules and types
larger than those in which arithmetic is typically performed.
- Added const for variables where possible and meaningful.
- Added constexpr where possible.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
shader_decompiler: Implemented (Partialy) TXQ
|
| | | | | | |
|
| | |/ / /
| |/| | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Externals: Update xbyak
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Initial support for non-2D textures
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
- Will not work for non-2d textures, and was not used anyways.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
yuzu: fix title bar display
|
| | |/ / /
| |/| | |
| | | | | |
Previously the version number got hidden after starting a game.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
audio_renderer: Rename AudioOut instance to audio_out
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
gl_rasterizer: Use baseInstance instead of moving the buffer points.
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | | |
This hopefully helps our cache not to redundant upload the vertex buffer.
# Conflicts:
# src/video_core/renderer_opengl/gl_rasterizer.cpp
|
|\ \ \ \
| |/ / /
|/| | | |
yuzu: Move GameListWorker to its own source files
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This has gotten sufficiently large enough to warrant moving it to its
own source files. Especially given it dumps the file_sys headers around
code that doesn't use it for the most part.
This'll also make it easier to introduce a type alias for the
compatibility list, so a large unordered_map type declaration doesn't
need to be specified all the time (we don't want to propagate the
game_list_p.h include via the main game_list.h header).
|
| |/ /
|/| |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* video_core: Arithmetic overflow fix for gl_rasterizer
- Fixed warnings, which were indicating incorrect behavior from integral
promotion rules and types larger than those in which arithmetic is
typically performed.
- Added const for variables where possible and meaningful.
* Changed the casts from C to C++ style
Changed the C-style casts to C++ casts as proposed.
Took also care about signed / unsigned behaviour.
|
|\ \ \
| | | |
| | | | |
core: Migrate current_process pointer to the kernel
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Given we now have the kernel as a class, it doesn't make sense to keep
the current process pointer within the System class, as processes are
related to the kernel.
This also gets rid of a subtle case where memory wouldn't be freed on
core shutdown, as the current_process pointer would never be reset,
causing the pointed to contents to continue to live.
|
|\ \ \ \
| |_|/ /
|/| | | |
externals: Update dynarmic to 9594465
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
9594465 A64: Implement FastDispatchHint
2be95f2 A32: Implement FastDispatchHint
96f23ac ir/terminal: Add FastDispatchHint
f5ca9e9 A64: Implement SQDMULH's scalar variant
af8bea5 ir: Add opcodes for scalar signed saturated doubling multiplies
fed4220 A64: Implement SQDMULH's vector variant
72eb6ad ir: Add opcodes for signed saturated doubling multiplies
0f8ae84 externals: Update catch to 2.4.0
235165b A64: Implement SQABS' scalar variant
1adca93 A64: Implement SQABS' vector variant.
f978c44 ir: Add opcodes for signed saturated absolute values
d895a84 emit_x64_floating_point: EmitFPToFixed: maxsd optimization
c624fe3 emit_x64_floating_point: ZeroIfNaN: pxor -> xorps
e987a84 IR: Simplify FP{Single,Double}ToFixed{U,S}{32,64}
f1babc8 externals: Update catch to 2.3.0
a0c587a A32/decoder: Add missing <algorithm> includes
|
|\ \ \
| |/ /
|/| | |
Port #3804 from Citra - Better Title Bar Display
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
file_sys/{nca_patch, patch_manager}: Amend unnecessary/missing includes.
|
| | |
| | |
| | |
| | |
| | |
| | | |
Orders the elements in the initializer list in the order they're
specified in the class. This prevents compiler warnings about
initialization order.
|
| | |
| | |
| | |
| | |
| | | |
romfs.h doesn't need to be included in the header, the only real
dependency here is common's swap.h that needs to be included.
|
| | |
| | |
| | |
| | | |
These includes were previously being satisfied indirectly.
|
|\ \ \
| | | |
| | | | |
frontend: Set swap interval to 0
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
core/core: Remove unnecessary sm/controller include
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The only reason this include was necessary, was because the constructor
wasn't defaulted in the cpp file and the compiler would inline it
wherever it was used. However, given Controller is forward declared, all
those inlined constructors would see an incomplete type, causing a
compilation failure. So, we just place the constructor in the cpp file,
where it can see the complete type definition, allowing us to remove
this include.
|
|\ \ \ \
| | | | |
| | | | | |
video_core/CMakeLists: Add missing gl_buffer_cache.h
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Without this, the header file won't show up by default within IDEs such
as Visual Studio.
|
|\ \ \ \
| | | | |
| | | | | |
video_core/gl_buffer_cache: Minor tidying changes
|
| | | | |
| | | | |
| | | | |
| | | | | |
Ensures that the cache always has a deterministic initial state.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
GetHandle() internally calls GetHandle() on the stream_buffer instance,
which is a const member function, so this can be made const as well.
|
| | | | | |
|
| |/ / /
| | | |
| | | |
| | | | |
Implicit conversions during construction isn't desirable here.
|
|\ \ \ \
| | | | |
| | | | | |
gl_rasterizer: Call state.Apply only once on SetupShaders.
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
gl_shader_decompiler: Implement saturate mode for IPA.
|
|/ / / |
|
|\ \ \
| |/ /
|/| | |
gl_shader_gen: Initialize position.
|
|/ /
| |
| |
| |
| | |
IMO the old code is fine, but nvidia raises shader compiler warnings.
Trivial fix through...
|
|\ \
| | |
| | | |
gl_rasterizer: Implement a VAO cache.
|
| | |
| | |
| | |
| | |
| | |
| | | |
This patch caches VAO objects instead of re-emiting all pointers per draw call.
Configuring this pointers is known as a fast task, but it yields too many GL
calls. So for better performance, just bind the VAO instead of 16 pointers.
|
|\ \ \
| | | |
| | | | |
shader_decompiler: Implemented IPA Properly (Stage 1)
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
file_sys/submission_package: Replace includes with forward declarations where applicable
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Orders the elements in the sequence to match the order in which they'll
actually be initialized in.
|
| | |/ /
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
file_sys: Add support for BKTR format (Game Updates)
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Now display correct error instead of catch-all MissingProgramNCA
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Mainly, from control.nacp metadata instead of cnmt metadata
|
| | | | |
| | | | |
| | | | |
| | | | | |
Fixes base game read errors
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Right now only includes Updates, but should eventually contain all of the other patches we need.
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Aggregates multiple caches into one interface
|
| | | | |
| | | | |
| | | | |
| | | | | |
Reduces code
|
| | | | |
| | | | |
| | | | |
| | | | | |
Issues with block size are fixed by making all reads minimum length of 0x10
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
gl_rasterizer: Skip TODO log.
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This is called ~3k times per frame in SMO ingame.
My laptop spends ~3ms per frame on allocating and freeing this string.
Let's just stop printing this kind of redundant information.
|
|\ \ \ \
| |_|/ /
|/| | | |
renderer_opengl: Implement a buffer cache.
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The idea of this cache is to avoid redundant uploads. So we are going
to cache the uploaded buffers within the stream_buffer and just reuse
the old pointers.
The next step is to implement a VBO cache on GPU memory, but for now,
I want to check the overhead of the cache management. Fetching the
buffer over PCI-E should be quite fast.
|
|\ \ \
| |/ /
|/| | |
gl_shader_cache: Use an u32 for the binding point cache.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The std::string generation with its malloc and free requirement
was a noticeable overhead. Also switch to an ordered_map to
avoid the std::hash call. As those maps usually have a size of
two elements, the lookup time shall not matter.
|
|\ \ \
| |/ /
|/| | |
file_sys: Add Nintendo Submissions Package (NSP) file format
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Eliminated duplicate code and adds support for Rev1+ carts
|
| | | |
|
| | |
| | |
| | |
| | | |
Previously only loaded from control metadata
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
common/logging: Minor changes
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Multi-line doc comments still need the '<' after the ///, otherwise it's
treated as a regular comment and makes the original doc comment broken
in viewers, IDEs, etc. While we're at it, also fix some typos in the
comments.
|
| | | |
|
| | |
| | |
| | |
| | | |
Implicit conversions aren't desirable here.
|
|\ \ \
| | | |
| | | | |
Optimizations
|
| | | |
| | | |
| | | |
| | | | |
This helper is called very often. The memory ownership shall not be transfered, so just return the raw pointer.
|
| |/ /
| | |
| | |
| | |
| | | |
subchannel is a 3 bit field. So there must not be more than 8 bound engines.
And using a hashmap for up to 8 values is a bit overpowered.
|
|\ \ \
| | | |
| | | | |
file_sys: Allow for custom NAND/SD directories
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
gl_shader_decompiler: Use used_shaders member variable directly within GenerateDeclarations()
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Using the getter function intended for external code here makes an
unnecessary copy of the already-accessible used_shaders vector.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
file_sys: Replace includes with forward declarations where applicable
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | | |
Cuts down on include dependencies, resulting in less files that need to
be rebuilt when certain things are changed.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Update microprofile scopes.
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Blame the subsystems which deserve the blame :)
The updated list is not complete, just the ones I've spotted on random sampling the stack trace.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
ssl: Move SSL class to cpp file
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | | |
This isn't required to be visible to anything outside of the main source
file, and will eliminate needing to rebuild anything else including the
header if the SSL class needs to be changed in the future.
|
|\ \ \ \
| | | | |
| | | | | |
service: Migrate global named port map to the KernelCore class
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | | |
Now that we have a class representing the kernel in some capacity, we
now have a place to put the named port map, so we move it over and get
rid of another piece of global state within the core.
|
|\ \ \ \
| |_|_|/
|/| | | |
vfs_real: Forward declare IOFile
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Eliminates the need to rebuild some source files if the file_util header
ever changes. This also uncovered some indirect inclusions, which have
also been fixed.
|
|\ \ \
| |/ /
|/| | |
externals: Update dynarmic to 0435ac2
|
|/ / |
|
|\ \
| | |
| | | |
filesystem/maxwell_3d: Various changes to boot Project Octopath Traveller
|
| | | |
|
| | | |
|
| |/ |
|
|\ \
| | |
| | | |
Added assert for TEXS nodep
|
| |/ |
|
|\ \
| | |
| | | |
Build - Upload fewer artifacts
|
| |/
| |
| |
| |
| | |
Appveyor has a limit on artifact retention, and we hit the limit all the
time, so just lower the number of build artifacts to just the final zip
|
|\ \
| | |
| | | |
yuzu: Display the unsupported GL extensions in the popup
|
| |/ |
|
|\ \
| | |
| | | |
Added better asserts to IPA, Renamed IPA modes to match mesa
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
IpaMode is changed to IpaInterpMode
IpaMode is suppose to be 2 bits not 3
Added IpaSampleMode
Added Saturate
Renamed modes based on
https://github.com/mesa3d/mesa/blob/d27c7918916cdc8092959124955f887592e37d72/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp#L2530
|
|\ \
| | |
| | | |
Added FFMA asserts and missing fields
|
| | |
| | |
| | |
| | | |
Saturate already implemented
|
| | | |
|
| |/ |
|
|\ \
| | |
| | | |
Added FMUL asserts
|
| | |
| | |
| | |
| | | |
Unneeded as we already implement it
|
| |/ |
|
|\ \
| |/
|/| |
filesystem: Move dir retrieval after path checking in DeleteFile()
|
|/
|
|
|
| |
We don't need to do the lookup if the path is considered empty
currently.
|
|\
| |
| | |
.travis: Use Citras ccache for builds instead of yuzus
|
| | |
|
|\ \
| |/
|/| |
core/core: Replace includes with forward declarations where applicable
|
|/
|
|
|
|
|
|
|
|
|
| |
The follow-up to e2457418dae19b889b2ad85255bb95d4cd0e4bff, which
replaces most of the includes in the core header with forward declarations.
This makes it so that if any of the headers the core header was
previously including change, then no one will need to rebuild the bulk
of the core, due to core.h being quite a prevalent inclusion.
This should make turnaround for changes much faster for developers.
|
|\
| |
| | |
Various fixes and improvements to rasterizer cache 2: Electric Boogaloo
|
| | |
|
| | |
|
| | |
|
| | |
|
|/
|
|
|
| |
- Use a single cached page map.
- Fix calculation of ending page.
|
|
|
|
|
|
|
|
|
| |
* Implement BC6H_UF16 & BC6H_SF16
Require by ARMS
* correct coding style
* correct coding style part 2
|
|\
| |
| | |
core: Make the main System class use the PImpl idiom
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
core.h is kind of a massive header in terms what it includes within
itself. It includes VFS utilities, kernel headers, file_sys header,
ARM-related headers, etc. This means that changing anything in the
headers included by core.h essentially requires you to rebuild almost
all of core.
Instead, we can modify the System class to use the PImpl idiom, which
allows us to move all of those headers to the cpp file and forward
declare the bulk of the types that would otherwise be included, reducing
compile times. This change specifically only performs the PImpl portion.
|
|\ \
| | |
| | | |
Report correct shader size.
|
| | |
| | |
| | |
| | |
| | | |
Seems like this was an oversee in regards to 1fd979f50a9f4c21fa8cafba7268d959e3076924
It changed GLShader::ProgramCode to a std::vector, so sizeof is wrong.
|
|\ \ \
| |/ /
|/| | |
Add predicate comparison 14 (GreaterEqualWithNan)
|
|/ / |
|
|\ \
| | |
| | | |
yuzu: Show game compatibility in the game list (PR ported from Citra)
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
* Implement POPC
* implement invert
|
|\ \ \
| |_|/
|/| | |
gl_shader_decompiler: Improve IPA for Pass mode with Position attribute.
|
| | | |
|
|\ \ \
| | | |
| | | | |
kernel: Eliminate kernel global state
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
As means to pave the way for getting rid of global state within core,
This eliminates kernel global state by removing all globals. Instead
this introduces a KernelCore class which acts as a kernel instance. This
instance lives in the System class, which keeps its lifetime contained
to the lifetime of the System class.
This also forces the kernel types to actually interact with the main
kernel instance itself instead of having transient kernel state placed
all over several translation units, keeping everything together. It also
has a nice consequence of making dependencies much more explicit.
This also makes our initialization a tad bit more correct. Previously we
were creating a kernel process before the actual kernel was initialized,
which doesn't really make much sense.
The KernelCore class itself follows the PImpl idiom, which allows
keeping all the implementation details sealed away from everything else,
which forces the use of the exposed API and allows us to avoid any
unnecessary inclusions within the main kernel header.
|
|\ \ \
| | | |
| | | | |
Port #3825 from Citra: "travis: share environment variables with Docker"
|
| | | | |
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
Shaders: Implemented IADD3
|
|/ / |
|
|\ \
| | |
| | | |
gpu: Make memory_manager private
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Makes the class interface consistent and provides accessors for
obtaining a reference to the memory manager instance.
Given we also return references, this makes our more flimsy uses of
const apparent, given const doesn't propagate through pointers in the
way one would typically expect. This makes our mutable state more
apparent in some places.
|
|\ \ \
| | | |
| | | | |
gl_rasterizer: Remove unused variables
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
hle/result: Make ResultVal's move constructor as noexcept
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Many containers within the standard library provide different behaviors
based on whether or not a move constructor/assignment operator can be
guaranteed not to throw or not.
Notably, implementations will generally use std::move_if_noexcept (or an
internal implementation of it) to provide strong exception guarantees.
If a move constructor potentially throws (in other words, is not
noexcept), then certain behaviors will create copies, rather than moving
the values.
For example, consider std::vector. When a std::vector calls resize(),
there are two ways the elements can be relocated to the new block of
memory (if a reallocation happens), by copy, or by moving the existing
elements into the new block of memory. If a type does not have a
guarantee that it will not throw in the move constructor, a copy will
happen. However, if it can be guaranteed that the move constructor won't
throw, then the elements will be moved.
This just allows ResultVal to be moved instead of copied all the time if
ever used in conjunction with containers for whatever reason.
|
|\ \ \
| |_|/
|/| | |
gl_shader_cache: Remove unused program_code vector in GetShaderAddress()
|
| |/
| |
| |
| |
| |
| |
| |
| | |
Given std::vector is a type with a non-trivial destructor, this
variable cannot be optimized away by the compiler, even if unused.
Because of that, something that was intended to be fairly lightweight,
was actually allocating 32KB and deallocating it at the end of the
function.
|
|\ \
| |/
|/| |
yuzu: Fix two stupid errors made in #1141
|
|/ |
|
|\
| |
| | |
renderer_opengl: Implement a new shader cache.
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
yuzu: Fix input UI direction order for the right stick
|
|/ / |
|
|\ \
| |/
|/| |
kernel/error: Amend several error codes
|
| |
| |
| |
| |
| |
| | |
We can make this error code an alias of the resource limit exceeded
error code, allowing us to get rid of the lingering 3DS error code of
the same type.
|
| |
| |
| |
| |
| | |
We can treat this as an alias of TooLarge for documentation purposes.
This also lets us get rid of another lingering 3DS-related error code.
|
| |
| |
| |
| |
| | |
This replaces the lingering 3DS constant with the proper one, and
utilizes it within HandleTable's Create() member function.
|
| | |
|
| | |
|
|\ \
| | |
| | | |
shader_bytecode: fix SEL_IMM bitstring
|
| | | |
|
|\ \ \
| | | |
| | | | |
vfs_real: Remove unused variable in CreateDirectoryRelative()
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
file_util: Correct return value in early exit of ReadFileToString()
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
While still essentially being zero, we should be returning a numeric
value here, not a boolean typed value.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
core: Namespace all code in the arm subdirectory under the Core namespace
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Gets all of these types and interfaces out of the global namespace.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
registered_cache: Get rid of variable shadowing in ProcessFiles()
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
Prevents compiler warnings.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
hex_util: Replace logic_errors with LOG_CRITICAL
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Makes it so malformed hex strings do not crash the entire program.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
svc: Return process title ID if queried in GetInfo()
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
We already have the variable itself set up to perform this task, so we
can just return its value from the currently executing process instead
of always stubbing it to zero.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
debug_utils: Minor individual interface changes
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Quite a bit of these aren't necessary directly within the debug_utils
header and can be removed or included where actually necessary.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Avoids implicit conversions.
|
| | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | | |
Ensures that all class members are initialized.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
PL:U Added SharedFonts loading via TTF
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
By having the following TTF files in your yuzu sysdata directory. You can load sharedfonts via TTF files.
FontStandard.ttf
FontChineseSimplified.ttf
FontExtendedChineseSimplified.ttf
FontChineseTraditional.ttf
FontKorean.ttf
FontNintendoExtended.ttf
FontNintendoExtended2.ttf
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
hid: Move core include to cpp file
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This isn't required to be in the header. Instead, directly include what
this header needs and move it to the cpp file where it belongs.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
core: Remove always true conditionals in Load()
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
These conditions are always true, since the outer conditional already
checks for these conditions.
|
|\ \ \ \ \ \ \ \
| |_|_|_|_|/ / /
|/| | | | | | | |
set: Fixed GetAvailableLanguageCodes() to follow the max_entries
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Rightnow, in games use GetAvailableLanguageCodes(), there is a WriteBuffer() with size larger than the buffer_size. (Core Critical core\hle\kernel\hle_ipc.cpp:WriteBuffer:296: size (0000000000000088) is greater than buffer_size (0000000000000078))
0x88 = 17(languages) * 8
0x78 = 15(languages) * 8
GetAvailableLanguageCodes() can only support 15 languages.
After firmware 4.0.0 there are 17 supported language instead of 15, to enable this GetAvailableLanguageCodes2() need to be used.
So GetAvailableLanguageCodes() will be caped at 15 languages.
Reference:
http://switchbrew.org/index.php/Settings_services
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
maxwell3d: Move FinishedPrimitiveBatch event after AcceleratedDrawBatch()
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The start and finish events should likely not be right after one another
like this, otherwise the batch will appear to complete immediately
|
|\ \ \ \ \ \ \
| |_|_|_|_|_|/
|/| | | | | | |
gl_rasterizer: Correct assertion condition in SyncLogicOpState()
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Previously the assert would always be hit, since it was the equivalent
of: array == nullptr, which is never true.
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
filesystem: Fix typo in log message
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
file_sys: Add support for NAX archives
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is needed because the title IDs of update NCAs will not use the update title ID. The only sure way to tell is to look for a partition with BKTR crypto.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
On call to WriteKeyToFile, so that the autogenerated file can be written.
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Stored in a separate file than manual keys.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Should make key gets marginally faster.
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Returns the file before calling parser on it.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Helps with installed games by making the title not a hexadecimal id string, instead the name.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Allows frontend to create registration caches for use before a game has booted.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
XTS with Nintendo Tweak will fail mysteriously if the sector size is not 0x4000. Upgrade the critical log to an assert to prevent undefined behavior.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Fixes a bug where data lengths of less than size 0x10 will fail or have misleading return values.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Prevents NCA-related errors from being masked into MissingProgramNCA or MissingKeyFile
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
qt: Add filename and title id to window title while running
|
| | |_|_|/
| |/| | | |
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
Shaders: Added decodings for IADD3 instructions
|
| |/ / / |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Port #4013 from Citra: "Init logging sooner so we dont miss some logs on startup"
* Fix compilation
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Added GetBootMode
Used by homebrew
* Added enum for GetBootMode
|
|\ \ \
| | | |
| | | | |
gl_rasterizer_cache: Several improvements
|
| | | | |
|
| | | | |
|
| | | | |
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
gl_rasterizer: Implement partial color clear, stencil clear, and stencil test.
|
| | |
| | |
| | |
| | | |
- Used by Splatoon 2.
|
| | | |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
gl_shader_gen: Use a std::vector to represent program code instead of std::array
|
| | |
| | |
| | |
| | | |
Prevents implicit conversions.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
While convenient as a std::array, it's also quite a large set of data as
well (32KB). It being an array also means data cannot be std::moved. Any
situation where the code is being set or relocated means that a full
copy of that 32KB data must be done.
If we use a std::vector we do need to allocate on the heap, however, it
does allow us to std::move the data we have within the std::vector into
another std::vector instance, eliminating the need to always copy the
program data (as std::move in this case would just transfer the pointers
and bare necessities over to the new vector instance).
|
|\ \ \
| |_|/
|/| | |
gl_shader_decompiler: Implement LOP3
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
* Swap "Plus" with "Minus" on the controller GUI
Major fix /s
|
|\ \ \
| | | |
| | | | |
externals: Update fmt to 6201052
|
| | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Previously, we'd get warnings like:
"
c:\projects\yuzu\externals\fmt\include\fmt\format.h(2868): warning
C4127: conditional expression is constant
[C:\projects\yuzu\msvc_build\externals\dynarmic\src\dynarmic.vcxproj]
"
spamming the build output when compiling on Windows. This updates fmt to
include the upstreamed fix that silences this warning.
|
|\ \ \
| | | |
| | | | |
renderer_opengl: Namespace OpenGL code
|
| | |/
| |/|
| | |
| | |
| | |
| | |
| | | |
Namespaces all OpenGL code under the OpenGL namespace.
Prevents polluting the global namespace and allows clear distinction
between other renderers' code in the future.
|
|\ \ \
| |_|/
|/| | |
externals/boost: Update to 1.68.0
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This updates the submodule to use 1.68.0. Notably, it gets rid of the
silly
"Info: Boost.Config is older than your compiler version - probably
nothing bad will happen - but you may wish to look for an update Boost
version. Define BOOST_CONFIG_SUPPRESS_OUTDATED_MESSAGE to suppress this
message."
message that spams the output of the build process on Windows.
|
|\ \
| |/
|/| |
config: Fixed icon size get set to 0
|
|/ |
|
|\
| |
| | |
qt/main: Port part of citra(#3411), open savedata works
|
| | |
|
|\ \
| | |
| | | |
Port #3353 from Citra: "citra-qt: Add customizable speed limit target "
|
| | | |
|
|\ \ \
| | | |
| | | | |
maxwell_to_gl: Implement PrimitiveTopology::Lines
|
| | | |
| | | |
| | | | |
Used by Splatoon 2's debug menu.
|
|\ \ \ \
| | | | |
| | | | | |
Port #3902 from Citra: "Add restart hotkey & menu option"
|
| | |_|/
| |/| | |
|
|\ \ \ \
| |_|/ /
|/| | | |
GPU: Implemented logic ops.
|
| | | |
| | | |
| | | |
| | | | |
This will ASSERT if blending is enabled at the same time as logic ops.
|
| | | | |
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
logging/text_formatter: Use empty braces for initializing CONSOLE_SCREEN_BUFFER_INFO instance
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The previous form of initializing done here is a C-ism, an empty set of
braces is sufficient for initializing (and doesn't potentially cause
missing brace warnings, given the first member of the struct is a COORD
struct).
|
|\ \ \ \
| | | | |
| | | | | |
Revert "Shader: Use the right sampler type in the TEX, TEXS and TLDS …"
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- This reverts commit 3ef4b3d4b445960576f10d1ba6521580d03e3da8.
- This commit had broken a lot of games. We really should do a full implementation of this in one change.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Added missing include for pl:u
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
Should fix any compile errors
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Added bfttf loading
We can now load system bfttf fonts from system archives AND shared memory dumps. This allows people who have installed their system nand dumps to yuzu to automatically get shared font support. We also now don't hard code the offsets or the sizes of the shared fonts and it's all calculated for us now.
* Addressed plu fixups
* Style changes for plu
* Fixed logic error for plu and added more error checks.
|
|\ \ \ \
| | | | |
| | | | | |
vfs: Replace mode.h include with forward declarations where applicable
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Avoids the need to rebuild these source files if the mode header
changes.
|
|\ \ \ \
| | | | |
| | | | | |
am: Utilize std::array within PopLaunchParameter()
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
Gets rid of the potential for C array-to-pointer decay, and also makes
pointer arithmetic to get the end of the copy range unnecessary. We can
just use std::array's begin() and end() member functions.
|
|\ \ \ \
| | | | |
| | | | | |
audio_core/filter: Add explicit cast to assignment in Process()
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Previously this would cause warnings about implicit conversions to s16
from a double
|
|\ \ \ \
| |/ / /
|/| | | |
shader_bytecode: Parenthesize conditional expression within GetTextureType()
|
|/ / /
| | |
| | |
| | | |
Resolves a -Wlogical-op-parentheses warning.
|
|\ \ \
| | | |
| | | | |
sdmc_factory: Remove unnecessary core include
|
| | |/
| |/|
| | |
| | |
| | | |
This doesn't require the central core header to be included, it just
needs the vfs headers.
|
|\ \ \
| | | |
| | | | |
bit_field: Convert ToBool() into explicit operator bool
|
| |/ /
| | |
| | |
| | | |
Gets rid of a TODO that is long overdue.
|
|\ \ \
| | | |
| | | | |
Port #4056 from Citra: "Add Clear Recent Files menu action"
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
perf_stats: Change MAX_LAG_TIME_US to an appropriate value
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| | |
25us is far too small, and would result in std::this_thread::sleep_for
being called with this as a maximum value. This means that a guest
application that produces frames instantly would only be limited to
40 kHz.
25ms is a more appropriate value, as it allows for a 60 Hz refresh
rate while providing enough slack in the negative region.
|
|\ \
| | |
| | | |
rasterizer_interface: Remove renderer-specific ScreenInfo type from AccelerateDraw() in RasterizerInterface
|
| | |
| | |
| | |
| | |
| | |
| | | |
This is an OpenGL renderer-specific data type. Given that, this type
shouldn't be used within the base interface for the rasterizer. Instead,
we can pass this information to the rasterizer via reference.
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Given we use a base-class type within the renderer for the rasterizer
(RasterizerInterface), we want to allow renderers to perform more
complex initialization if they need to do such a thing. This makes it
important to reserve type information.
Given the OpenGL renderer is quite simple settings-wise, this is just a
simple shuffling of the initialization code. For something like Vulkan
however this might involve doing something like:
// Initialize and call rasterizer-specific function that requires
// the full type of the instance created.
auto raster = std::make_unique<VulkanRasterizer>(some, params);
raster->CallSomeVulkanRasterizerSpecificFunction();
// Assign to base class variable
rasterizer = std::move(raster)
|
|\ \
| | |
| | | |
romfs_factory, service/filesystem: Use forward declarations where applicable
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Avoids the need to rebuild multiple source files if the filesystem code
headers change.
This also gets rid of a few instances of indirect inclusions being
relied upon
|
| | |
| | |
| | |
| | |
| | |
| | | |
Avoids the need to rebuild whatever includes the romfs factory header if
the loader header ever changes. We also don't need to include the main
core header. We can instead include the headers we specifically need.
|
|\ \ \
| | | |
| | | | |
Shaders: Implement depth writing in fragment shaders.
|
| | | |
| | | |
| | | |
| | | | |
We'll write <last color output reg + 2> to gl_FragDepth.
|
|\ \ \ \
| | | | |
| | | | | |
renderer_opengl: Use LOG_DEBUG for GL_DEBUG_SEVERITY_NOTIFICATION and GL_DEBUG_SEVERITY_LOW logs
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
LOG_TRACE is only enabled on debug builds which can be quite slow when
trying to debug graphics issues. Instead we can log the messages to the
debug log, which is available on both release and debug builds.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Rasterizer: Use PBOs to reinterpret texture formats when games re-use the same memory.
|
| | | | | |
|
| | |_|/
| |/| | |
|
|\ \ \ \
| |_|/ /
|/| | | |
gl_stream_buffer: Add missing header guard
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Prevents potential compilation errors from occuring due to multiple
inclusions
|
|\ \ \ \
| | | | |
| | | | | |
telemetry_session: Don't allocate std::string instances for program lifetime in GetTelemetryId() and RegenerateTelemetryId()
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Given these functions aren't intended to be used frequently, there's no
need to keep the std::string instances allocated for the whole lifetime
of the program. It's just a waste of memory.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_shader_decompiler: Implement TextureCube/Texture3D for TEX/TEXS.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Shaders: Write all the enabled color outputs when a fragment shader exits.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We were only writing to the first render target before.
Note that this is only the GLSL side of the implementation, supporting multiple render targets requires more changes in the OpenGL renderer.
Dual Source blending is not implemented and stuff that uses it might not work at all.
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
Shaders: Fixed texture coordinates in TEX with Texture2D
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The X and Y coordinates should be in gpr8 and gpr8+1, respectively.
This fixes the cutscene rendering in Sonic Mania.
|
| | |/ / /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
acc/profile_manager: General cleanup
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is only used in a shared_ptr, so we can forward declare it.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We have an overload of WriteBuffer that accepts containers that satisfy
the ContiguousContainer concept, which std::array does, so we only need
to pass in the array itself.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Arranges them in the order the members would be initialized
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is no longer used, so it can be removed.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Makes it a little bit more self-documenting.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Given the source and destination types are the same std::array type, we
can simply use regular assignment to perform the same behavior.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids the need to repeatedly specify the whole array type in multiple
places.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
ProfileInfo is quite a large struct in terms of data, and we don't need
to perform a copy in these instances, so we can just pass constant
references instead.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This doesn't modify the passed in array, so this can be a const
reference.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This can just be constexpr like the others
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We can use the constructor initializer list and just compare the
contained u128's together instead of comparing each element
individually. Ditto for comparing against an invalid UUID.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This avoids needing to dump the contents of <random> into other files
that include the profile manager header.
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | | |
Moving a const reference isn't possible, so this just results in a copy
(and given ProfileInfo is composed of trivial types and aggregates, a
move wouldn't really do anything).
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
externals: Update dynarmic to a42f301c.
|
| | |/ /
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
filesystem: Add support for loading of system archives
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Revert "Port #3616 from Citra: "appveyor: set jobs to 4 for mingw""
|
|/ / / / |
|
|\ \ \ \
| |_|/ /
|/| | | |
common/telemetry: Migrate core-independent info gathering to common
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Previously core itself was the library containing the code to gather
common information (build info, CPU info, and OS info), however all of
this isn't core-dependent and can be moved to the common code and use
the common interfaces. We can then just call those functions from the
core instead.
This will allow replacing our CPU detection with Xbyak's which has
better detection facilities than ours. It also keeps more
architecture-dependent code in common instead of core.
|
|\ \ \ \
| | | | |
| | | | | |
GLRasterizer: Implemented instanced vertex arrays.
|
| | |_|/
| |/| |
| | | |
| | | | |
Before each draw call, for every enabled vertex array configured as instanced, we take the current instance id and divide it by its configured divisor, then we multiply that by the corresponding stride and increment the start address by the resulting amount. This way we can simulate the vertex array being incremented once per instance without actually using OpenGL's instancing functions.
|
|\ \ \ \
| | | | |
| | | | | |
Shaders/TEXS: Write to the correct output register when swizzling.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Previously we could end up with a TEXS that didn't write any outputs, this was wrong.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Shaders: Use the correct shader type when sampling textures.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
It is unknown how TLD4S determines the sampler type, more research is needed.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Different sampler types have their parameters in different registers.
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Added CheckFreeCommunicationPermission
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | | |
This fixes save files not loading in splatoon 2
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
New account backend to allow for future extended support
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| |\ \ \ \ \ \ |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This commit verified working on puyo
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Implemented RGBA8_UINT
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
Needed by kirby
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
game_list: Avoid uninitialized variables when retrieving program ID
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Avoids potentially leaving this variable uninitialized based off the
loader failing to retrieve the ID value.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Shaders: Corrected the 'abs' and 'neg' bit usage in the float arithmetic instructions.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
We should definitely audit our shader generator for more errors like this.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Shader: Remove an unneeded assert, the negate bit is implemented for conversion instructions.
|
| | |_|_|_|/ / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Shaders/TEXS: Fixed the component mask in the TEXS instruction.
|
| | |_|_|_|/ / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
Previously we could end up with a TEXS that didn't write any outputs, this was wrong.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Added WrapMode MirrorOnceClampToEdge
|
| | | | | | | | | |
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
Used by splatoon 2
|
|\ \ \ \ \ \ \ \
| |_|/ / / / / /
|/| | | | | | | |
Shaders: Implemented a stack for the SSY/SYNC instructions.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
The SSY instruction pushes an address into the stack, and the SYNC instruction pops it. The current stack depth is 20, we should figure out if this is enough or not.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Shaders: Added decodings for the LDG and STG instructions.
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Shaders: Implemented the gl_FrontFacing input attribute (attr 63).
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| |_|_|_|_|_|/
|/| | | | | | |
Shader: Implemented the predicate and mode arguments of LOP.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The mode can be used to set the predicate to true depending on the result of the logic operation. In some cases, this means discarding the result (writing it to register 0xFF (Zero)).
This is used by Super Mario Odyssey.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Port #3616 from Citra: "appveyor: set jobs to 4 for mingw"
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Added pred-condition GreaterThanWithNan
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_rasterizer_cache: Remove asserts for supported blits.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
renderer_opengl: Treat OpenGL errors as critical.
|
| |/ / / / / / |
|
| | | | | | |
| | | | | | |
| | | | | | | |
* Used by Mario Tennis Aces
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
core: Delete System copy/move constructors and assignment operators
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Prevents potentially making copies or doing silly things by accident
with the System instance, particularly given our current core is
designed (unfortunately) around one instantiable instance.
This will prevent the accidental case of:
auto instance = System::Instance();
being compiled without warning when it's supposed to be:
auto& instance = System::Instance();
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
qt/main: Get rid of compilation warnings
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
We can change this into an early-return if the filename is empty.
There's no need to include all of the code within the if statement.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This is user-facing text, so it should be marked as translatable by Qt.
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Gets rid of truncation warnings about conversion to int. While we're at
it, we can also de-hardcode the buffer size being used.
|
|\ \ \ \ \ \ \ \
| |_|/ / / / / /
|/| | | | | | | |
Implement GetDefaultDisplayResolutionChangeEvent
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Require by Toki Tori and Toki Tori 2+
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Rasterizer: Manually implemented instanced rendering.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
We keep track of the current instance and update an uniform in the shaders to let them know which instance they are.
Instanced vertex arrays are not yet implemented.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
dynarmic: Update to 550d662
|
| | |_|_|_|/ / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
550d662 load_store_exclusive: Define s == t state to be Constraint_NONE
0b69381 A64/translate: Allow for unpredictable behaviour to be defined
6d236d4 system: Implement MRS CNTFRQ_EL0
6cbb6fb A32/testenv: Add missing headers
6729328 externals: Update xbyak to v5.67
1812bd2 Squashed 'externals/xbyak/' changes from 2794cde7..671fc805
9a95802 externals: Document subtrees
714a840 A64: Implement SQ{ADD, SUB}, and UQ{ADD, SUB}'s vector variants
8cab459 A64: Implement UQADD/UQSUB's scalar variants
18a8151 ir: Add opcodes for unsigned saturating add and subtract
a5660ee x64/reg_alloc: Use type alias for array returned by GetArgumentInfo()
29489b5 ir/value: Use type alias CoprocessorInfo for std::array<u8, 8>
e23ba26 status_register_access: Add support for bits 0 and 1 of mask to MSR
55190bd fuzz_with_unicorn: Split utility functions into fuzz_util
23b049d A32/translate/load_store: Correct detection of writeback
7ec9f15 A32/translate: Add TranslateSingleInstruction
efeecb4 A32/ir_emitter: Bug fix: IREmitter::ExceptionRaised using incorrect opcode
08d1d19 A32/decoders: Split instruction list into include file
2d929cc tests: Refactor unicorn_emu to allow for A32 unicorn
f672368 microinstruction: Improve assert messages
7ebff50 emit_x64_vector: EmitVectorNarrow16: AVX512 implementation
edce230 emit_x64_vector: EmitVectorNarrow32: prefer pblendw to loading constant
|
|\ \ \ \ \ \ \ \ \
| |_|_|/ / / / / /
|/| | | | | | | | |
gl_rasterizer_cache: Treat Depth formats differently from DepthStencil.
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| |_|/ / / / / / /
|/| | | | | | | | |
common: Namespace hex_util.h/.cpp
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
It's in the common code, so it should be under the Common namespace like
everything else.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
loader/{nca, xci}: Remove unnecessary includes and unused member variables
|
| | | | | | | | |
|
| | |_|_|_|_|/
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Many of these aren't necessary and will cause this file to be required
to be recompiled whenever any changes to those files are made, which
lengthens compile times for no reason.
This also removes an unused metadata variable from AppLoader_XCI
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
file_sys: Add support for registration format
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Fix logic in RealVfsFilesystem Create methods
Remove magic numbers
Fix regex errors
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Avoids unnecessary rebuilds of control data on every layer of recursion in AddFstEntriesToGameList
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Instead of defaulting to VfsRawCopy
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Prompts for title type on NCA files.
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Manages NAND NCA get and install.
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Fixes bugs with calling CreateFile when the immediate directory does not exist.
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Creates and stores RegisteredCaches for user and system NAND, as creation of a RegisteredCache is expensive.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
i.e. Load the concatenated 00+01 if 01 exists as well. Needed for split NAND NCAs.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Needed to avoid mismatch filetype warnings on split NAND NCAs
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Move to hex_util.h in common
|
| | | | | | | | |
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| |_|_|/ / / / /
|/| | | | | | | |
lm: Handle threads and modules within the logger
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Using LOG_TRACE here isn't a good idea because LOG_TRACE is only enabled
when yuzu is compiled in debug mode. Debug mode is also quite slow, and
so we're potentially throwing away logging messages that can provide
value when trying to boot games.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The thread field serves to indicate which thread a log is related to and
provides the length of the thread's name, so we can print that out,
ditto for modules.
Now we can know what threads are potentially spawning off logging
messages (for example Lydie & Suelle bounces between MainThread and
LoadingThread when initializing the game).
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
loader: Make ResultStatus directly compatible with fmt
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
We can make the enum class type compatible with fmt by providing an
overload of operator<<.
While we're at it, perform proper bounds checking. If something exceeds
the array, it should be a hard fail, because it's, without a doubt, a
programmer error in this case.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Core::CoreTiming: add UnscheduleEventThreadsafe
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
sm/controller: Correct return value of QueryPointerBufferSize
|
| | |/ / / / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | | |
This should be returning a u16 according to Switch Brew.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Shaders: Implemented I2F_C and F2I_C, along with the negation bits of the conversion instructions.
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / /
|/| | | | | | | | | |
kernel/server_session: Add IsSession() member function
|
| |/ / / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Allows querying the inverse of IsDomain() to make things more readable.
This will likely also be usable in the event of implementing
ConvertDomainToSession().
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
gl_rasterizer_cache: Add RGBA16U to PixelFormatFromTextureFormat.
|
| | |_|_|_|/ / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | | |
- Used by Breath of the Wild.
|
|\ \ \ \ \ \ \ \ \
| |/ / / / / / / /
|/| | | | | | | | |
gl_rasterizer_cache: Cleanup some PixelFormat names and logging.
|
|/ / / / / / / / |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
maxwell_to_gl: Properly handle UnsignedInt/SignedInt sizes.
|
| | |_|_|/ / / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
gl_rasterizer: Fix upload size for constant buffers.
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
gl_shader_decompiler: Several fixes for indirect constant buffer loads.
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| |_|/ / / / / /
|/| | | | | | | |
gl_rasterizer_cache: Implement G8R8S format.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
- Used by Super Mario Odyssey.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
emu_window: Ensure WindowConfig members are always initialized
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Previously we weren't always initializing all members of the struct.
Prevents potentially wonky behavior from occurring.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
loader: Remove address mapping remnants from citra
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
These mappings are leftovers from citra and don't apply to the Switch.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/svc: Log svcBreak parameters
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Given if we hit here all is lost, we should probably be logging the
break reason code and associated information to distinguish between the
causes.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
common/xbyak_abi: Mark defined functions in header as inline
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Avoids potential One Definition Rule violations when these are used in
the future.
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Implement Z16 in PixelFormatFromTextureFormat function
|
|/ / / / / / /
| | | | | | |
| | | | | | | |
Require by Zelda Breath Of The Wild
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
common/misc: use windows.h
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
linux-mingw does not really like this.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
mm_u: Move interface class into the cpp file
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Ensures both variants go through the same interface, and while we're at
it, add Finalize to provide the inverse of Initialize for consistency.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Now if changes are ever made to the behavior of the class, it doesn't
involve rebuilding everything that includes the mm_u header.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
CMakeLists: Add architecture detection for AArch64
|
| | |_|/ / / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
We already have an equivalent in place for the 32-bit ARM architecture, so we
should also have one for the newer 64-bit ARM architecture as well.
|
|\ \ \ \ \ \ \ \ \
| |/ / / / / / / /
|/| | | | | | | | |
common: Remove unused old breakpoint source files
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
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).
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
audout_u: Correct IAudioOut initializer list order
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Orders elements in the precise order they'll be initialized.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Fix BC7U
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
renderer_opengl: Implement RenderTargetFormat::RGBA16_UNORM.
|
| | |/ / / / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | | |
- Used by Breath of the Wild.
|
|\ \ \ \ \ \ \ \ \
| |_|/ / / / / / /
|/| | | | | | | | |
logging/backend: Use const reference to refer to log filter
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The filter is returned via const reference, so this was making a
pointless copy of the entire filter every time a message was being
pushed into the logger instance.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
Added missing channel devices
|
| | | | | | | | |
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Implement RG32UI and R32UI
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
Needed for xenoblade
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
audio_core: Interpolate
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
arm_dynarmic: Remove IsExecuting check from PrepareReschedule
|
| | |/ / / / / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | | |
No longer required. HaltExecution is a no-op if it is not currently executing.
|
|\ \ \ \ \ \ \ \ \
| |/ / / / / / / /
|/| | | | | | | | |
maxwell_to_gl: Implement VertexAttribute::Size::Size_8.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
- Used by Breath of the Wild.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
vfs: Use sanitized paths within MoveFile() and MoveDirectory()
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Previously these were being unused (or partially unused). While we're at
it, use better naming to make it visibly obvious which variant of the
path is being used.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
card_image: Simplify return statement of GetSubdirectories()
|
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | |
| | | | | | | | | | | |
We have the aliases, so we may as well use 'em.
|
| |/ / / / / / / / /
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
We don't need to write out the construction long-form, we can just let
the language itself work it out off the return type.
|
|\ \ \ \ \ \ \ \ \ \
| |_|/ / / / / / / /
|/| | | | | | | | | |
kernel/object: Tighten object against data races
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Despite being covered by a global mutex, we should still ensure that the
class handles its reference counts properly. This avoids potential
shenanigans when it comes to data races.
Given this is the root object that drives quite a bit of the kernel
object hierarchy, ensuring we always have the correct behavior (and no
races) is a good thing.
|
|\ \ \ \ \ \ \ \ \ \
| | | | | | | | | | |
| | | | | | | | | | | |
renderer_opengl: Implement RenderTargetFormat::RGBA16_UINT.
|
|/ / / / / / / / / /
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
- Used by Breath of the Wild.
|
|\ \ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / / /
|/| | | | | | | | | |
renderer_opengl: Implement RenderTargetFormat::RG8_UNORM.
|
| |/ / / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
- Used by Breath of the Wild.
|
|\ \ \ \ \ \ \ \ \
| |/ / / / / / / /
|/| | | | | | | | |
maxwell_to_gl: Implement PrimitiveTopology::LineStrip.
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | | |
- Used by Breath of the Wild.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Use an approximated amortized amount of ticks when advancing timing.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
We divide the number of ticks to add by the number of cores (4) to obtain a more or less rough estimate of the actual number of ticks added. This assumes that all 4 cores are doing similar work. Previously we were adding ~4 times the number of ticks, thus making the games think that time was going way too fast.
This lets us bypass certain hangs in some games like Breath of the Wild.
We should modify our CoreTiming to support multiple cores (both running in a single thread, and in multiple host threads).
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
The current core may have nothing to do with the core where the new thread was scheduled to run. In case it's the same core, then the following PrepareReshedule call will take care of that.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
scheduler: Make HaveReadyThreads() a const member function
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
This function doesn't modify instance state, so the const qualifier can
be added to it.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
These don't directly modify the contained data.
|
| |/ / / / / / / / |
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Fixed a bunch of race conditions when running in multicore mode.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Another thread may write to this variable while the core in question is in the middle of checking for a reschedule request.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Another thread might be in the middle of an SVC, thus altering the state of the schedulers.
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Another thread might be in the middle of a reschedule, thus altering the state of the schedulers.
|
| |/ / / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
WakeAfterDelay might be called from any host thread, so err on the side of caution and use the thread-safe CoreTiming::ScheduleEventThreadsafe.
Note that CoreTiming is still far from thread-safe, there may be more things we have to work on for it to be up to par with what we want.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Kernel/Mutex: Don't duplicate threads in the mutex waiter list.
|
| |/ / / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Exit from AddMutexWaiter early if the thread is already waiting for a mutex owned by the owner thread.
This accounts for the possibility of a thread that is waiting on a condition variable being awakened twice in a row.
Also added more validation asserts.
This should fix one of the random crashes in Breath Of The Wild.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
gl_shader_decompiler: Implement XMAD instruction.
|
| | | | | | | | | | |
|
|\ \ \ \ \ \ \ \ \ \
| |/ / / / / / / / /
|/| | | | | | | | | |
vfs: Make type hierarchy objects classes instead of structs
|
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | |
| | | | | | | | | | |
Makes it consistent with the other VFS interfaces and prevents implicit
construction.
|
|/ / / / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
struct should be used when the data type is very simple or otherwise has
no invariants associated with it. Given these are used to form a
hierarchy, class should be used instead.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Fixed invalid cast in loader
|
| | | | | | | | | | |
|
| | |_|_|_|/ / / /
| |/| | | | | | |
| | | | | | | | |
| | | | | | | | | |
GetMessageForResultStatus takes a u16, not a size_t.
|
|\ \ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
cubeb_sink: Protect queue with a mutex
|
| | |_|_|/ / / / /
| |/| | | | | | | |
|
|\ \ \ \ \ \ \ \ \
| |/ / / / / / / /
|/| | | | | | | | |
GetAudioDeviceServiceWithRevisionInfo (Used by Bloodstained: Curse of the Moon)
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
As we're not handling any anything about the revision data for GetAudioDeviceServiceWithRevisionInfo, it's currently marked as stubbed. However for games this shouldn't affect the result. Proper revision info would be more for homebrew.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Added GetAudioRendererSampleRate, GetAudioRendererSampleCount & GetAudioRendererMixBufferCount
|
| | | | | | | | | |
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
GetAudioRendererSampleRate is set as a "STUB" as a game could check if the sample rate it sent and the sample rate it wants don't match. Just a thought of something which could happen so keeping it as stub for the mean time
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
hid: Stub DisconnectNpad()
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Prevents clang-format from butchering them.
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
This is required by ARMS.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
externals: Update to SDL2-2.0.8.
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| |_|_|/ / / / /
|/| | | | | | | |
GL renderer: Pick the streambuffer from citra and use them.
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Don't emut copies, especially not for data, which is used once. They just end in a huge GPU overhead.
|
| | | | | | | | |
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Please see https://github.com/citra-emu/citra/pull/3666 for more details.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
gl_shader_decompiler: Fix SetOutputAttributeToRegister empty check.
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
CMakeLists: Change MSVC14 variable to MSVC_VERSION
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The rest of the CMake script uses lowercase for commands (which is the
general CMake style), making it more consistent with surrounding code.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Use of the MSVC14 variable is discouraged in the CMake documentation
(which makes sense, since MSVC_VERSION is the more general appliable
variable).
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Stub UpdateUserPresence
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
Needed for Retro City Rampage to go in game
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
gl_shader_decompiler: Fix GLSL compiler error with KIL instruction.
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Several Friend service fixes
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
- Used by Splatoon 2.
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
core: Namespace EmuWindow
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Gets the class out of the global namespace.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
gl_rasterizer: Silence implicit truncation warning in SetupShaders()
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Previously this would warn of truncating a std::size_t to a u32. This is
safe because we'll obviously never have more than UINT32_MAX amount of
uniform buffers.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
GPU/Maxwell3D: Implemented an alternative set of blend factors.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
These are used by nouveau and some games like SMO.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
RasterizerGL: Ignore invalid/unset vertex attributes.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
This should make the es2gears example not crash anymore.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
- Used by Go Vacation
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_shader_decompiler: Improve handling of unknown input/output attributes.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Implement render target formats RGBA8_SNORM and RG8_SNORM.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
- Used by Super Mario Odyssey.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
- Used by Super Mario Odyssey.
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
loader: Add more descriptive errors
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
clang-format fix
|
| | | | | | |
| | | | | | |
| | | | | | | |
Full list of new errors and descriptions in core/loader/loader.h
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
GPU/Shader: Implemented SSY and SYNC as a set_target/jump pair.
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
SSY sets the target label to jump to when the SYNC instruction is executed.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
video_core: Get rid of global variable g_toggle_framelimit_enabled
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Instead, we make a struct for renderer settings and allow the renderer
to update all of these settings, getting rid of the need for
global-scoped variables.
This also uncovered a few indirect inclusions for certain headers, which
this commit also fixes.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This is entirely unused and can be removed.
|
| | |_|_|_|_|/
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Currently we only have an OpenGL renderer, so this is unused in code
(and occupies the Renderer identifier in the VideoCore namespace).
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
video_core: Use variable template variants of type_traits interfaces where applicable
|
| | | | | | | | |
|
| |_|/ / / / /
|/| | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
* Implement R16S & R16UI & R16I RenderTargetFormats & PixelFormats
Do a separate function in order to get Bytes Per Pixel of DepthFormat
Apply the new function in gpu.h
delete unneeded white space
* correct merging error
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
qt/gamelist: Minor cleanup-related changes
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Silences a warning about truncating from size_t to u32
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
We don't need to use a heap-allocated std::vector here, given we
explicitly know the bounds.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
This is called automatically anyways.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
dynarmic: Update to 0118ee0
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | | |
0118ee0 emit_x64_vector: packusdw is SSE4.1
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Implements VertexAttributes Size_32_32_32 and Size_8_8.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
- Used by Super Mario Odyssey.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
- Used by Super Mario Odyssey.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_rasterizer_cache: Remove unused viewport parameter of GetFramebufferSurfaces()
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Revert "gl_state: Temporarily disable culling and depth test."
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
textures: Refactor out for Texture/Depth FormatFromPixelFormat.
|
|/ / / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
gl_rasterizer_cache: Add bounds checking for gl_buffer copies.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
core: Make function reference parameters const where applicable
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is simply copied by value, so there's no need to make it a
modifiable reference.
While we're at it, make the names of the parameters match its
definition.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This function doesn't modify anything within the reference Thread
instance.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
common/logging: Add missing service log categories
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
These weren't added when the services were introduced.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
fsp_srv: Emplace entries first when building index instead of emplacing last
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Given elements inserted into a vector are zeroed out, we can just copy
MAX_LEN - 1 elements and the data will already be properly null
terminated.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The current way were doing it would require copying a 768 character
buffer (part of the Entry struct) to the new element in the vector.
Given it's a plain array, std::move won't eliminate that.
Instead, we can emplace an instance directly into the destination buffer
and then fill it out, avoiding the need to perform any unnecessary
copies.
Given this is done in a loop, we can request the destination to allocate
all of the necessary memory ahead of time, avoiding the need to
potentially keep reallocating over and over on every few insertions into
the vector.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
gl_shader_decompiler: Reserve element memory beforehand in BuildRegisterList()
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Avoids potentially perfoming multiple reallocations when we know the
total amount of memory we need beforehand.
|
|\ \ \ \ \ \ \ \
| |_|_|_|/ / / /
|/| | | | | | | |
vfs: Add VfsFilesystem and fix RealVfs* implementations
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
maxwell_3d: Ignore macros that have not been uploaded yet.
|
| | |_|_|/ / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
- Used by Super Mario Odyssey (in game).
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
* Implement BC5/DXN2 (#996)
- Used by Kirby Star Allies.
* Implement BC5/DXN2 SNORM
UNORM for Kirby Star Allies
SNORM for Super Mario Odyssey
|
|\ \ \ \ \ \ \ \
| |_|_|/ / / / /
|/| | | | | | | |
gl_rasterizer_cache: Avoid iterator invalidation issues within InvalidateRegion()
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
A range-based for loop can't be used when the container being iterated
is also being erased from.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
gl_shader_decompiler: Declare predicates on use.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
- Used by Super Mario Odyssey (when going in game).
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
gl_rasterizer_cache: Use std::vector::assign vs resize() then copy for the non-tiled case
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
It's generally easier to follow code using conditionals that operate in
terms of the true case followed by the false case (no chance of
overlooking the exclamation mark).
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
resize() causes the vector to expand and zero out the added members to
the vector, however we can avoid this zeroing by using assign().
Given we have the pointer to the data we want to copy, we can calculate
the end pointer and directly copy the range of data without the
need to perform the resize() beforehand.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This is only ever read from, so we can make the data it's pointing to
const.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Implement VertexAttribute::Size::Size_16_16_16_16 and PrimitiveTopology::Points.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
- Used by Super Mario Odyssey (in game).
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
- Used by Super Mario Odyssey (in game).
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
gl_rasterizer: Do not render when no render target is configured.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
- Used by Super Mario Odyssey.
|
| | | | | | | |
| | | | | | | |
| | | | | | | | |
- Used by Kirby Star Allies.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
common/color: Minor cleanup
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
These are just superfluous and not necessesary
|
| | |_|_|/ / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Gets rid of type punning via reinterpret_cast within functions. Instead,
we use memcpy to transfer the contents across types.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
gl_rasterizer_cached: Implement RenderTargetFormat::B5G6R5_UNORM.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
- Used by Super Mario Odyssey.
|
|\ \ \ \ \ \ \ \ \
| |_|_|_|/ / / / /
|/| | | | | | | | |
vector_math: Use variable template version of is_signed in Vec classes
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | | |
Same behavior, less code
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
gl_shader_decompiler: Stub input attribute Unknown_63.
|
| | |/ / / / / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| |_|_|_|/ / / /
|/| | | | | | | |
Service/Account: stub LoadImage function
|
| | |_|_|_|_|/
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
gl_shader_decompiler: Let OpenGL interpret floats.
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
- Accuracy is lost in translation to string, e.g. with NaN.
- Needed for Super Mario Odyssey.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
maxwell_3d: Use correct const buffer size and check bounds.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
- Fixes mem corruption with Super Mario Odyssey and Pokkén Tournament DX.
|
|\ \ \ \ \ \ \
| |_|_|_|/ / /
|/| | | | | | |
nvhost_gpu: Don't over copy IoctlSubmitGpfifo.
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gpu: Add R11G11B10_FLOAT to RenderTargetBytesPerPixel.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
- Used by Super Mario Odyssey.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
maxwell_to_gl: Implement VertexAttribute::Size::Size_8_8.
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
am: Stub SetScreenShotImageOrientation.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
- Used by Super Mario Odyssey.
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
renderer_opengl: Use trace log in a few places.
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
common: Convert type traits templates over to variable template versions where applicable
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Uses the C++17 inline variable variants
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Add Icons and Metadata Support
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
vector_math: Minor cleanups
|
| | | | | | | | |
|
| | | | | | | | |
|
| | |/ / / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
externals/CMakeLists: Add EXCLUDE_FROM_ALL to lz4's add_subdirectory() command
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
We don't need to build the lz4 CLI tool, or anything else. We just want
to build in the library statically, so we specify this to ensure that.
Now, we don't potentially build unnecessary targets.
|
|\ \ \ \ \ \ \ \
| |_|_|_|_|/ / /
|/| | | | | | | |
nvdrv: Get rid of global std::weak_ptr
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Rather than use global state, we can simply pass the instance into the
NVFlinger instance directly.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
externals: Update catch to 2.3.0
|
| | |_|_|/ / /
| |/| | | | |
| | | | | | |
| | | | | | | |
Updates the library from 2.2.3 to 2.3.0
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
hle: Remove unused romfs.cpp/.h
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | | |
These files are no longer used, so we can get rid of them.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
acc: Add missing function table entries for GetUserCount
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Given this is stubbed within the common module in
5ac7b84, it should be added to the other relevant tables as well.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
hid: fix IsSixAxisSensorAtRest() response
|
|/ / / / / / / |
|
| | | | | | |
| | | | | | |
| | | | | | | |
- Used by Pokken Tournament DX.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
file_util: Avoid sign-conversions in WriteArray() and ReadArray()
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Prevents compiler warnings.
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
externals/mbedtls: Update to mbedtls v2.12.0
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Lowered down the logging for command processor methods
|
| | | | | | | |
|
| |_|/ / / /
|/| | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* Changed the sRGB pixel format return
* Add a message about SRGBA -> RGBA conversion
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
content_archive: Add support for titlekey cryptography
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
nvflinger: Correct typo in name of composition event
|
| | |_|_|/ / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
services/hid: Add ActivateNpadWithRevision() to the hid function info array
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Updated based off the information on Switch Brew.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
service/apm: Add the apm:sys service
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Adds the basic skeleton of the apm:sys service based off the information
on Switch Brew.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
qt/hotkey: Get rid of global hotkey map instance
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Instead, we make a proper registry class and house it within the main
window, then pass it to whatever needs access to the loaded hotkeys.
This way, we avoid a global variable, and don't need to initialize a
std::map instance before the program can do anything.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
CMakeLists: Make mbedtls and cubeb not install headers and libraries
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
nvflinger: Use std::string_view in OpenDisplay()
|
| | | | | | | | | |
|
| | |/ / / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
We don't need to use a std::string here, given all that's done is
comparing the character sequence against another. This allows passing
regular const char* without needing to heap allocate.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
service/time: Amend command IDs of ToPosixTime() and ToPosixTimeWithMyRule()
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Updates the ID of these based off the information on Switch Brew.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Make building cubeb optional
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| |_|_|_|_|/ / /
|/| | | | | | | |
nvdrv: Get rid of indirect inclusions
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
The only reason this wasn't a compilation error is because we use
little-endian systems.
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
service: Add usb services
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Adds basic skeleton for the usb services based off the information provided by Switch Brew.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
client_port: Make all data members private
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
These members don't need to be entirely exposed, we can instead expose
an API to operate on them without directly needing to mutate them
We can also guard against overflow/API misuse this way as well, given
active_sessions is an unsigned value.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
externals: Update glad to 0.1.26
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Updates the library from 0.1.25. Mainly fixes issues related to macOS,
but we may as well update the library.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
loader: Fix scope error in DeconstructedRomDirectory
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
loader: Make AppLoader_NCA rely on directory loading code
|
| | |_|_|/ /
| |/| | | |
| | | | | | |
Eliminates duplicate code shared between their Load methods, after all the only difference is how the romfs is handled.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
game_list: Use QString::fromStdString() where applicable instead of c_str()
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
We can just use the file interfaces that Qt provides to prevent needing
to convert to std::string.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The codec used by Qt for const char* and std::string don't necessarily
have to be the same depending on locale. Therefore, we should be using
the correct functions to do the conversions.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
* GDBStub works with both Unicorn and Dynarmic now
* Tidy up
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
game_list: Join declarations and assignments in onTextChanged()
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
There's no need to keep these separate from one another.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
qt/main: Collapse if statement in UpdateRecentFiles()
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This was intermixing signed and unsigned values when they could all just
be signed.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Given the function accepts a boolean, we don't need to use an if
statement here and repeat ourselves.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
qt: Don't show error dialog when canceling the Load Folder dialog
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Previously, when canceling out of the Load Folder dialog, a user would
get an error dialog about the selected folder not containing a main
file, however, by canceling out of the dialog, no selection was actually
made.
|
|\ \ \ \ \ \ \
| |_|_|/ / / /
|/| | | | | | |
qt: Minor cleanup-related changes
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
These occur automatically without the need to call them. While we're at
it, also std::move the QString instance into its member variable.
|
| | | | | | | |
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Makes code consistent with our style of defaulting special member
functions where applicable.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
kernel/event: Make data members private
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Instead we can simply provide accessors to the required data instead of
giving external read/write access to the variables directly.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_rasterizer_cache: Avoid superfluous surface copies.
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
core_timing: Make GetGlobalTimeUs() return std::chrono::microseconds
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
ms is shorthand for milliseconds, not microseconds, and given there's no
comment indicating that this was intentional, it probably wasn't.
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Enforces the time unit being returned and also allows using the standard
time utilities to manipulate it.
|
|\ \ \ \ \ \ \
| |_|_|/ / / /
|/| | | | | | |
qt/main: Better file-existence checking within OnMenuRecentFile() and UpdateUITheme()
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
In OnMenuRecentFile() we don't need to construct a QFileInfo instance
just to check if a file exists, we can just use the static member
function to do that (which Qt's documentation also notes as quicker than
constructing an instance).
In UpdateUITheme(), we just want to try and open the file and check the
success of that operation. Technically speaking, between the existence
check and the open call, the file can be deleted or moved, but still
appear to succeed in code. i.e.
1. Existence check -> Returns true
2. File is moved/deleted
3. Open is called, the return value of which isn't checked
4. Nonsense behavior
This way we combine the existence check and the open into one.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
memory: Correct prototype of ZeroBlock
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Keeps the code consistent.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Previously, the prototype wasn't matching the definition, which has a
Processor parameter before the destination address.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
These aren't necessary, as value-wise const only matters in the
definition.
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Service/Audio: audout_a.cpp: remove pragma once
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
core_timing: Use transparent functors where applicable
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Makes the alias a little more readable from left-to-right.
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Gets rid of the need to hardcode the type in multiple places. This will
now be deduced automatically, based off the elements in the container
being provided to the algorithm.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gdbstub: Minor changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Rather than having to type out the full std::map type signature, we can
just use a straightforward alias. While we're at it, rename
GetBreakpointList to GetBreakpointMap, which makes the name more
accurate. We can also get rid of unnecessary u64 static_casts, since
VAddr is an alias for a u64.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Keeps everything under the same namespace. While we're at it, enclose
them all within an inner anonymous namespace.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
In all cases, a virtual address is being passed in, not a physical one.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
address_arbiter: Return by value from GetThreadsWaitingOnAddress()
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
In all cases the vector being supplied is empty, so we can just return
by value in these instances.
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Implement audren audio output
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | |/ / /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_shader_decompiler: Fix TEXS mask and dest.
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
video_core: Eliminate the g_renderer global variable
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
All calling code assumes that the rasterizer will be in a valid state,
which is a totally fine assumption. The only way the rasterizer wouldn't
be is if initialization is done incorrectly or fails, which is checked
against in System::Init().
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We move the initialization of the renderer to the core class, while
keeping the creation of it and any other specifics in video_core. This
way we can ensure that the renderer is initialized and doesn't give
unfettered access to the renderer. This also makes dependencies on types
more explicit.
For example, the GPU class doesn't need to depend on the
existence of a renderer, it only needs to care about whether or not it
has a rasterizer, but since it was accessing the global variable, it was
also making the renderer a part of its dependency chain. By adjusting
the interface, we can get rid of this dependency.
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
externals: Update dynarmic to 4f96c63
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
4f96c63 emit_x64_vector_floating_point: Simplify FPVector{Min,Max}
e15fdfe emit_x64_vector_floating_point: Simplify Get*Vector functions
734a00b emit_x64_floating_point: Remove EmitProcessNaNs
fd45191 devirtualize: Replace DEVIRT macro with function template
67ba5d0 fuzz_with_unicorn: Remove FCVT_float from ignore list
66e6dd1 a32_emit_x64: std::move A32::UserConfig in the constructor
b4890b6 emit_x64_floating_point: Use EmitPostProcessNaNs in EmitFPMulX
18b2943 emit_x64_floating_point: Remove unnecessary DenormalsAreZero from EmitFPSingleToDouble and EmitFPDoubleToSingle
df1f81f emit_x64_floating_point: Simplify EmitFP{Min,Max}{,Numeric}{32,64}
21fb1c3 emit_x64_floating_point: Reduce NaN processing overhead
f5c9f0f A64: Implement FMULX, scalar single/double variant
8f47773 IR: Implement FPMulX IR instruction
79e6440 fuzz_with_unicorn: Randomize SP
33c80e3 fuzz_with_unicorn: Randomize PC
8d41024 testenv: Make code_mem mobile
a9fae0e emit_x64_vector: Vectorize 32-bit variants of paired min/max
8926a92 emit_x64_vector: Improve code emission of VectorGetElement* for index == 0
e20bd38 reg_alloc: Do a UseScratch if a Use destination is too small
a19fa0e fuzz_with_unicorn: Randomize FPCR.AHP and FPCR.FZ16
775f368 emit_x64_floating_point: AVX implementation of ForceToDefaultNaN
71018a1 emit_x64_vector_floating_point: Prefer blendvp{s,d} to vblendvp{s,d} where possible
137f4b3 backend_x64: Remove all use of xmm0
e73d67a emit_x64_vector_floating_point: AVX implementation of ForceToDefaultNaN
43cca54 emit_x64_vector_floating_point: Reduce codesize of ForceToDefaultNaN
5dc40f4 emit_x64_vector_floating_point: Reduce codesize of EmitTwoOpVectorOperation
07622ee emit_x64_vector_floating_point: Correct FMA in FTZ mode
621c85b emit_x64_floating_point: DenormalsAreZero is redundant as hardware already does DAZ
3d0ebaa emit_x64_floating_point: FlushToZero is redundant as hardware already does FTZ
f626ff8 backend_x64: Fix FPVectorMulAdd and FPMulAdd NaN handling with denormals
adeb9d9 a32/fuzz_arm: Disable vfp tests
19ea70d fuzz_with_unicorn: Randomize FPCR.FZ
895db36 backend_x64: Fix bugs when FPCR.FZ=1
d7e2de2 fuzz_with_unicorn: Extract RandomFpcr function
c858d6c fp/info: Deduplicate functions
5b88ec2 emit_x64_floating_point: Deduplicate EmitFPMulAdd implementation
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_rasterizer: Fix glVertexAttribFormat for integers
|
| | | | | | |
|
| | |/ / /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
service: Add arp services
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
Adds the basic skeleton of the arp services based off the information
provided by Switch Brew.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
core/crypto: Minor changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
These functions should only be given trivially-copyable types.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This function doesn't directly depend on class state, so it can be
hidden entirely from the interface in the cpp file.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This doesn't modify member state, so it can be made const.
|
| | | | | | |
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The benefit of std::string_view comes from the idea of avoiding copies
(essentially acting as a non-owning view), however if we're just going
to copy into a local variable immediately, there's not much benefit
gained here.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
service: Remove redundant #pragma once directives
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
These don't do anything within .cpp files (we don't include cpp files,
so...)
|
|\ \ \ \
| | | | |
| | | | | |
XCI and Encrypted NCA Support
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
gl_shader_manager: Amend sign differences in an assertion comparison in SetShaderUniformBlockBinding()
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This lets us indent the majority of the code and places the error case
first.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Ensures both operands have the same sign in the comparison.
While we're at it, we can get rid of the redundant casting of ub_size to
an int. This type will always be trivial and alias a built-in type (not
doing so would break backwards compatibility at a standard level).
|
|\ \ \ \ \
| | | | | |
| | | | | | |
video_core: Remove unimplemented Start() function prototype
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Given this has no definition, we can just remove it entirely.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
memory: Remove unused GetSpecialHandlers() function
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | | |
This is just unused code, so we may as well get rid of it.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
kernel/process: Use accessors instead of class members for referencing segment array
|
| | | | | | | |
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Using member variables for referencing the segments array increases the
size of the class in memory for little benefit. The same behavior can be
achieved through the use of accessors that just return the relevant
segment.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
kernel/thread: Fix potential crashes introduced in 26de4bb5
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This amends cases where crashes can occur that were missed due to the
odd way the previous code was set up (using 3DS memory regions that
don't exist).
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
gl_shader_decompiler: Remove unused variable in GenerateDeclarations()
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
This variable was being incremented, but we were never actually using
it.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
core/memory: Get rid of 3DS leftovers
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Removes leftover code from citra that isn't needed.
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
gl_shader_manager: Make ProgramManager's GetCurrentProgramStage() a const member function
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
This function doesn't modify class state, so it can be made const.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
sink_details: std::move std::function instances
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We can just use type aliases to avoid needing to write the same long
type twice
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Given std::function is allowed to potentially allocate, these should be
std::move'd to prevent potential reallocation (should that ever happen).
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
service: Add migration services
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Adds the basic skeleton for the mig:usr service based off information
provided by Switch Brew.
|
|\ \ \ \ \ \ \
| |_|_|/ / / /
|/| | | | | | |
math_util: Always initialize members of Rectangle
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
Prevents potentially using the members uninitialized.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
video_core: Make global EmuWindow instance part of the base renderer …
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Makes the global a member of the RendererBase class. We also change this
to be a reference. Passing any form of null pointer to these functions
is incorrect entirely, especially given the code itself assumes that the
pointer would always be in a valid state.
This also makes it easier to follow the lifecycle of instances being
used, as we explicitly interact the renderer with the rasterizer, rather
than it just operating on a global pointer.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel: Move object class to its own source files
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
General moving to keep kernel object types separate from the direct
kernel code. Also essentially a preliminary cleanup before eliminating
global kernel state in the kernel code.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/thread: Minor changes
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Avoids using a u32 to compare against a range of size_t, which can be a
source of warnings. While we're at it, compress a std::tie into a
structured binding.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This function only reads the data being referenced, it doesn't modify
it, so we can turn the reference into a const reference.
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This function isn't used outside of this translation unit, so we can
make it internally linked.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
input_common: minor changes
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Avoids unnecessary atomic reference count increments and decrements
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
yuzu: Use Qt 5 signal/slots where applicable
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Makes the signal/slot connections type-safe instead of string-based.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
kernel/vm_manager: Minor changes
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Makes our immutable state explicit.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
These two variables correspond to address ranges.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
vfs_vector: Minor changes
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This wasn't being used for anything, so it can be removed.
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The lambda elements should be taken by const reference here, and we can
move the virtual directory passed to ReplaceFileWithSubdirectory()
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
gl_shader_manager: Take ShaderSetup instances by const reference in UseProgrammableVertexShader() and UseProgrammableFragmentShader()
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Avoids performing unnecessary copies of 65560 byte sized ShaderSetup
instances, considering it's only used as part of lookup and not
modified.
Given the parameters were already const, it's likely taking these
parameters by reference was intended but the ampersand was forgotten.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
hw: Remove unused files
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
None of these files are used in any meaningful way. They're just
leftovers from citra. Also has the benefit of getting rid of an unused
global variable.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
gl_state: Make texture_units a std::array
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Gets rid of the use of a raw C array.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
service/ns: Add missing ns services
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Implements the basic skeleton of ns:am2, ns:ec, ns:rid, ns:rt, ns:su,
ns:vm, and ns:web based off the information provided by Switch Brew and
SwIPC.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
service: Add the psc services
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
PCV isn't the parental control service.
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | | |
Adds the basic skeleton for the psc services based off the information
provided by Switch Brew.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
audio_out: Use Buffer::Tag alias in GetTagsAndReleaseBuffers()'s prototype
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | | |
This makes the Buffer::Tag usage consistent with the Stream class's
prototype of GetTagsAndReleaseBuffers().
|
|\ \ \ \ \
| | | | | |
| | | | | | |
service: Add capture services
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
Adds the basic skeleton for the capture services based off information
provided by Switch Brew.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
lm: Amend name of ILogger
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
Previously this was being registered with the name "Logger". While we're
at it, also change the name of the class to match it.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
service/filesystem: Add fsp:ldr and fsp:pr services
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
Adds the basic skeleton for the remaining fsp services based off
information provided by Switch Brew.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
service: Add bpc and pcv services
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
Adds the basic skeleton for the remaining pcv-related services based off
information on Switch Brew.
|
|\ \ \ \
| | | | |
| | | | | |
Implement R32_FLOAT RenderTargetFormat
|
|/ / / / |
|
|\ \ \ \
| |/ / /
|/| | | |
kernel/thread: Remove unimplemented function prototype
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Given there's no implementation, we may as well remove the code
entirely.
|
|\ \ \ \
| |/ / /
|/| | | |
audio_core: Add configuration settings.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
kernel: Remove unused object_address_table.cpp/.h
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
These source files were entirely unused throughout the rest of the
codebase. This also has the benefit of getting rid of a global variable
as well.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
service/audio: Add missing services
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Adds the missing audctl service, as well as the :a and :d services for
audin, audout, audrec, and audren.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
kernel: Remove unnecessary includes
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | | |
Removes unnecessary direct dependencies in some headers and also gets
rid of indirect dependencies that were being relied on to be included.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
audout_u: Remove std::move in OpenAudioOutImpl()
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Previously the code was using the values from params further below after
it was std::moved. Thankfully, given AudoutParams is a trivially
copyable struct, the values would have simply been copied in this
instance and not invalidated to garbage values.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Port #3973 from Citra: "Remove polymorphism issue"
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Corrected a few error cases detected by asan/ubsan
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The branch target is signed, so multiply by 4 instead of left shifting by 2
|
| | | | | | | |
|
| | |_|_|_|/
| |/| | | |
| | | | | |
| | | | | | |
Passing nullptr to memcpy is undefined behavior.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
service: Add fgm services
|
| | |_|_|/ /
| |/| | | |
| | | | | |
| | | | | |
| | | | | | |
Adds the basic skeleton for the fgm services based off the information
provided by Switch Brew.
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
service/am: Add missing am services
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
Adds the basic skeleton for missing am services idle:sys, omm, and spsm
based off the information provided by Switch Brew.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
arm_dynarmic: Correct initializer list order
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Makes the definition use the same type aliases as in its prototype.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Given the ARM_Dynarmic class inherits from ARM_Interface, we don't need
to qualify here.
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Amends the initializer list to be in the same order that each variable
would be initialized in. We also do this to ensure we don't use a bogus
uninitialized instance of the exclusive monitor within MakeJit()
We can also remove the jit member from the initializer list as this is
initialized by PageTableChanged()
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
service: Add the pcie service
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
Adds the basic skeleton of the pcie service based off information on
Switch Brew.
|
|\ \ \ \
| | | | |
| | | | | |
Audio output backend based on cubeb
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
- This is necessary so streams are created on the same thread.
|
| | | | | |
|
|/ / / / |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Port #3972 from Citra: "common/timer: use std::chrono, avoid platform-dependent code"
|
| | |/ /
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
Port #3997 from Citra: "common/string_utils: replace boost::transform with std counterpart"
|
| |/ / /
| | | |
| | | |
| | | | |
Note: according to cppreference it is necessary to convert char to unsigned char when using std::tolower and std::toupper, otherwise the behaviour would be undefined.
|
|\ \ \ \
| | | | |
| | | | | |
externals: Update dynarmic to 73d3efc
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
73d3efc emit_x64_floating_point: Deduplicate code
c9508c3 fuzz_with_unicorn: Randomize FPCR.DN
2970833 emit_x64_vector_floating_point: Fix FPVector{Max,Min} when FPCR.DN = 1
150764f emit_x64_floating_point: Fix FP{Max,Min} when FPCR.DN = 1
b7d209c IR: SSE4.1 implementation of FPVectorRoundInt
8cf8270 A64: Implement FRINT{N,M,P,Z,A,X,I} (vector), single/double variant
8f46c26 IR: Initial implementation of FPVectorRoundInt
97017bb A64: Implement SQADD and SQSUB, scalar variant
ce58863 IR: Generalise SignedSaturated{Add,Sub} to support more bitwidths
e80f8ff a64_emit_x64: Bugfix EmitA64OrQC - Incorrect argument
1e4ec7e simd_three_same: Extract non-paired SMAX, SMIN, UMAX, UMIN code to a common function
6f9dc9b A64: Implement SMAXP, SMINP, UMAXP, UMINP
1dfb29f ir: Add opcodes for vector paired maximum and minimums
017b510 A64: Implement SMAXV, SMINV, UMAXV, and UMINV
aae22ee ir: Add opcodes for performing scalar integral min/max
6ef3af3 A64: Implement PMULL{2}
2a4ce19 translate: Deduplicate GetDataSize() functions
0e01500 floating_point_{conditional}_compare: Deduplicate code
259237c common: Move all cryptographic function to common/crypto
c5f1080 a32_emit_x64: BMI2 implementation of A32SetCpsr
a23304a a32_emit_x64: Shorten EmitA32GetCpsr
57604d2 a32_emit_x64: Assert that memory layout assumption in EmitA32GetCpsr is valid
945fa48 A64: Implement PMUL
656a404 ir: Add opcode for performing polynomial multiplication
05143df A64: Implement FCVT{N,M,A,P}{U,S} (vector), FCVTZU (vector, integer), single/double variant
34ce767 A64: Implement FCVTZS (vector, integer), single/double variant
0f9bc2d IR: Implement FPVectorTo{Signed,Unsigned}Fixed
0189e44 fp/info: Replace constant value generators with FPValue
db16568 emit_x64_vector_floating_point: AVX implementation of FPVector{Max,Min}
31148bd emit_x64_vector_floating_point: Remove unnecessary double jump in HandleNaNs
4c3ca51 A64: Implement FMAX's vector single and double precision variants
bf0f21c A64: Implement FMIN's vector single and double precision variants
76f0ca0 IR: Implement FPVector{Max,Min}
6c37c31 FPRecipEstimate: Move offset out of function
59546f3 microinstruction: Update ReadsFromAndWritesToFPSRCumulativeExceptionBits
3f6b03a A64: Implement FRECPS, vector/scalar single/double variants
2d2ca5e IR: Implement FPRecipStepFused, FPVectorRecipStepFused
5cb9f1d A64: Implement FRECPE, vector single/double variant
c5a14ab IR: Implement FPVectorRecipEstimate
56f8a0b A64: Implement FRECPE, scalar single/double variant
fde69b4 IR: Implement FPRecipEstimate
186e52c IR: Implement FPRecipEstimate
cf2e1ae fp: Change FPUnpacked to a normalized representation
|
|\ \ \ \
| | | | |
| | | | | |
Port #3837 from Citra: "citra-qt: Add build date in about dialog"
|
| |/ / / |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
partition_filesystem: Remove dynamic_cast in PrintDebugInfo()
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We shouldn't be upcasting our file instances. Given a
PartitionFilesystem is currently designed to accept any arbitrary
VfsFile instances, casting to a more specific type than that is just bad
design, and shows an interface design issue.
|
|\ \ \ \
| | | | |
| | | | | |
Port #3911 from Citra: "citra-qt: optimize settings application"
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
Port #3913 from Citra: "citra_qt: Remove obsolete application attribute"
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
Port #3732 from Citra: "common: Fix compilation on ARM"
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
service: Add wlan services
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Adds the basic skeleton for the wlan services based off the information
on Switch Brew.
|
|\ \ \ \
| | | | |
| | | | | |
service: Add btm services
|
| | | | |
| | | | |
| | | | |
| | | | | |
Based off information on SwIPC and Switch Brew.
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Adds the skeleton for the btm services based off the information on
Switch Brew.
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
* Added some HID commands
* Addressed comments
|
|\ \ \
| | | |
| | | | |
service: Add ncm services
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Adds the basic skeleton for the ncm services based off information on
Switch Brew.
|
|\ \ \ \
| | | | |
| | | | | |
service: Add mii services
|
| | |_|/
| |/| |
| | | |
| | | |
| | | | |
Adds the skeleton for the mii services based off information provided by
Switch Brew
|
|\ \ \ \
| | | | |
| | | | | |
Initial implementation of Audio Core
|
| | | | | |
|
| | | | | |
|
| | |/ /
| |/| | |
|
|\ \ \ \
| |/ / /
|/| | | |
RomFS Extraction
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
service: Add nfc services
|
| | | |
| | | |
| | | |
| | | | |
These simply return the respective interface.
|
| |/ /
| | |
| | |
| | |
| | | |
Adds the skeleton of the nfc service based off the information provided
on Switch Brew.
|
|\ \ \
| | | |
| | | | |
Port #3594 from Citra: "citra_qt: Add Continue/Pause & Toggle Speed Limit hotkeys"
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
service: Add the lbl service
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Implements these functions according to the information available on
Switch Brew.
|
| | |/
| |/|
| | |
| | |
| | | |
Adds the skeleton of the lbl service based off the information provided
by Switch Brew.
|
|\ \ \
| |/ /
|/| | |
service: Add the btdrv service
|
| | |
| | |
| | |
| | | |
Adds the skeleton for the btdrv service based off the information provided by Switch Brew
|
|\ \ \
| | | |
| | | | |
kernel/timer: Make data members private where applicable
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Instead, we can just expose functions that return the queryable state
instead of letting anything modify it.
|
|\ \ \ \
| |_|/ /
|/| | | |
service/hid: Add missing services
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Port #3665 from Citra: "frontend: Log Citra version"
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
Port #3641 and #3702 from Citra (Small changes to default_ini and gitignore)
|
| | | | |
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
service: Add the grc:c service
|
| | |/
| |/|
| | |
| | |
| | | |
Adds the basic skeleton for the grc:c service based off the information
provided by Switch Brew.
|
|\ \ \
| | | |
| | | | |
service: Add the nim services
|
| |/ /
| | |
| | |
| | |
| | | |
Adds the skeleton for the nim services based off information from Switch
Brew.
|
|\ \ \
| | | |
| | | | |
service: Add ldn services
|
| |/ /
| | |
| | |
| | | |
Adds ldn services based off information provided by Switch Brew.
|
|\ \ \
| | | |
| | | | |
service/sockets: Add missing socket services
|
| | | | |
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
video_core/memory_manager: Avoid repeated unnecessary page slot lookups
|
| | | |
| | | |
| | | |
| | | |
| | | | |
We already have a function that does what this code was doing, so let's
use that instead.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
We don't need to keep calling the same function over and over again in a
loop, especially when the behavior is slightly non-trivial. We can just
keep a reference to the looked up location and do all the checking and
assignments based off it instead.
|
|\ \ \ \
| |_|_|/
|/| | | |
GPU: Allow using R16F as a render target format.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
service/lm: Minor changes
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This isn't used directly outside of this translation unit, so we can
hide it from external use.
|
| | | |
| | | |
| | | |
| | | | |
Amends these to match the information on Switch Brew.
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | | |
Implement R16_G16
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
correct trailing white spaces
Delete tabs
correct placement
Add RG16F & RG16UI & RG16I & RG16S PixelFormats
Return correct data according to changes done previously
correct PixelFormat declaration
correct coding style error
correct coding style error part 2
correct RG16S Declaration error
correct alignment
|
|\ \ \ \
| | | | |
| | | | | |
service: Add ldr services
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Adds the skeleton for the ldr-related services based off the information
provided on Switch Brew.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
service: Add erpt and eupld services
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Adds the skeleton for the eupld services based off information on Switch
Brew.
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | | |
Adds the basic skeleton of the erpt service based off information on
Switch Brew.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
service/nifm: Deduplicate interface code
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Rather than having the same code for each nifm service variant, we can
centralize it on one class and get rid of a bit of extra code.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
service/nvdrv: Minor changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids copies from being made, since the string is only ever used for
lookup, the data is never transfered anywhere.
Ideally, we'd use a std::string_view here, but devices is a
std::unordered_map, not a std::map, so we can't use heterogenous lookup
here.
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Avoids unnecessary reference count increments and decrements.
In one case, we don't need to make a shared_ptr copy at all,
just to call a member function.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
service: Add pm services
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Adds the skeleton for the process management services based off
information on Switch Brew.
|
|\ \ \ \
| | | | |
| | | | | |
service: Add the es service
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Adds the skeleton for the ETicket service based off the information on
Switch Brew
|
|\ \ \ \
| |_|/ /
|/| | | |
wait_tree: Add missing switch case for WaitTreeThread::GetText()
|
| |/ /
| | |
| | |
| | | |
We were missing the enum entry for WaitIPC
|
|\ \ \
| |/ /
|/| | |
GPU: Use the right texture format for sRGBA framebuffers.
|
| | | |
|
|\ \ \
| | | |
| | | | |
time: Add the time:a service
|
| | | |
| | | |
| | | |
| | | | |
Given we already have time:s and time:u, we should also have time:a
|
| | | |
| | | |
| | | |
| | | | |
We can use one instance of the interface instead of duplicating code.
|
|\ \ \ \
| | | | |
| | | | | |
svc: Log parameters in SetMemoryAttribute()
|
| | |_|/
| |/| |
| | | |
| | | | |
Provides slightly more context than only logging out the address value.
|
|\ \ \ \
| | | | |
| | | | | |
core_timing: Split off utility functions into core_timing_util
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
wait_tree: Silence warning about all code paths not returning a value
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | | |
If code execution hits this spot, something has gone very wrong, so mark
the path as unreachable. This silences a warning on MSVC.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
set_sys: Implement SetColorSetId()
|
| | | | | | |
|
| |/ / / / |
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
GPU: Allow the use of Z24S8 as a texture format.
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Implemented the Z32_S8_X24 depth buffer format.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Allow using Z32 as a texture format.
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Allow the usage of R8 as a render target format.
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
externals: Update dynarmic to 98e2380
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
98e2380 fuzz_with_unicorn: Disable testing of FDIV
041b7d5 block_of_code: Add ABI_PARAMS array
2a2371c A64: Implement MLA, MLS (by element), vector single/double variant
78c640a A64: Implement FMLS (vector), single/double variant
b6b6993 emit_x64_vector_floating_point: Specify NanHandler::function_type explicitly
4b9d12a emit_x64_vector_floating_point: ChooseOnFsize arguments maybe_unused
b1e3616 IR: Implement FPVectorNeg
4343612 A64: Implement FMLA (vector), single/double variant
93eeb25 IR: Implement FPVectorMulAdd
57e5c7e emit_x64_vector_floating_point: Standardize naming scheme
bcb9e41 emit_x64_floating_point: Simplify indexers
83aa585 emit_x64_vector_floating_point: Simplify EmitVectorOperation*
f4087c8 mp: rename mp.h to mp/function_info.h
1864090 emit_x64_vector: Slightly improve ArithmeticShiftRightByte
e048441 emit_x64_vector: Simplify VectorShuffleImpl
ff025e8 IR: Implement A64OrQC
6fac68d A64: Implement UQSHRN, UQRSHRN (vector)
5a8d9c3 emit_x64_vector: -0x80000000 isn't -0x80000000
759289e A64: Implement UQXTN (vector)
2a96281 emit_x64_vector: Fix non-SSE4.1 saturated narrowing reconstruction comparison
0682353 A64: Implement SQXTN (vector)
6c5229e emit_x64_vector: packusdw reqiures SSE4.1
158d9b1 A64: Implement SQSHRUN, SQRSHRUN (vector)
f886013 simd_shift_by_immediate: Simplify ShiftRight
d9b59c6 A64: Implement SQXTUN
50fe28b microinstruction: Reorganize FPSCR related instruction queries
d9d036a microinstruction: Add missing FP scalar opcodes to ReadsFromFPSCR() and WritesToFPSCR()
db96163 u128: Make Bit() a const-qualified member function
f7052ae A64: Implement FRSQRTS (vector), single/double variant
0925ef6 A64: Implement FRSQRTE (vector), single/double variant
f4cbbe3 A64: Implement FRSQRTS (scalar), single/double variant
4ef864e IR: Implement FPRSqrtStepFused
9dffeeb fp: Implement FPRSqrtStepFused
aa04556 fp: Implement FPNeg
cbde1c5 process_nan: Add two operand variant
1ec2663 A64: Implement FMAXP, FMINP, FMAXNMP and FMINNMP's scalar double/single-precision variant
027ddf9 emit_x64_floating_point: Fixup special NaN case in FMA FPMulAdd implementation
75a9f77 fp: Use a forward declaration in fused.h
1ee1630 u128: Implement comparison operators in terms of one another
3b77f48 tests: Print cpu info
bed3cc0 u128: StickyLogicalShiftRight requires special-casing for amount == 64
15d04f4 A64: Implement FMLA and FMLS (by element)'s double/single-precision scalar variant
7cfccdf A64: Implement FMUL (by element)'s scalar double/single-precision variant
7d2d62e (fpmuladd) emit_x64_floating_point: Implement accurate fallback for FPMulAdd{32,64}
a599eac fp: Implement FPMulAdd
d70b90e process_nan: Add FPProcessNaNs3
38ef0e0 block_of_code: Add SysV ABI fifth and sixth parameters
8e2ff56 u128: Add StickyLogicalShiftRight
3b337df u128: Add Multiply64To128
8219075 u128: Add u128::Bit
a574dcb u128: Add comparison operators
391d6d4 unpacked: Use ResidualErrorOnRightShift in FPRoundBase
5e0cf9c fp: Remove MantissaT
8c0a84c FPRSqrtEstimate: Improve documentation of RecipSqrtEstimate
c41d855 FPRSqrtEstimate: Deduplicate array bounds
4cf055b A64: Implement FMAXV, FMINV, FMAXNMV, and FMINNMV
bf24f0f FPRSqrtEstimate: Use forward declarations where applicable
206230e translate: Return by bool in helpers where applicable
346b725 Simplify fallback case for EmitVectorSetElement64()
2c34e1d emit_x64_floating_point: s/Esimate/Estimate/
5213fb6 simd_scalar_two_register_misc: Implement FRSQRTE, scalar variant
7ed089f IR: Implement FPRSqrtEstimate
cd2e286 simd_vector_x_indexed_element: Implement FMUL (by element), vector variant
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_rasterizer: Minor cleanup
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is just the named constant that OpenGL provides, so we can use that
instead of using a literal -1
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We can avoid heap allocations here by just using a std::string_view
instead of performing unnecessary copying of the string data.
|
| | |_|_|/
| |/| | |
| | | | |
| | | | | |
We can just assign to the members directly in these cases.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
GPU: Remove the assert that required the CODE_ADDRESS to be 0.
|
| |/ / /
| | | |
| | | |
| | | | |
Games usually just leave it at 0 but nouveau sets it to something else. This already works fine, the assert is useless.
|
|\ \ \ \
| | | | |
| | | | | |
friend: Deduplicate interfaces
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Given we already have friend:a and friend:u, we should add the remaining
services as well.
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Implemented the R16 and R16F texture formats.
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
svc: Resolve sign comparison warnings in WaitSynchronization()
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
The loop's induction variable was signed, but we were comparing against
an unsigned variable.
|
|\ \ \ \
| |/ / /
|/| | | |
deconstructed_rom_directory: Remove unused FindRomFS() function
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
arm_dynarmic: Make MakeJit() a const member function
|
| |/ /
| | |
| | |
| | |
| | | |
This functions doesn't modify instance state, so it can be a made a
const member function.
|
|\ \ \
| | | |
| | | | |
core: Make converting constructors explicit where applicable
|
| |/ /
| | |
| | |
| | |
| | | |
Avoids unwanted implicit conversions. Thankfully, given the large amount
of cleanup in past PRs, only this tiny amount is left over to cover.
|
|\ \ \
| | | |
| | | | |
apm/interface: Remove redundant declaration of InstallInterfaces()
|
| |/ /
| | |
| | |
| | | |
This is already declared in apm/apm.h
|
|\ \ \
| | | |
| | | | |
GPU: Implement texture format R32F.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
mutex: Pass SharedPtr to GetHighestPriorityMutexWaitingThread() by reference
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The pointed to thread's members are simply observed in this case, so we
don't need to copy it here.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
maxwell_to_gl: Implement VertexAttribute::Type::UnsignedInt.
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
maxwell_to_gl: Implement Texture::WrapMode::Border.
|
| | | | | | |
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
ipc_helpers: Make member variables of ResponseBuilder private
|
| | | | | | |
|
| | |_|/ /
| |/| | |
| | | | |
| | | | | |
These aren't used externally at all, so they can be made private.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
partition_filesystem: Use std::move where applicable
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Avoids copying a std::string instance and avoids unnecessary atomic
reference count incrementing and decrementing.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
gl_rasterizer_cache: Implement formats BGRA8_UNORM/RGBA32_FLOAT/RG32_FLOAT
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
gl_shader_decompiler: Correct return value of WriteTexsInstruction()
|
| | |_|/
| |/| |
| | | |
| | | | |
This should be returning void, not a std::string
|
|\ \ \ \
| | | | |
| | | | | |
gl_shader_decompiler: Print instruction value in shader comments.
|
| | |/ /
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
gl_shader_decompiler: Check if SetRegister result is ZeroIndex.
|
| |/ / / |
|
| |/ /
|/| |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Regression and Mode Fixes
* Review Fixes
* string_view correction
* Add operator& for FileSys::Mode
* Return std::string from SanitizePath
* Farming Simulator Fix
* Use != With mode operator&
|
|\ \ \
| | | |
| | | | |
gl_shader_decompiler: Implement shader instruction TLDS.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
exclusive_monitor: Use consistent type alias for u64
|
| | |_|/
| |/| |
| | | |
| | | |
| | | | |
Uses the same type aliases we use for virtual addresses, and converts
one lingering usage of std::array<uint64_t, 2> to u128 for consistency.
|
|\ \ \ \
| | | | |
| | | | | |
loader: Minor cleanup
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
RealVfsFile inherits from VfsFile, the instance from std::make_shared is
already compatible with the function argument type, making the copy
constructor call unnecessary.
|
|\ \ \ \
| | | | |
| | | | | |
linker: Remove unused parameter from WriteRelocations()
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
is_jump_relocation is never used within the function, so we can just
remove it.
|
|\ \ \ \
| |_|/ /
|/| | | |
loader/nro: Minor changes
|
| | | |
| | | |
| | | |
| | | |
| | | | |
It's sufficient to use a forward declaration instead of a direct
inclusion here.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Makes the code more uniform, and also braces cases where the body of an
unbraced conditional travels more than one line.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Makes it consistent with the other Apploader constructors, and prevents
implicit conversions.
|
| |/ /
| | |
| | |
| | | |
This isn't used anywhere in the header.
|
|\ \ \
| | | |
| | | | |
gl_shader_decompiler: Simplify GetCommonDeclarations()
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
vi: Minor changes
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
It's undefined behavior to memcpy an object that isn't considered
trivially copyable, so put a compile-time check in to make sure this
doesn't occur.
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
Allows avoiding unnecessary copies of the vector depending on the
calling code.
While we're at it, remove a redundant no-parameter base constructor call
|
|\ \ \
| |_|/
|/| | |
hle: Remove unused config_mem and shared_page source files
|
| | |
| | |
| | |
| | |
| | | |
This is just an unused hold-over from citra, so we can get rid of this
to trim off an exposed global, among other things.
|
| |/
| |
| |
| | |
This is a holdover from citra that's essentially unused.
|
|\ \
| | |
| | | |
NRO Assets and NACP File Format
|
| | |
| | |
| | |
| | |
| | |
| | | |
Cleanup
Review fixes
|
|\ \ \
| |_|/
|/| | |
set: Add missing log call in GetAvailableLanguageCodeCount()
|
|/ /
| |
| |
| | |
Forgot to include this in 22f448b6327044076959e338811ee576f3dcf093
|
|\ \
| | |
| | | |
string_util: Minor changes
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
There's no need to perform the resize separately here, since the
constructor allows presizing the buffer.
Also move the empty string check before the construction of the string
to make the early out more straightforward.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This is equivalent to doing:
push_back(std::string(""));
which is likely not to cause issues, assuming a decent std::string
implementation with small-string optimizations implemented in its
design, however it's still a little unnecessary to copy that buffer
regardless. Instead, we can use emplace_back() to directly construct the
empty string within the std::vector instance, eliminating any possible
overhead from the copy.
|
| | |
| | |
| | |
| | |
| | |
| | | |
We can just use the variant of std::string's replace() function that can
replace an occurrence with N copies of the same character, eliminating
the need to allocate a std::string containing a buffer of spaces.
|
|\ \ \
| |_|/
|/| | |
set: Amend return value of GetAvailableLanguageCodes()
|
| | |
| | |
| | |
| | | |
This just returns the size of the language code buffer.
|
| |/
| |
| |
| | |
The return code should be 32-bit in size.
|
|\ \
| | |
| | | |
shader_bytecode: Implement other TEXS masks.
|
| | | |
|
|\ \ \
| |_|/
|/| | |
Kernel/SVC: Perform atomic accesses in SignalProcessWideKey as per the real kernel.
|
| | | |
|
|\ \ \
| | | |
| | | | |
Frontend: Check for more required OpenGL extensions during startup.
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
file_util, vfs: Use std::string_view where applicable
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
ReplaceFileWithSubdirectory() takes a VirtualFile and a VirtualDir, but
it was being passed a string as one of its arguments. The only reason
this never caused issues is because this template isn't instantiated
anywhere yet.
This corrects an issue before it occurs.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Avoids unnecessary construction of std::string instances where
applicable.
|
|\ \ \ \
| |_|/ /
|/| | | |
gl_shader_decompiler: Remove redundant Subroutine construction in AddSubroutine()
|
| | |/
| |/|
| | |
| | |
| | |
| | | |
We don't need to toss away the Subroutine instance after the find() call
and reconstruct another instance with the same data right after it.
Particularly give Subroutine contains a std::set.
|
|\ \ \
| | | |
| | | | |
Implement exclusive monitor
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
externals: Update dynarmic to fc6b73bd
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Resolves issues:
* 128-bit exclusive writes on Windows
* Non-updating CNTPCT_EL0
fc6b73 a64_emit_x64: Ensure host has updated ticks in EmitA64GetCNTPCT
888c67 a64_emit_x64: Fix stack misalignment on Windows for 128-bit exclusive writes
352d53 emit_x64_aes: Eliminate extraneous usage of a scratch register in EmitAESInverseMixColumns()
ab7fe7 A64: Implement SADDLV
09bd2b A64: Implement UADDLV
62e86d fp: Use forward declarations where applicable
b3edb7 emit_x64_vector: Append 'v' prefix onto movq in AVX path
|
|\ \
| | |
| | | |
file_util: Remove goto usages from Copy()
|
| | |
| | |
| | |
| | |
| | |
| | | |
We can just leverage std::unique_ptr to automatically close these for us
in error cases instead of jumping to the end of the function to call
fclose on them.
|
|\ \ \
| | | |
| | | | |
gl_shader_decompiler: Remove unused state tracking and minor cleanup.
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | | |
gl_shader_decompiler: Implement SEL instruction.
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
file_util: Minor changes to ScanDirectoryTree() and ForeachDirectoryEntry()
|
| | |
| | |
| | |
| | |
| | | |
This avoids a truncating cast on size. I doubt we'd ever traverse a
directory this large, however we also shouldn't truncate sizes away.
|
| |/
| |
| |
| | |
Avoids unnecessary copies when building up the FST entries.
|
|\ \
| |/
|/| |
Improvements to rasterizer cache
|
| | |
|
| | |
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
file_util: Remove redundant duplicate return in GetPathWithoutTop()
|
| |
| |
| |
| |
| | |
Given both operands are the same type, there won't be an issue with
overload selection that requires making this explicit.
|
| | |
|
|\ \
| | |
| | | |
video_core: Use nested namespaces where applicable
|
| | |
| | |
| | |
| | | |
Compresses a few namespace specifiers to be more compact.
|
|\ \ \
| | | |
| | | | |
common: Remove synchronized_wrapper.h
|
| | | |
| | | |
| | | |
| | | | |
This is entirely unused in the codebase.
|
|\ \ \ \
| | | | |
| | | | | |
file_util: Use an enum class for GetUserPath()
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Instead of using an unsigned int as a parameter and expecting a user to
always pass in the correct values, we can just convert the enum into an
enum class and use that type as the parameter type instead, which makes
the interface more type safe.
We also get rid of the bookkeeping "NUM_" element in the enum by just
using an unordered map. This function is generally low-frequency in
terms of calls (and I'd hope so, considering otherwise would mean we're
slamming the disk with IO all the time) so I'd consider this acceptable
in this case.
|
|\ \ \ \
| |/ / /
|/| | | |
GPU: Implement the NVGPU_IOCTL_CHANNEL_KICKOFF_PB ioctl2 command.
|
|/ / /
| | |
| | |
| | |
| | | |
This behaves quite similarly to the SubmitGPFIFO command. Referenced from Ryujinx.
Many thanks to @gdkchan for investigating this!
|
|\ \ \
| | | |
| | | | |
partition_filesystem, vfs_real: Minor changes
|
| | | |
| | | |
| | | |
| | | |
| | | | |
We already return by value, so we don't explicitly need to make the
copy.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Avoids unnecessary atomic increment and decrement operations.
|
| | | |
| | | |
| | | |
| | | | |
This is a little bit more self-documenting on what is being done here.
|
|\ \ \ \
| | | | |
| | | | | |
arm_interface: Remove unused tls_address member of ThreadContext
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Currently, the TLS address is set within the scheduler, making this
member unused.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
externals: Update dynarmic to 7ea1241
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Resolves an issue with TPIDR setting being erroneously removed in the
dead code pass.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
tests/arm_test_common: Minor changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Explicitly cast the value to a u8 to show that this is intentional.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Gets rid of file-static behavior.
|
| | |_|_|/
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_shader_manager: Remove unimplemented function prototype
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
This was just a linker error waiting to happen.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
file_sys/errors: Remove redundant object constructor calls
|
| | |_|_|/
| |/| | |
| | | | |
| | | | |
| | | | | |
Given we're already constructing the error code, we don't need to call
the constructor inside of it.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gpu: Rename Get3DEngine() to Maxwell3D()
|
| | |_|_|/
| |/| | |
| | | | |
| | | | | |
This makes it match its const qualified equivalent.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
CPU: Save and restore the TPIDR_EL0 system register on every context switch
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Note that there's currently a dynarmic bug preventing this register from being written.
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
vfs: Minor changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We can simply use std::clamp() here, instead of using an equivalent
with std::max() and std::min().
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Given the data is intended to be directly written, there's no need to
take the std::vector by value and copy the data.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Provides the same behavior, but with less writing
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | | |
These functions don't modify the data being pointed to, so these can be
pointers to const data
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Loader: Only print the module names and addresses if they actually exist.
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
logging: Use std::string_view where applicable
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Allows avoiding constructing std::string instances, since this only
reads an arbitrary sequence of characters.
We can also make ParseFilterRule() internal, since it doesn't depend on
any private instance state of Filter
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
A few inclusions were being satisfied indirectly. To prevent breakages
in the future, include these directly.
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | | |
These can just use a view to a string since its only comparing against
two names in both cases for matches. This avoids constructing
std::string instances where they aren't necessary.
|
|\ \ \ \
| |_|_|/
|/| | | |
param_package: Minor changes
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Allows avoiding string copies by letting the strings be moved into the
function calls.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This avoids a redundant std::string construction if a key doesn't exist
in the map already.
e.g.
data[key] requires constructing a new default instance of the value in
the map (but this is wasteful, since we're already setting something
into the map over top of it).
|
| |/ /
| | |
| | |
| | | |
Avoids potential dynamic allocation occuring during program launch
|
|\ \ \
| | | |
| | | | |
apm: Improve stub for GetPerformanceConfiguration.
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
ipc_helpers: Add PushEnum() member function to ResponseBuilder
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Allows pushing strongly-typed enum members without the need to always
cast them at the call sites.
Note that we *only* allow strongly-typed enums in this case. The reason
for this is that strongly typed enums have a guaranteed defined size, so
the size of the data being pushed is always deterministic. With regular
enums this can be a little more error-prone, so we disallow them.
This function simply uses the underlying type of the enum to determine
the size of the data. For example, if an enum is defined as:
enum class SomeEnum : u16 {
SomeEntry
};
if PushEnum(SomeEnum::SomeEntry); is called, then it will push a
u16-size amount of data.
|
|\ \
| | |
| | | |
HLE/ACC: Stub IManagerForApplication::GetAccountId to return an error.
|
| |/
| |
| |
| |
| |
| | |
And make IManagerForApplication::CheckAvailability always return false.
Returning a bogus id from GetAccountId causes games to crash on boot.
We should investigate this with a hwtest and either stub it properly or implement it.
|
|\ \
| | |
| | | |
externals: Update glad to version 0.1.25
|
| | |
| | |
| | |
| | |
| | | |
Keeps the OpenGL loader library up to date. Previously we were at
version 0.1.16
|
|\ \ \
| | | |
| | | | |
gl_state: Get rid of mismatched sign conversions in Apply()
|
| | | | |
|
| |/ /
| | |
| | |
| | |
| | | |
While we're at it, amend the loop variable type to be the same width as
that returned by the .size() call.
|
|\ \ \
| | | |
| | | | |
filesys/loader: std::move VirtualFile instances in constructors where applicable
|
| | | |
| | | |
| | | |
| | | | |
This avoids unnecessary atomic reference count increments and decrements
|
| |/ /
| | |
| | |
| | |
| | | |
Avoids potentially unnecessary atomic reference count incrementing and
decrementing, as well as string copying.
|
|\ \ \
| | | |
| | | | |
audout_u/audren_u: Ensure null terminators are written out in ListAudioOutsImpl(), ListAudioDeviceName(), and GetActiveAudioDeviceName()
|
| | | |
| | | |
| | | |
| | | |
| | | | |
std::string doesn't include the null-terminator in its data() + size()
range. This ensures that the null-terminator will also be written to the buffer
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Uses a type that doesn't potentially dynamically allocate, and ensures
that the name of the interface is properly null-terminated when writing
it to the buffer.
|
|\ \ \
| | | |
| | | | |
maxwell_3d: Remove unused variable within GetStageTextures()
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
thread: Convert ThreadStatus into an enum class
|
| |/ /
| | |
| | |
| | |
| | | |
Makes the thread status strongly typed, so implicit conversions can't
happen. It also makes it easier to catch mistakes at compile time.
|
|\ \ \
| | | |
| | | | |
partition_filesystem: Return pfs_dirs member variable within GetSubdirectories()
|
| |/ /
| | |
| | |
| | |
| | | |
This should be returned here, otherwise pfs_dirs is effectively only
ever added to, but never read.
|
|\ \ \
| | | |
| | | | |
nso: Minor changes
|
| | | | |
|
| |/ / |
|
|\ \ \
| |_|/
|/| | |
gl_shader_decompiler: Eliminate variable and declaration shadowing
|
| |/
| |
| |
| |
| | |
Ensures that no identifiers are being hidden, which also reduces
compiler warnings.
|
|\ \
| | |
| | | |
gl_shader_decompiler: Remove unnecessary const from return values
|
| |/
| |
| |
| |
| | |
This adds nothing from a behavioral point of view, and can inhibit the
move constructor/RVO
|
|\ \
| |/
|/| |
pl_u: Simplify WriteBuffer() calls in GetSharedFontInOrderOfPriority()
|
|/
|
|
| |
With the new overload, we can simply pass the container directly.
|
|\
| |
| | |
hle_ipc: Introduce generic WriteBuffer overload for multiple container types
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This introduces a slightly more generic variant of WriteBuffer().
Notably, this variant doesn't constrain the arguments to only accepting
std::vector instances. It accepts whatever adheres to the
ContiguousContainer concept in the C++ standard library.
This essentially means, std::array, std::string, and std::vector can be
used directly with this interface. The interface no longer forces you to
solely use containers that dynamically allocate.
To ensure our overloads play nice with one another, we only enable the
container-based WriteBuffer if the argument is not a pointer, otherwise
we fall back to the pointer-based one.
|
|\ \
| | |
| | | |
pl_u: Specify correct size for buffers in GetSharedFontInOrderOfPriority()
|
| |/
| |
| |
| |
| | |
This WriteBuffer overload expects its size argument to be in bytes, not
elements.
|
|\ \
| | |
| | | |
HLE/ACC: Change the default user id and small improvements to the way we handle profiles
|
| | |
| | |
| | |
| | |
| | | |
The default username for now is "yuzu".
We should eventually allow the creation of users in the emulator and have the ability to modify their parameters.
|
| | |
| | |
| | |
| | | |
In IApplicationFunctions::PopLaunchParameter we tell the games that they were launched as user id 1.
|
|\ \ \
| | | |
| | | | |
HLE/ACC: Write a single whole user id in ListAllUsers and ListOpenUsers.
|
| |/ /
| | |
| | |
| | | |
We only emulate a single user id for now.
|
|\ \ \
| | | |
| | | | |
pl_u: Remove printf specifier in log call in a log call in GetSharedFontInOrderOfPriority()
|
| | |/
| |/|
| | |
| | | |
This can just use the fmt specifiers and be type-agnostic.
|
|\ \ \
| | | |
| | | | |
gdbstub: Get rid of a few signed/unsigned comparisons
|
| | | |
| | | |
| | | |
| | | | |
Ensures both operands in comparisons are the same signedness.
|
|\ \ \ \
| | | | |
| | | | | |
hid: Resolve a signed/unsigned comparison warning
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Modernizes the loops themselves while also getting rid of a signed/unsigned
comparison in a loop condition.
|
| |/ / /
| | | |
| | | |
| | | | |
Gets rid of the use of a magic constant
|
|\ \ \ \
| | | | |
| | | | | |
svc: Correct always true assertion case in SetThreadCoreMask
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The reason this would never be true is that ideal_processor is a u8 and
THREADPROCESSORID_DEFAULT is an s32. In this case, it boils down to how
arithmetic conversions are performed before performing the comparison.
If an unsigned value has a lesser conversion rank (aka smaller size)
than the signed type being compared, then the unsigned value is promoted
to the signed value (i.e. u8 -> s32 happens before the comparison). No
sign-extension occurs here either.
An alternative phrasing:
Say we have a variable named core and it's given a value of -2.
u8 core = -2;
This becomes 254 due to the lack of sign. During integral promotion to
the signed type, this still remains as 254, and therefore the condition
will always be true, because no matter what value the u8 is given it
will never be -2 in terms of 32 bits.
Now, if one type was a s32 and one was a u32, this would be entirely
different, since they have the same bit width (and the signed type would
be converted to unsigned instead of the other way around) but would
still have its representation preserved in terms of bits, allowing the
comparison to be false in some cases, as opposed to being true all the
time.
---
We also get rid of two signed/unsigned comparison warnings while we're
at it.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
loader: Amend Doxygen comments
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
These weren't adjusted when VFS was introduced
|
|\ \ \ \ \
| | | | | |
| | | | | | |
loader/nso: Check if read succeeded in IdentifyFile() before checking magic value
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We should always assume the filesystem is volatile and check each IO
operation. While we're at it reorganize checks so that early-out errors
are near one another.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
hle/service: Make constructors explicit where applicable
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Prevents implicit construction and makes these lingering non-explicit
constructors consistent with the rest of the other classes in services.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
nvflinger: Emplace Display instances directly
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We can use emplace_back to construct the Display instances directly,
instead of constructing them separately and copying them, avoiding the
need to copy std::string and std::vector instances that are part of the
Display struct.
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
nvdrv: Take std::string by const reference in GetDevice()
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
This is only ever used as a lookup into the device map, so we don't need to
take the std::string instance by value here.
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
Filesystem: Return EntryType::Directory for the root directory.
|
| | | | |
| | | | |
| | | | |
| | | | | |
It is unknown if this is correct behavior, but it makes sense and fixes a regression with Stardew Valley.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
hle_ipc: Amend usage of buffer_index within one of HLERequestContext's WriteBuffer() overloads
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Previously, the buffer_index parameter was unused, causing all writes to
use the buffer index of zero, which is not necessarily what is wanted
all the time.
Thankfully, all current usages don't use a buffer index other than zero,
so this just prevents a bug before it has a chance to spring.
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
fsp_srv: Misc individual changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We can avoid constructing a std::vector here by simply passing a pointer
to the original data and the size of the copy we wish to perform to the
backend's Write() function instead, avoiding copying the data where it's
otherwise not needed.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We were using a second std::vector as a buffer to convert another
std::vector's data into a byte sequence, however we can just use
pointers to the original data and use them directly with WriteBuffer,
which avoids copying the data at all into a separate std::vector.
We simply cast the pointers to u8* (which is allowed by the standard,
given std::uint8_t is an alias for unsigned char on platforms that we
support).
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Prevents implicit conversions.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Gets rid of relying on indirect inclusions.
|
| | | | | | |
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Previously we were just copying the data whole-sale, even if the length
was less than the total data size. This effectively makes the
actual_data vector useless, which is likely not intended.
Instead, amend this to only copy the given length amount of data.
At the same time, we can avoid zeroing out the data before using it by
passing iterators to the constructor instead of a size.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
filesystem: Minor changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids unnecessary atomic reference count incrementing and decrementing
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is simply a basic value check as opposed to potentially doing
string based operations (unlikely, but still, avoiding it is free).
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
This was just an artifact missed during PR review.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
common/swap: Minor changes
|
| | | | | | |
|
| | | | | | |
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
common/common_funcs: Remove unused rotation functions
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
These are unused and essentially don't provide much benefit either. If
we ever need rotation functions, these can be introduced in a way that
they don't sit in a common_* header and require a bunch of ifdefing to
simply be available
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
loader/{nro, nso}: Resolve compilation warnings
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
We can just initialize these vectors directly via their constructor.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
common/misc: Deduplicate code in GetLastErrorMsg()
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Android and macOS have supported thread_local for quite a while, but
most importantly is that we don't even really need it. Instead of using
a thread-local buffer, we can just return a non-static buffer as a
std::string, avoiding the need for that quality entirely.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
externals: Update Xbyak to 5.65
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
Keeps the JIT assembler library up to date and ensures we don't run into
any issues that may have been resolved.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
externals: Update catch to v2.2.3
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Keeps the unit-testing library up to date.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
file_util: return string by const reference for GetExeDirectory()
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This disallows modifying the internal string buffer (which shouldn't be
modified anyhow).
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
string_util: Remove AsciiToHex()
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Easy TODO
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
savedata_factory: Make SaveDataDescriptor's DebugInfo() function a const member function
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
This function doesn't alter class state.
|
|\ \ \ \ \ \ \
| |_|_|_|_|/ /
|/| | | | | | |
partition_filesystem: Ensure all class members of PartitionFilesystem are initialized
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Previously is_hfs and pfs_header members wouldn't be initialized in the
constructor, as they were stored in locals instead. This would result in
things like GetName() and PrintDebugInfo() behaving incorrectly.
While we're at it, initialize the members to deterministic values as
well, in case loading ever fails.
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
content_archive: Minor changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
There's no need to take this by value when it's possible to avoid
unnecessary copies entirely like this.
|
| | | | | | |
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | | |
Gets rid of unnecessary atomic reference count incrementing and
decrementing.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
vfs: Deduplicate accumulation code in VfsDirectory's GetSize()
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
We can just use a generic lambda to avoid writing the same thing twice.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
gl_state: Temporarily disable culling and depth test.
|
| | |_|/
| |/| | |
|
|\ \ \ \
| |_|_|/
|/| | | |
externals: Update dynarmic to 5a91c94.
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
address_arbiter: Correct assignment within an assertion statement in WakeThreads()
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This was introduced within 4f81bc4e1bd12e4df7410c6790ba818d8dbba9c0, and
considering there's no comment indicating that this is intentional, this
is very likely a bug.
|
|\ \ \ \
| |_|_|/
|/| | | |
core/memory, core/hle/kernel: Use std::move where applicable
|
| | | |
| | | |
| | | |
| | | | |
Avoids pointless copies
|
|\ \ \ \
| | | | |
| | | | | |
service/prepo: Add missing header guard
|
| | |/ /
| |/| | |
|
|\ \ \ \
| |_|_|/
|/| | | |
externals: update fmt to version 5.1.0
|
| | |/
| |/|
| | |
| | | |
Previously, we were on 4.1.0, which was a major version behind.
|
|\ \ \
| | | |
| | | | |
vm_manager: Add missing commas to string literal array elements in GetMemoryStateName()
|
| |/ /
| | |
| | |
| | |
| | | |
Without these, this would perform concatenation, which is definitely not
what we want here.
|
|\ \ \
| | | |
| | | | |
core/memory: Remove unused function GetSpecialHandlers() and an unused variable in ZeroBlock()
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
core: Don't construct instance of Core::System, just to access its live instance
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This makes it a compilation error to construct additional instances of
the System class directly, preventing accidental wasteful constructions
over and over.
|
| | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This would result in a lot of allocations and related object
construction, just to toss it all away immediately after the call.
These are definitely not intentional, and it was intended that all of
these should have been accessing the static function GetInstance()
through the name itself, not constructed instances.
|
|\ \ \
| | | |
| | | | |
decoders: Fix calc of swizzle image_width_in_gobs.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
hle/filesystem: Amend trace log in OpenSaveData() to compile in debug mode
|
| | |/ /
| |/| |
| | | |
| | | |
| | | | |
Previously this wouldn't compile, since no such function named
SaveStructDebugInfo() exists.
|
|\ \ \ \
| |_|/ /
|/| | | |
game_list: Make ContainsAllWords an internally linked non-member function
|
| |/ /
| | |
| | |
| | |
| | | |
This function actually depends on no internal class state, so it doesn't
even need to be a part of the class interface.
|
| |/
|/|
| |
| |
| |
| |
| |
| |
| |
| | |
* Virtual Filesystem
* Fix delete bug and documentate
* Review fixes + other stuff
* Fix puyo regression
|
|\ \
| |/
|/| |
Touchscreen Support
|
| | |
|
|/ |
|
|\
| |
| | |
game_list: Make containsAllWords a const member function
|
| |
| |
| |
| |
| | |
This makes it consistent with most of the other private utility
functions.
|
| |
| |
| |
| |
| |
| | |
This doesn't actually modify the internal class state, so it can be a
const member function. While we're at it, amend the function to take
its arguments by const reference.
|
|\ \
| | |
| | | |
Telemetry: Minor changes
|
| | |
| | |
| | |
| | |
| | | |
We can just take the value parameter by value which allows both moving
into it, and copies at the same time, depending on the calling code.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
These operators don't modify internal class state, so they can be made
const member functions. While we're at it, drop the unnecessary inline
keywords. Member functions that are defined in the class declaration are
already inline by default.
|
| |/
| |
| |
| |
| |
| | |
This provides the equivalent behavior, but without as much boilerplate.
While we're at it, explicitly default the move constructor, since we
have a move-assignment operator defined.
|
|\ \
| | |
| | | |
game_list: Remove unnecessary QString initialization in KeyReleaseEater
|
| |/
| |
| |
| |
| |
| | |
QString initializes to an empty string by default, so this does nothing
meaningful. While we're at it, use a constructor initializer list for
initializing the gamelist member variable.
|
|\ \
| | |
| | | |
astc: Minor changes
|
| | |
| | |
| | |
| | | |
There's no need to perform a separate resize.
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
A few member functions didn't actually modify class state, so these can
be amended as necessary.
|
| | |
| | |
| | |
| | |
| | | |
This also potentially avoids warnings, considering the copy assignment
operator is supposed to have a return value.
|
| |/ |
|
|\ \
| |/
|/| |
Implement buffer cropping and default to handheld mode
|
| | |
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
GPU: Added register definitions for the stencil parameters.
|
| | |
|
| | |
|
|\ \
| | |
| | | |
scheduler: Clear exclusive state when switching contexts
|
| | | |
|
|\ \ \
| |_|/
|/| | |
svc:: Fix bug in svcWaitForAddress
|
| |/ |
|
|\ \
| |/
|/| |
nvflinger: Fix for BufferQueue event handling.
|
|/ |
|
|\
| |
| | |
externals: Update dynarmic to dfdec79
|
|/ |
|
|\
| |
| | |
HID: Update controllers less often
|
| | |
|
|\ \
| |/
|/| |
Minor logging improvements
|
| | |
|
| | |
|
|\ \
| | |
| | | |
gl_rasterizer_cache: Implement texture format G8R8.
|
|/ / |
|
|\ \
| | |
| | | |
gl_rasterizer_cache: Fix incorrect offset in ConvertS8Z24ToZ24S8.
|
| | | |
|
|\ \ \
| |/ /
|/| | |
gl_rasterizer_cache: Implement depth format Z16_UNORM.
|
|/ / |
|
|\ \
| | |
| | | |
OpenGL: Use MakeCurrent/DoneCurrent for multithreaded rendering.
|
| | | |
|
|\ \ \
| | | |
| | | | |
Services/BSD: Corrected the return for StartMonitoring according to SwIPC
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
FileSys: Append the requested path to the filesystem base path in DeleteFile
|
| |/ / /
| | | |
| | | |
| | | | |
We were trying to delete things in the current directory instead of the actual filesystem directory. This may fix some savedata issues in some games.
|
|\ \ \ \
| |/ / /
|/| | | |
No need to use ASSERT_MSG with an empty assert message
|
|/ / / |
|
|\ \ \
| |/ /
|/| | |
GPU: Always enable the depth write when clearing the depth buffer.
|
|/ /
| |
| |
| | |
The GPU ignores that register when clearing, but OpenGL obeys the glDepthMask parameter, so we set the depth mask to GL_TRUE when clearing the depth buffer. It will be restored to the correct value automatically on the next draw call.
|
|\ \
| | |
| | | |
gl_shader_gen: Implement dual vertex shader mode.
|
| | | |
|
| | |
| | |
| | |
| | | |
- When VertexA shader stage is enabled, we combine with VertexB program to make a single Vertex Shader stage.
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* More improvements to GDBStub
- Debugging of threads should work correctly with source and assembly level stepping and modifying registers and memory, meaning threads and callstacks are fully clickable in VS.
- List of modules is available to the client, with assumption that .nro and .nso are backed up by an .elf with symbols, while deconstructed ROMs keep N names.
- Initial support for floating point registers.
* Tidy up as requested in PR feedback
* Tidy up as requested in PR feedback
|
|\ \
| | |
| | | |
Initialized memory for RequestUpdateAudioRenderer and fixed MemoryPoolSection to be more accurate
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
gl_shader_decompiler: Implement PredCondition::LessThanWithNan.
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
gl_shader_decompiler: Use FlowCondition field in EXIT instruction.
|
|/ / |
|
|\ \
| | |
| | | |
GPU: Implement the FADD32I shader instruction.
|
| | | |
|
|\ \ \
| | | |
| | | | |
GPU: Corrected the decoding of FFMA for immediate operands.
|
| |/ / |
|
| | |
| | |
| | |
| | |
| | |
| | | |
* Port #3335 and #3373 from Citra
* Fixup: Use the new logging placeholders
|
|\ \ \
| | | |
| | | | |
Let games/application know that we're offline
|
| | | |
| | | |
| | | |
| | | | |
Since we have no socket implementation we should be returning 0 to indicate we're currently offline.
|
|\ \ \ \
| | | | |
| | | | | |
Audout "Auto" functions
|
| |/ / /
| | | |
| | | |
| | | | |
Audout autos are identical to their counterpart except for the buffer type which yuzu already handles for us.
|
|\ \ \ \
| |/ / /
|/| | /
| | |/
| |/| |
Minor logging fixes
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Services/FS: Return the correct error code when trying to mount a nonexistent savedata.
|
| | | |
|
|\ \ \
| | | |
| | | | |
Improve directory creation in WindowsCopyFiles.cmake
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
hid: Fix timestamps and controller type.
|
|/ / / /
| | | |
| | | |
| | | | |
- This fixes user input in SMO.
|
|\ \ \ \
| | | | |
| | | | | |
NvOsGetConfigU32 production impl
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Settings are only used when RMOS_SET_PRODUCTION_MODE is set to 0.
If production mode is set, the error code 0x30006 is returned instead
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Port #3579 from Citra: Clean up architecture-specific defines
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
savedata_factory: Always create a save directory for games.
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Port #3513 (partly) from Citra: .gitignore: Add CMakeLists.txt.user to Project/editor files
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Port #3474 from Citra: Do not crash on unimplemented code in debug build
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Port #3505 from Citra: Fix QGLWidget viewport resize on macOS
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_rasterizer: Flip triangles when regs.viewport_transform[0].scale_y is negative.
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | | |
- Fixes a regression with Binding of Isaac.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
nvhost_ctrl: Fix NvOsGetConfigU32 for Snipper Clips.
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Implemented the IMNMX shader instruction.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
It's similar to the FMNMX instruction but it works on integers.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Implemented the BC7U texture format.
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | | |
Note: Our version of glad exports GL_COMPRESSED_RGBA_BPTC_UNORM as GL_COMPRESSED_RGBA_BPTC_UNORM_ARB, maybe it's time we update it.
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
Revert "Virtual Filesystem (#597)"
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
This reverts commit 77c684c1140f6bf3fb7d4560d06d2efb1a2ee5e2.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Port #3466 from Citra: Add link to Discord
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
externals: Update dynarmic to f7d11baa1
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Remove some references to Citra
|
| |/ / / / |
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Add VfsFile and VfsDirectory classes
* Finish abstract Vfs classes
* Implement RealVfsFile (computer fs backend)
* Finish RealVfsFile and RealVfsDirectory
* Finished OffsetVfsFile
* More changes
* Fix import paths
* Major refactor
* Remove double const
* Use experimental/filesystem or filesystem depending on compiler
* Port partition_filesystem
* More changes
* More Overhaul
* FSP_SRV fixes
* Fixes and testing
* Try to get filesystem to compile
* Filesystem on linux
* Remove std::filesystem and document/test
* Compile fixes
* Missing include
* Bug fixes
* Fixes
* Rename v_file and v_dir
* clang-format fix
* Rename NGLOG_* to LOG_*
* Most review changes
* Fix TODO
* Guess 'main' to be Directory by filename
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Allow using the old NV04 values for the depth test function.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
These seem to be just a valid as the GL token values. Thanks @ReinUsesLisp
This restores graphical output to Disgaea 5
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
GPU: Stub the shader SYNC and DEPBAR instructions.
|
| |/ / /
| | | |
| | | |
| | | | |
It is unknown at this moment if we actually need to do something with these instructions or if the GLSL compiler takes care of that for us.
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Implemented the F2F 'round' rounding mode.
|
| |/ / /
| | | |
| | | |
| | | | |
It's implemented via the GLSL 'roundEven()' function.
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Implement the Size_16_16 and Size_10_10_10_2 vertex attribute types
|
| |/ / /
| | | |
| | | |
| | | | |
Both signed and unsigned variants.
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Ignore unused textures and corrected the TEX shader instruction decoding.
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Implemented the PSETP shader instruction.
|
| |/ / /
| | | |
| | | |
| | | | |
It's similar to the isetp and fsetp instructions but it works on predicates instead.
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Implemented the 32 bit float depth buffer format.
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
GPU: Flip the triangle front face winding if the GPU is configured to not flip the triangles.
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
OpenGL's default behavior is already correct when the GPU is configured to flip the triangles.
This fixes 1-2 Switch's splash screen.
|
|\ \ \
| | | |
| | | | |
GPU: Only configure the used framebuffers during clear.
|
|/ / /
| | |
| | |
| | | |
Don't try to configure the color buffer if it is not being cleared, it may not be completely valid at this point.
|
|\ \ \
| | | |
| | | | |
GPU: Implemented the CLEAR_BUFFERS register.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
gl_rasterizer_cache: Implement PixelFormat S8Z24.
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Add qt windowsvistastyle dll to the build
|
|/ / / / |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* voice section updating
* fixed slight offset miscalculation
* fixed overflow
|
|\ \ \ \
| | | | |
| | | | | |
Logging - Customizable backends
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
gl_rasterizer: Only set cull mode and front face if enabled.
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Don't try to parse the depth test function if the depth test is disabled and use only the least significant 3 bits in the depth test func
|
| | | | |
| | | | |
| | | | |
| | | | | |
Some games set the full GL define value here (including nouveau), but others just seem to set those last 3 bits.
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
GPU: Implemented MUFU suboperation 8, sqrt.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Implemented the depth buffer and depth test + culling
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Fixed the index offset and implement BaseVertex when doing indexed rendering.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
This fixes Stardew Valley.
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Remove unmapped surfaces from the rasterizer cache and fix our nvmap::Free behavior.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
This behavior is confirmed by reverse engineering.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Directly copy the pixels when performing a same-layout DMA.
|
| |/ / / / |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
GPU: Ignore invalid and disabled textures when drawing.
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Corrected the size of the MUFU subop field, and removed incorrect "min" operation.
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Implement the RGBA32_UINT rendertarget format.
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
gl_shader_decompiler: Implement predicate NotEqualWithNan.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Rewrite the OpenGL rasterizer cache
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
gl_rasterizer_cache: Improved cache management based on Citra's implementation.
gl_surface_cache: Add some docstrings.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Service/Audio: add hwopus service, stub GetWorkBufferSize function
|
| | |/ /
| |/| | |
|
| |/ /
|/| | |
|
|\ \ \
| | | |
| | | | |
gl_rasterizer: Workaround for when exceeding max UBO size.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
gl_state: Fix state management for texture swizzle.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
gl_state: Remove unused state management from 3DS.
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
gl_rasterizer_cache: Fix inverted B5G6R5 format.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
yuzu: Remove SSBOs check from Qt frontend.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Rasterizer: Use UBOs instead of SSBOs for uploading const buffers.
|
| | | |
| | | |
| | | |
| | | | |
This should help a bit with GPU performance once we're GPU-bound.
|
|\ \ \ \
| | | | |
| | | | | |
Fix crash at exit
|
| | |/ /
| |/| | |
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* We should be returning our revision instead of what is requested.
Hardware test on a 5.1.0 console
* Added sysversion comment
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Removed duplicate structs, changed AudioRendererResponse -> UpdateDataHeader
According to game symbols(SMO), there's references to UpdateDataHeader which seems to be what AudioRendererResponse actually is
* oops
* AudioRendererParameters should be AudioRendererParameter according to SMO
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
* Fixed RequestUpdateAudioRenderer deadlocks and calculated section sizes properly
This fixes RequestUpdateAudioRenderer deadlocks in games like Puyo Puyo Tetris and games which require a proper section size in games such as Retro City Rampage. This fixes causes various games to start rendering or trying to render
|
|\ \ \
| | | |
| | | | |
Use Ninja for MSVC AppVeyor builds
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
CMake already sets it to version 17 in all cases
|
|\ \ \ \
| | | | |
| | | | | |
svc: Fully implement svcSignalToAddress and svcWaitForAddress
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
IPC: skip empty buffer write
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
prevent yuzu crash, if games, like Axiom Verge, trying to read 0 bytes from file
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Service/Audio: update audren:u service
|
| |/ / / / |
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Start to add NCA support in loader
* More nca stuff
* More changes to nca.cpp
* Now identifies decrypted NCA cont.
* Game list fixes and more structs and stuff
* More updates to Nca class
* Now reads ExeFs (i think)
* ACTUALLY LOADS EXEFS!
* RomFS loads and games execute
* Cleanup and Finalize
* plumbing, cleanup and testing
* fix some things that i didnt think of before
* Preliminary Review Changes
* Review changes for bunnei and subv
|
|\ \ \ \
| | | | |
| | | | | |
Build: Fixed some MSVC warnings in various parts of the code.
|
|/ / / / |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Implement GetAvailableLanguageCodes2
* Revert "Implement GetAvailableLanguageCodes2"
This reverts commit caadd9eea3497ae2a13382aecb8ca29e1c02c5af.
* Implement GetAvailableLanguageCodes2
* Implement GetAvailableLanguageCodes2
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Perform negation after absolute value in the float shader instructions.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Avoid initializing single-joycon layouts with handheld controller
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
GPU: Don't mark uniform buffers and registers as used for instructions which don't have them.
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | | |
Like the MOV32I and FMUL32I instructions.
This fixes a potential crash when using these instructions.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_rasterizer: Implement texture format ASTC_2D_4X4.
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Add UI support for extracted NCA folders
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
svc: Add a stub for UserExceptionContextAddr.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |_|_|/ / / /
|/| | | | | | |
gl_rasterizer: Get loose on independent blending.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
gl_rasterizer_cache: Loosen things up a bit.
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
gl_shader_decompiler: Implement LOP instructions.
|
| | | | | | | |
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_shader_decompiler: Implement register size conversions for I2I and I2F.
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_shader_decompiler: Implement LOP32I LogicOperation PassB.
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
gl_shader_gen: Set position.w to 1.
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Qt: Removed the Registers widget.
|
| | |_|_|/
| |/| | |
| | | | |
| | | | | |
It was crashing and nobody actually uses this.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Partially implemented the Maxwell DMA engine.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Only tiled->linear and linear->tiled copies that aren't offsetted are supported for now. Queries are not supported. Swizzled copies are not supported.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Implemented the iadd32i shader instruction.
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
hid: Update all layouts and only show handheld as connected, fixes libnx input for P1_AUTO
|
| |/ / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
gl_shader_decompiler: Implement saturate for float instructions.
|
|/ / / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
GPU: Convert the gl_InstanceId and gl_VertexID variables to floats when reading from them.
|
|/ / / /
| | | |
| | | |
| | | | |
This corrects the invalid position values in some games when doing attribute-less rendering.
|
|\ \ \ \
| |_|_|/
|/| | | |
GPU: Implement the ISET family of shader instructions.
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
GPU: Stub the SSY shader instruction.
|
| | | |
| | | |
| | | |
| | | | |
This instruction tells the GPU where the flow reconverges in a non-uniform control flow scenario, we can ignore this when generating GLSL code.
|
|\ \ \ \
| | | | |
| | | | | |
gl_shader_decompiler: Implement SHR instruction.
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
gl_shader_decompiler: Implement IADD instruction.
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Enable ccache usage on Travis
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Ubuntu 18.04 already has cmake 3.10.2
|
|\ \ \ \
| | | | |
| | | | | |
Common/string_util: add StringFromBuffer() function
|
| | | | |
| | | | |
| | | | |
| | | | | |
convert input buffer (std::vector<u8>) to string, stripping zero chars
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Fixed ghosting when drawing with blending disabled
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Only independent blending on render target 0 is implemented for now.
This fixes the elongated squids in Splatoon 2's boot screen.
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GLCache: Align compressed texture sizes to their compression ratio, and then align that compressed size to the block height for tiled textures.
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
This fixes issues with retrieving non-block-aligned tiled compressed textures from the cache.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Rasterizer: Flush the written region when writing shader uniform data before copying it to the uniform buffers.
|
|/ / / /
| | | |
| | | |
| | | | |
This fixes the flip_viewport uniform having invalid values when drawing.
|
|\ \ \ \
| | | | |
| | | | | |
Use Ninja for Travis builds
|
| | | | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
GLRenderer: Write the shader stage configuration UBO data *before* copying it to the GPU.
|
| | | | |
| | | | |
| | | | |
| | | | | |
This should fix the bug with the vs_config UBO being uninitialized during shader execution.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Service/MM: add service and stub some functions
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_shader_decompiler: Implement BFE_IMM instruction.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
GLCache: Fixed copying compressed textures in the rasterizer cache.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This avoids the problem of only copying a tiny piece of the textures when they are compressed.
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We now use glCopyImageSubData, this should avoid errors with trying to attach a compressed texture as a framebuffer's color attachment and then blitting to it.
Maybe in the future we can change this to glCopyTextureSubImage which only requires GL_ARB_direct_state_access.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_shader_decompiler: F2F: Implement rounding modes.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Service/nfp:user : stub some functions.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Used by Zelda: BoTW
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
gl_shader_decompiler: Additional decodings, remove unused stuff from TEX
|
| | | | | | | | |
|
| | |/ / / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
GPU: Support changing the texture swizzles for Maxwell textures.
|
| | | | | | | | |
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
gl_shader_decompiler: Implement ISETP_IMM instruction.
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Implement sampling multiple textures in the generated glsl shaders.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
All tested games that use a single texture show no regression.
Only Texture2D textures are supported right now, each shader gets its own "tex_fs/vs/gs" sampler array to maintain independent textures between shader stages, the textures themselves are reused if possible.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
gl_shader_decompiler: Implement LD_C instruction.
|
| | | | | | | |
|
| | | | | | | |
|
|/ / / / / / |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* add IoctlCommands with their params in nvidia_ctrl_gpu.h
* add function related to the changes done previously
* fix clang-format
* delete trailing whitespace
* correct mistake
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Stub SetConnectionConfirmationOption, GetPseudoDeviceId
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
gl_shader_decompiler: Fix un/signed mismatch with SHL.
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
maxwell_to_gl: Implement WrapMode Mirror.
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
GPU: Allow the usage of RGBA32_FLOAT and RGBA16_FLOAT in the texture copy engine.
|
| | | | | | | | |
|
| | |_|/ / / /
| |/| | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
GPU: Implemented the R11FG11FB10F texture and rendertarget formats.
|
| | | | | | | | |
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
They're not compressed.
|
| |/ / / / /
|/| | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* GDB Stub should work now.
* Applied clang-format.
* Replaced htonll with swap64.
* Tidy up.
|
|\ \ \ \ \ \
| |_|_|_|_|/
|/| | | | | |
GPU: Implemented the F2I_R shader instruction.
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Revert "Port citra #3616"
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Corrected the branch targets for the shader bra instruction.
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
gl_shader_decompiler: Implement SHL instruction.
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
GPU: Implemented predicated exit instructions in the shader programs.
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_shader_decompiler: Implement PredCondition::NotEqual.
|
|/ / / / / / |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
GPU: Implement the ISCADD shader instruction.
|
| | | | | | |
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Implemented the LOP32I instruction.
|
| | |/ / /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Implemented the ISETP_R and ISETP_C instructions
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
GPU: Corrected the FSET and I2F instructions.
|
| | | | | | |
|
| | |/ / /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Partially implemented the bra shader instruction
|
| | | | | | |
|
| | |/ / /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Calculate the correct viewport dimensions based on the scale and translate registers.
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
This is how nouveau calculates the viewport width and height. For some reason some games set 0xFFFF in the VIEWPORT_HORIZ and VIEWPORT_VERT registers, maybe those are a misnomer and actually refer to something else?
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Add checks for OpenGL extension support
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GLCache: Corrected a mismatch between storing compressed sizes and verifying the uncompressed alignment in GetSurface.
|
| | |/ / / /
| |/| | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* Add some IoctlCommand with their params to nvhost_gpu
* fix clang-format
* delete trailing whitespace
* fix some clang-format
* delete one other trailing whitespace
* last clang-format fix
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
am: Implement PopOutData, and various fixes.
|
| | | | | | | |
|
| | | | | | | |
|
| |/ / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Port citra #3616
|
|/ / / / / |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
am: Implement CreateStorage, PushInData, etc.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Partial implementation of long GPU queries.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Long queries write a 128-bit result value to memory, which consists of a 64 bit query value and a 64 bit timestamp.
In this implementation, only select=Zero of the Crop unit is implemented, this writes the query sequence as a 64 bit value, and a 0u64 value for the timestamp, since we emulate an infinitely fast GPU.
This specific type was hwtested, but more rigorous tests should be performed in the future for the other types.
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
gl_shader_decompiler: Implement TEXS component mask.
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_shader_decompiler: Implement TEX, fixes for TEXS.
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_shader_decompiler: Implement RRO as a register move.
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Services/nvdrv: add '/dev/nvhost-nvdec' device
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Kernel/Threads: A thread waking up by timeout from a WaitProcessWideKey may already have an assigned lock owner.
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This situation may happen like so:
Thread 1 with low priority calls WaitProcessWideKey with timeout.
Thread 2 with high priority calls WaitProcessWideKey without timeout.
Thread 3 calls SignalProcessWideKey
- Thread 2 acquires the lock and awakens.
- Thread 1 can't acquire the lock and is put to sleep with the lock owner being Thread 2.
Thread 1's timeout expires, with the lock owner still being set to Thread 2.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
GPU: Implemented the DXN1 (BC4) texture format.
|
|/ / / / / / |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Service/time: implement posix time to calendar conversion
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Kernel/SVC: Corrected the behavior of svcSetThreadCoreMask for core values -2 and -3.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Also added some proper error handling.
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
gl_rasterizer_cache: Implement PixelFormat RGBA16F.
|
| | | | | | | |
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Shaders: Implemented reading the gl_InstanceID and gl_VertexID variables in the vertex shader.
|
| |/ / / / / |
|
| |_|/ / /
|/| | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* add some CommandType
* add some hid FunctionInfo
* add some other HID FunctionInfo
* delete non useful comments
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Several GPU fixes to boot Sonic Mania
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
GPU: Implemented the R8 texture format (0x1D)
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Service/BCAT: add module and services
|
| |/ / |
|
|/ / |
|
|\ \
| | |
| | | |
gl_shader_decompiler: Implement GetPredicateComparison GreaterEqual.
|
| | | |
|
|\ \ \
| | | |
| | | | |
GPU: Implemented the A1B5G5R5 texture format (0x14)
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
NvOsGetConfigU32 should return null instead of 0 for default output value
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
am: Stub IApplicationFunctions GetDisplayVersion.
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
shader_bytecode: Implement other variants of FMNMX.
|
|/ / |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* add some InfoType
* correct OpenApplicationProxy cmd number
* add IDisplayController functions
* fix clang-format
* add more system languages
|
|\ \
| | |
| | | |
Stub NVGPU_IOCTL_CHANNEL_SET_TIMEOUT
|
| | |
| | |
| | |
| | | |
Used in Nintendo Labo ToyCon 1&2
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* GetAudioRendererWorkBufferSize impl
Impl of GetAudioRendererWorkBufferSize based on RE, if this can be cleaned up, please contribute!
* Naming conventions
* Removed unneeded placeholder
* lioncache changes
* fixed const
* switched to Common::AlignUp
|
|\ \ \
| | | |
| | | | |
Shader: Implemented compound predicates in the fset and fsetp instructions
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
You can specify a predicate in the fset instruction:
Result = ((Value1 Comp Value2) OP P0) ? 1.0 : 0.0;
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | | |
You can specify three predicates in an fsetp instruction:
P1 = (Value1 Comp Value2) OP P0;
P2 = !(Value1 Comp Value2) OP P0;
|
|\ \ \
| | | |
| | | | |
GPU: Allow command lists to rebind a channel to another engine in the middle of the command list.
|
| |/ / |
|
|/ /
| |
| | |
We have no clue on what this actually does yet so stubbing it since it's just input only should be fine for now
|
|\ \
| | |
| | | |
yuzu_cmd: Fix project for latest msvc.
|
|/ / |
|
|\ \
| | |
| | | |
Fix deadlocks caused from HID having too many layouts
|
|/ /
| |
| |
| | |
Games such as SMO deadlock if we have more than 2 layouts
|
|\ \
| | |
| | | |
Add & correct some error modules
|
| | | |
|
|\ \ \
| | | |
| | | | |
Add ioctl commands with their params and size check
|
| | | |
| | | |
| | | | |
according to the changes made previously
|
| | | | |
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
externals: Update dynarmic
|
|/ / /
| | |
| | |
| | | |
Updates dynarmic to revision 990a569b7a5f2518fe08682f5ebf8536e5388d66
|
|\ \ \
| |/ /
|/| | |
Kernel/SVC: Signal the highest priority threads first in svcSignalProcessWideKey
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Implemented NVHOST_IOCTL_CHANNEL_GET_WAITBASE
struct + 4 seems to be hard coded at 0 and struct + 0 seems to be ignored?
* IocGetWaitbase -> IocChannelGetWaitbaseCommand
* Added super late fixes
|
|\ \ \
| | | |
| | | | |
Implemented nvhost-as-gpu's UnmapBuffer and nvmap's Free ioctls.
|
| | | |
| | | |
| | | |
| | | | |
It releases a reference to an nvmap object
|
| |/ /
| | |
| | |
| | | |
It removes a mapping previously created with the MapBufferEx ioctl.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Add unknown function at the number command 2
* correct audout:u commands numbers
* correct audrec:u cmd number & add Unknown function
* correct IAudioDevice command numbers
* correct codecctl cmd numbers & rename the 8 function
* correct place of unknown function & fix clang-format
|
|\ \ \
| | | |
| | | | |
Mutex: Do not assert when the mutex waiting threads list isn't empty on mutex release.
|
| |/ /
| | |
| | |
| | | |
A thread may own multiple mutexes at the same time, and only release one of them while other threads are waiting for the other mutexes.
|
|\ \ \
| | | |
| | | | |
Shaders: Implemented the FMNMX shader instruction.
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Properly rename functions of Fatal Module & add ThrowFatal to this module
|
| | | | |
|
| | | | |
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Qt/WaitTree: Display the callstack for each thread in the wait tree widget
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
ShadersDecompiler: Added decoding for the PSETP instruction.
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
GLRenderer: Remove unused vertex buffer and increase the size of the stream buffer to 128 MB.
|
| | | | |
|
| |/ /
| | |
| | |
| | | |
The stream buffer is where all the vertex data is copied, some games require this to be much bigger than the 4 MB we used to have.
|
|\ \ \
| | | |
| | | | |
GLRenderer: Log the shader source code when program linking fails.
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Added IPC RequestWithContext & ControlWithContext
|
| |/ / |
|
| | |
| | |
| | |
| | | |
* Add and correct some Error Modules
|
|\ \ \
| |/ /
|/| | |
Updated nfp to have more service names
|
|/ / |
|
|\ \
| | |
| | | |
Initial support for multi-core
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| |/ /
|/| | |
More accurate GetTPCMasks impl
|
|/ / |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* Stubs for QLaunch
* Wiped unrelated stuff
* Addressed comment
* Dropped GetPopFromGeneralChannelEvent
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* hid: Update mouse/keyboard state
* hid: Working analog sticks
* hid: Nits
* hid: Nits
* hid: Update mystery sections
* hid: Tweaks
|
|\ \
| | |
| | | |
memory_hook: Default virtual destructor in the cpp file
|
| | |
| | |
| | |
| | |
| | | |
Prevents creating multiple copies of the vtable in every translation unit that uses the class.
Also silences a -Wweak-vtables warning
|
|\ \ \
| |/ /
|/| | |
core_timing: Don't include the log header in core timing's header
|
|/ /
| |
| |
| |
| | |
Avoids propagating logging macros and facilities to files that may not need them.
This also allows hiding an internal constant.
|
|\ \
| | |
| | | |
general: Make formatting of logged hex values more straightforward
|
| | |
| | |
| | |
| | |
| | |
| | | |
This makes the formatting expectations more obvious (e.g. any zero padding specified
is padding that's entirely dedicated to the value being printed, not any pretty-printing
that also gets tacked on).
|
|\ \ \
| | | |
| | | | |
vector_math: Ensure members are always initialized
|
| |/ /
| | |
| | |
| | | |
Ensures that values are always in a well-defined state.
|
|\ \ \
| |/ /
|/| | |
ipc: Add support for PopIpcInterface() method.
|
|/ /
| |
| |
| | |
- This can be used for domain objects as inputs to service functions.
|
|\ \
| | |
| | | |
GPU: Don't write to invalid memory locations when handling ioctls that don't have an output.
|
| | | |
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* GetSharedFontInOrderOfPriority
* Update pl_u.cpp
* Ability to use ReadBuffer and WriteBuffer with different buffer indexes, fixed up GetSharedFontInOrderOfPriority
* switched to NGLOG
* Update pl_u.cpp
* Update pl_u.cpp
* language_code is actually language code and not index
* u32->u64
* final cleanups
|
|\ \
| | |
| | | |
core_timing: Namespace all functions and constants in core_timing's header
|
|/ /
| |
| |
| | |
All of these variables and functions are related to timings and should be within the namespace.
|
|\ \
| | |
| | | |
string_util: Remove StringFromFormat() and related functions
|
| | |
| | |
| | |
| | | |
Given we utilize fmt, we don't need to provide our own functions for formatting anymore
|
|\ \ \
| | | |
| | | | |
Shader instructions MOV_C, MOV_R, and several minor GPU things
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |_|/ /
|/| | | |
file_util: Minor changes to IOFile
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
|/ / /
| | |
| | |
| | |
| | |
| | | |
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.
|
|\ \ \
| |/ /
|/| | |
Shaders: Implemented predicate condition 3 (LessEqual) in the fset and fsetp instructions.
|
|/ / |
|
|\ \
| | |
| | | |
gl_shader_decompiler: Implement MOV32I, partially implement I2I, I2F
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
set/am: Fix code for getting language codes
|
| | | | |
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
fermi_2d: Fix surface copy block height.
|
|/ / |
|
|\ \
| | |
| | | |
file_util: Remove compiler version checks around is_trivially_copyable
|
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
|\ \ \
| |/ /
|/| | |
externals: Update dynarmic
|
| | |
| | |
| | |
| | | |
Just a basic update to keep it in sync
|
|\ \ \
| |/ /
|/| | |
log: Remove old logging macros and functions
|
| | |
| | |
| | |
| | | |
Now that the old macros are no longer used, we can remove all functionality related to them.
|
|\ \ \
| |/ /
|/| | |
travis: Use Xcode 9.3 instead of 9.2
|
| | |
| | |
| | |
| | | |
Keeps the toolchains up to date.
|
|\ \ \
| | | |
| | | | |
gl_shader_decompiler: Add GLSLRegisterManager class to track register state.
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
core/renderer_opengl: Replace usages of LOG_GENERIC with fmt-capable equivalents
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
general: Convert assertion macros over to be fmt-compatible
|
|/ / |
|
|\ \
| | |
| | | |
Implemented some useful interfaces needed for games.
|
| | | |
|
| |\ \ |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
frontends: Move logging macros over to new fmt-capable ones
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
common: Move logging macros over to new fmt-capable macros where applicable
|
| |/ / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
input_common: Move old logging macros over to fmt-capable ones
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
core: Replace remaining old non-generic logger usages with fmt-capable equivalents
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
LOG_GENERIC usages will be amended in a follow-up to keep API changes separate from
interface changes, as it will require removing a parameter from the relevant function
in the VMManager class.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
Shader decompiler prep for integer instructions
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
common: Remove chunk_file.h and linear_disk_cache.h
|
|/ / /
| | |
| | |
| | | |
These are unused (and given chunk_file references Dolphin's >SVN< I doubt they were going to be used).
|
|\ \ \
| | | |
| | | | |
core/gdbstub: Move logging macros to new fmt-compatible ones
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
core/hw: Move logging macros over to fmt-capable ones
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Shaders: Implemented the FSET instruction.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
This instruction is similar to the FSETP instruction, but it doesn't set a predicate, it sets the destination register to 1.0 if the condition holds, and 0 otherwise.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
kernel: Migrate logging macros to fmt-compatible ones
|
| | | | |
| | | | |
| | | | |
| | | | | |
Functions don't need to be terminated by semicolons.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Partially implemented the 2D surface copy engine
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The hardware allows for some rather complicated operations to be performed on the data during the copy, this is not implemented.
Only same-format same-size raw copies are implemented for now.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The rest are just macro shim registers.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
It doesn't belong in the PFIFO handler.
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
file-sys: Move logging macros over to the new fmt-capable ones
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Lessens the amount to read and gets rid of the PRIX64 macro, allowing us to use a single string
for the whole path, making it easier to read.
|
| | |/ / /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Service/PCTL: convert to module, add services, stub
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
PCTL::CreateServiceWithoutInitialize and IParentalControlService::Initialize, required by Kirby Star Allies
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
core/memory: Move logging macros over to the new fmt-capable ones
|
| | | | |
| | | | |
| | | | |
| | | | | |
Addresses are 64-bit, these formatting specifiers are simply holdovers from citra. Adjust them to be the correct width.
|
| |/ / /
| | | |
| | | |
| | | | |
While we're at it, correct addresses to print all 64 bits where applicable, which were holdovers from citra.
|
|\ \ \ \
| |/ / /
|/| | | |
video-core: Move logging macros over to new fmt-capable ones
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Refactor rasterizer cache
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
loader: Move old logging macros over to new fmt-capable ones
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
GPU: Added asserts to our code for handling the QUERY_GET GPU command.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
This is based on research from nouveau. Many things are currently unknown and will require hwtests in the future.
This commit also stubs QueryMode::Write2 to do the same as Write. Nouveau code treats them interchangeably, it is currently unknown what the difference is.
|
|\ \ \ \
| | | | |
| | | | | |
service: Move logging macros over to the new fmt-compatible ones
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
renderer_opengl: Silence a -Wdangling-else warning in DrawScreenTriangles()
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Service/FS: implement IFileSystem::RenameFile
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Support multiple enabled vertex arrays.
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
The vertex arrays will be copied to the stream buffer one after the other, and the attributes will be set using the ARB_vertex_attrib_binding extension.
yuzu now thus requires OpenGL 4.3 or the ARB_vertex_attrib_binding extension.
|
|\ \ \ \
| | | | |
| | | | | |
Kernel: Reworked the new kernel synchronization primitives.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Verified with a hwtest and implemented based on reverse engineering.
Thread A's priority will get bumped to the highest priority among all the threads that are waiting for a mutex that A holds.
Once A releases the mutex and ownership is transferred to B, A's priority will return to normal and B's priority will be bumped.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
They work in tandem with guest code to provide synchronization primitives along with svcArbitrateLock/Unlock
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Switch mutexes are no longer kernel objects, they are managed in userland and only use the kernel to handle the contention case.
Mutex addresses store a special flag value (0x40000000) to notify the guest code that there are still some threads waiting for the mutex to be released. This flag is updated when a thread calls ArbitrateUnlock.
TODO:
* Fix svcWaitProcessWideKey
* Fix svcSignalProcessWideKey
* Remove the Mutex class.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Nvdrv/nvhost-as-gpu: Implemented the ioctl REMAP command.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Also added a consistency check and a comment for the case when the object id is different than its handle. The real nvservices doesn't make a distinction between ids and handles, each object gets an unique handle which doubles as its id.
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
It takes a previously-reserved (AllocateSpace) GPU memory address and maps it to the address of the nvmap object passed to Remap.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Nvdrv: Assert when receiving an unimplemented ioctl in the nv* handlers.
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Make the GPU virtual memory manager use 16 page bits and 10 pagetable bits.
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Also removed some dead code and added memory map consistency asserts.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
GPU: Implement the RGB10_A2 RenderTarget format
|
|/ / / / |
|
|\ \ \ \
| |/ / /
|/| | | |
GPU: Implement the A2BGR10 texture format.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
SDL2: Implement fullscreen. (Original PR: citra-emu/citra#3607)
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Shader opcode decoding
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
opengl: Remove unnecessary header inclusions
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
ShaderGen: Implemented fsetp/kil and predicated instruction execution.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Each predicated instruction will be wrapped in an `if (predicate) { instruction_body; }` in the GLSL, where `predicate` is one of the predicate boolean variables previously set by fsetp.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Predicate variables are now added to the generated shader code in the form of 'pX' where X is the predicate id.
These predicate variables are initialized to false on shader startup and are set via the fsetp instructions.
TODO:
* Not all the comparison types are implemented.
* Only the single-predicate version is implemented.
|
| | | | | | |
|
| | |_|/ /
| |/| | |
| | | | |
| | | | | |
The 'sched' instruction has a very convoluted encoding, but fortunately it seems to only appear on a fixed interval (once every 4 instructions).
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_resource_manager: Add missing noexcept specifiers to move constructors and assignment operators
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Standard library containers may use std::move_if_noexcept to perform
move operations. If a move cannot be performed under these
circumstances, then a copy is attempted. Given we only intend for these
types to be move-only this can be somewhat problematic. By defining
these to be noexcept we prevent cases where copies may be attempted.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gl_rasterizer_cache: Make MatchFlags an enum class
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Prevents implicit conversions and scope pollution.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
resource_limit: Make ResourceTypes an enum class
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Prevents enum identifiers from leaking into the surrounding scope.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
core: Relocate g_service_manager to the System class
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
Converts the service manager from a global into an instance-based
variable.
|
|\ \ \ \
| |/ / /
|/| | | |
Service/VI: stub SetLayerVisibility, fix GetDisplayResolution output
|
| | | |
| | | |
| | | |
| | | |
| | | | |
both SetLayerVisibility() functions used in Lego games, GetDisplayResolution()
fixed according switchbrew.org
|
|\ \ \ \
| | | | |
| | | | | |
math_util: Remove the Clamp() function
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
C++17 adds clamp() to the standard library, so we can remove ours in
favor of it.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
common_types: Minor changes
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
May as well while we're making changes to this file.
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
VS has supported this for quite a while.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
externals: Update dynarmic to HEAD
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
service: Use nested namespace specifiers where applicable
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | | |
Tidies up namespace declarations
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
common/thread: Remove unnecessary feature checking for thread_local
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
Every compiler we require already supports it.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
common_funcs: Remove check for VS versions that we don't even support
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We don't support any VS versions that don't already have snprintf in the
standard library implementation.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
common_funcs: Remove ARRAY_SIZE macro
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
C++17 has non-member size() which we can just call where necessary.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
vector_math: Remove AsArray() and Write() functions from Vec[2,3,4]
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
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).
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
common: Remove code_block.h
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
We use dynarmic, so this is unued. Anything else we need will likely use Xbyak, so
this header isn't necessary any more.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
renderer_opengl: Add missing header guards
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
disk_filesystem: Minor changes
|
| | | | | | | | |
|
| | | | | | | | |
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
vi: Remove redundant initializers in the constructors
|
|/ / / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
glsl_shader_decompiler: Minor API changes to ShaderWriter
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This function doesn't need to take ownership of the string data being
given to it, considering all we do is append the characters to the
internal string instance.
Instead, use a string view to simply reference the string data without
any potential heap allocation.
Now anything that is a raw const char* won't need to be converted to a
std::string before appending.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids constructing a std::string just to append a newline character
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids constructing a std::string just to append a character.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The interface of std::string already lets us append N copies of a
character to an existing string.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
ShaderGen: Fixed TEXS overriding its own texcoords and implemented fmul32i
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
It will now save the coords before writing the outputs in a subscope.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Technically, yuzu can boot commercial games
|
| | | | | | |
| | | | | | |
| | | | | | | |
Clarifies the yuzu cannot play commercial games to any reasonable extent, rather than not at all.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
* Port 3528: use nvidia graphics automatically on laptops with optimus
* Force dedicated AMD Card for switchable Graphics
* Ran clang-format
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
nvflinger: Call MicroProfileFlip on NVFlinger::Compose.
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Add support for the DXT23 and DXT45 compressed texture formats.
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Implemented the B5G6R5 format.
|
| | | | | | | |
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* gl_shader_gen: Support vertical/horizontal viewport flipping.
* fixup! gl_shader_gen: Support vertical/horizontal viewport flipping.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Fixed the incorrect component order in ABGR8 textures.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
For now only the UNORM type is supported.
|
| | | | | | | |
|
|/ / / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
GPU: Support non-tiled textures and configurable block height.
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
TODO: The way we handle cached formats must change, framebuffer and texture formats are too different to keep them in the same place.
|
| | | | | | |
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Misc gpu improvements
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Shader decompiler changes part 2
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| |/ / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
renderer_opengl: Implement BlendEquation and BlendFunc.
|
|/ / / / / |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
file_sys: Add HFS/PFS helper component
|
| | | | | |
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Implement some wrap modes
|
| | | | | |
|
| |/ / /
| | | |
| | | |
| | | | |
This clamp mode was removed from OpenGL as of 3.1, we can emulate it by using GL_CLAMP_TO_BORDER to get the border color of the texture, and then manually sampling the edge to mix them in the fragment shader.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Updated ACC with more service names
* Updated SVC with more service names
* Updated set with more service names
* Updated sockets with more service names
* Updated SPL with more service names
* Updated time with more service names
* Updated vi with more service names
|
|\ \ \ \
| |/ / /
|/| | | |
Implement indexed mode rendering
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
pl_u: Use empty shared font if none is available.
|
| | | |
| | | |
| | | |
| | | | |
- Makes games work in lieu of shared_font.bin.
|
|\ \ \ \
| | | | |
| | | | | |
GPU: Don't use explicit binding points when uploading the constbuffers to opengl
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
The bindpoints will now be dynamically calculated based on the number of buffers used by the previous shader stage.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
fsp_srv: Implement DeleteFile.
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
- Used by Binding of Isaac.
|
|\ \ \ \ \
| |/ / / /
|/| / / /
| |/ / / |
GPU: Use the buffer hints from the shader decompiler to upload only the necessary const buffers for each shader stage
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
shaders: Expose hints about used const buffers.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
GPU: Upload the shader Constant Buffers as SSBOs to the GPU
|
| | | |
| | | |
| | | |
| | | | |
We're going to need the shader generator to give us a mapping of the actual used const buffers to properly bind them to the shader.
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
vm_manager: Increase GetTotalMemoryUsage value.
|
| |/ /
| | |
| | |
| | | |
- Gets Binding of Isaac running.
|
|\ \ \
| | | |
| | | | |
Fix the stuck in fullscreen bug
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
fsp_srv: Implement IFile::Flush.
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
OpenGL shader generation part 1
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
- Tested with Puyo Puyo Tetris and Cave Story+
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Service/HID: Stubbed out GetPlayerLedPattern
|
| | | |
|
|\ \ \
| | | |
| | | | |
Service/vi: Fix normal_params_size in GetDisplayResolution
|
| |/ / |
|
| |\ \
| |/ /
|/| | |
Update fork
|
|\ \ \
| | | |
| | | | |
Various service name fixes - part 1
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Service/SSL: update service according switchbrew
|
|/ / / |
|
|\ \ \
| |/ /
|/| | |
Service/ACC: convert to module, add acc:aa, acc:su, acc:u1 services
|
|/ / |
|
|\ \
| | |
| | | |
GPU: Bind uploaded textures when drawing (Rebased)
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
Each Maxwell shader stage can have an arbitrary number of textures, but we're limited to a certain number in OpenGL. We try to only use the minimum amount of host textures by not keeping a 1:1 relation between guest texture ids and host texture ids, ie, guest texture id 8 can be host texture id 0 if it's the only texture used in the guest shader program.
This mapping will have to be passed to the shader decompiler so it can rewrite the texture accesses.
|
| | | |
|
| | |
| | |
| | |
| | | |
It will now use the UnswizzleTexture function instead of the MortonCopyPixels128, which doesn't seem to work for textures.
|
| | | |
|
| | |
| | |
| | |
| | | |
Compressed texture formats like DXT1, DXT2, DXT3, etc will use this to ease the load on the CPU.
|
| | | |
|
| | |
| | |
| | |
| | | |
We're only left with RGB8 and DXT1 for now. More will be added as they are needed.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Fix spelling of Initialize
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
Prevent crash from uninitialized telemetry
|
|/ / |
|
|\ \
| | |
| | | |
Update multiple comments from citra to yuzu
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
* core, main.h: Abort on 32Bit ROMs
* main.cpp: Fix Grammar
|
|\ \ \
| |/ /
|/| | |
Update fmtlib to fix msvc warnings
|
|/ /
| |
| |
| |
| |
| | |
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
|
|\ \
| | |
| | | |
Implement and stub several SVC/VI/Audio/Friend/etc. funcs
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
logging: Use variadic template instead of FMT_VARIADIC
|
|/ /
| |
| |
| | |
Due to premature merging of #262 I think the build may be failing right now. Should merge this ASAP to fix it.
|
|\ \
| | |
| | | |
Logging: Add fmtlib-based macros
|
| | |
| | |
| | |
| | |
| | |
| | | |
Earlier chrono was included but after some code changed it was no longer needed
Forgot to remove it so I'm removing it now
|
| | |
| | |
| | |
| | | |
Just as a proof that it works
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
|\ \ \
| | | |
| | | | |
Update Dialog from citra to yuzu
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Change Telemetry Names to yuzu and remove links to citra
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix build on OpenBSD
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Versions prior to this didn't compile on OpenBSD due to unconditional
use of the non-standard strtod_l() function.
The fmt::MemoryWriter API has been removed in the intervening
versions, so replace its use with fmt::memory_buffer and fmt::format_to.
The library also no longer provides the fmt::fmt ALIAS, so define
it in externals/CMakeLists.txt.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
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.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
deconstructed_rom_directory.cpp: Fix Typo
|
|/ / / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Updates CMakeLists to use Qt 5.10.0 instead of Qt 5.7
|
| | | | | |
| | | | | |
| | | | | | |
Updates qt from 5.7 to 5.10.0, fixing some errors relating to setting the process dpi
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
hid: Write empty touch screen state.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fix stack region, implement FSP GetSize/SetSize, and some stubs
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
GPU: Implemented a gpu macro interpreter
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The Ryujinx macro interpreter and envydis were used as reference.
Macros are programs that are uploaded by the games during boot and can later be called by writing to their method id in a GPU command buffer.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Add Dark Theme (And Theming in General + Icon Theming)
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
configure_general.ui: Add UI Option for Themes
config.cpp: Save Theme Settings
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
NFP, SVC, and AudRen progress
|
| | | | | | | | |
|
| | | | | | | | |
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
service: Initialize NFP service.
Log: Add NFP service as a log subtype.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
dynarmic: Update to 9cc12d8
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
9cc12d8 abi: Missing includes
ac35ad5 emit_x64_floating_point: Near jump instead of short jump in FPMinNumberic{32,64}
6f03fdd A64: system: Use an enum class for MRS/MSR register encodings
|
|\ \ \ \ \ \ \ \
| |_|/ / / / / /
|/| | | | | | | |
result: Check against self-assignment in ResultVal's copy assignment operator
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
Avoids doing work that doesn't need to be done.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
main.h: Add pragma once, remove ifndef
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | |/ / / / / /
| |/| | | | | | |
dynarmic: Update to 12a1020
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
12a1020 emit_X64_floating_point: Near jmp to end instead of short jmp
6278f83 emit_x64_vector: Fix typo in VectorShuffleImpl
25a0204 A64: Implement REV64
aa92e33 bit_util: Do nothing in RotateRight if the rotation amount is zero
e537985 A64: Implement REV32 (vector)
f62a258 ir: Add IR opcodes for emitting vector shuffles
36ac6ec emit_x64_vector_floating_point: Fix out of bounds array access in EmitVectorOperation64
20a59a9 A64: Implement REV16 (vector)
b2f7bb0 CMakeLists: Add fp_util, macro_util and math_util headers
fd21b58 A64: Implement EOR3 and BCAX
a48c0bb travis: Use yuzu's unicorn fork
59e62e0 externals: Update catch to v2.2.1
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Add config for "Docked" mode and various settings cleanup
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Change comments from citra to yuzu
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Tegra progress 3
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Added sampler information structures (TSC)
|
| | | | | | | |
|
| | | | | | | |
|
| |/ / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Implement Pull #3043 from citra: appveyor: Determine dlls to include in package programmatically
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Minor changes to VI, PL, HID, and AUDREN
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
GPU: Added code to unswizzle textures and ported the surface viewer from citra
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
TODO: A shader may not use all of these textures at the same time, shader analysis should be performed to determine which textures are actually sampled.
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Allow unswizzling of DXT1 textures.
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Service/sockets: add bsd:s, nsd:a, nsd:u services
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
arm_dynarmic: Fix timing
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Added viewport registers to Maxwell3D's reg structure.
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Tegra progress 2
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
- Workaround for texture forwarding until we have a better place.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
FS: Implemented access to the SD card
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Note that the filter parameter is not yet implemented.
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Service/SSL: add ssl service
|
| | |_|_|_|/ / /
| |/| | | | | | |
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Remove Option for N/3DS from default.ini
|
| |/ / / / / / / |
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
CITRA_ICON -> YUZU_ICON
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
yuzu_cmd: change default cpu core to dynarmic
|
| | | | | | | | |
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Remove more N3DS References
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
Service/spl: add module and services
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Added vertex attrib format and triangle topology registers
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Implement Pull #3535 from citra: CMake: Set EMU_ARCH_BITS in CMakeLists.txt
|
| | | | | | | | |
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
Use HTTPS for lz4
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Service/vi: convert services to module
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Port Citra OpenGL rasterizer code
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Service: add fatal:u, fatal:p services
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
GPU: Added registers for color and Z buffers.
|
| | | | | | | |
|
| |/ / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Implement Pull #3064 from citra: Clean all format warnings (Yuzu-specific format warnings cleared too)
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
GPU: Added TIC and TSC registers to the Maxwell3D register structure.
|
| | | | | | |
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Implement Pull #3184 from citra: core/arm: Improve timing accuracy before service calls in JIT (Rebased)
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
vi: TransactParcel DequeueBuffer should wait current thread
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
GPU: Implement macro 0xE1A BindTextureInfoBuffer in HLE.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
This macro simply sets the current CB_ADDRESS to the texture buffer address for the input shader stage.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Handle writes to the CB_DATA method.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This macro binds the SSBO Info Buffer as the current ConstBuffer.
This buffer is usually bound to c0 during shader execution.
Games seem to use this macro instead of directly writing the address for some reason.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Writing to this method will cause the written value to be stored in the currently-set ConstBuffer plus CB_POS.
This method is usually used to upload uniforms or other shader-visible data.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | | |
This should reduce recompile times when editing the Maxwell3D register structure.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Store uploaded GPU macros and keep track of the number of method arguments.
|
| | | | | | | |
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Store shader constbuffer bindings in the GPU state.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
It'll now set the CB_SIZE, CB_ADDRESS and CB_BIND registers when it's called.
Presumably this SetShader function is binding the constant shader uniforms to buffer 1 (c1[]).
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Register 0xE24 is actually a macro that sets some shader parameters in the register structure.
Macros are uploaded to the GPU at startup and have their own ISA, we'll probably write an interpreter for this in the future.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Handle the SetShader method call (0xE24) and store the shader config.
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
GPU: Added the vertex array registers.
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Process command mode 5 (IncreaseOnce) differently from other commands
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Accumulate all arguments before calling the desired method.
Note: Maybe we should do the same for the NonIncreasing mode?
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
GPU: Added some shader-related registers.
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Shader address calculation depends on this value to some extent, we do not currently know what it being 0 entails.
|
| |/ / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
nvflinger: Remove superfluous buffer format check.
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Various heap fixes for libtransistor
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | | |
|
|/ / / / / / / |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Service/NIFM: convert to module
|
| | | | | | | |
|
| | | | | | | |
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
core: Move process creation out of global state.
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Make Dynarmic the default CPU core
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
GPU: Intercept writes to the VERTEX_END_GL register.
|
|/ / / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This is the register that gets written after a game calls DrawArrays().
We should collect all GPU state and draw using our graphics API here.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
FS: Make EnsureSaveData create the save data if it doesn't already exist.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
CoreTiming: Unschedule the pending events when an Interface is destroyed
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Vi: Signal the BufferQueue's Native Handle right after ReleaseBuffer is called
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This prevents a thread starvation issue in Puyo Puyo Tetris.
We should hwtest this behavior and figure out where exactly this event is signaled.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Service/Set: add more services
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Implemented the SaveData archive and MountSaveData.
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
There may be many CodeSets per Process, so it's wasteful and overcomplicated to store the program id in each of them.
|
| | | | | | | |
|
| | | | | | | |
|
| | |_|_|_|/
| |/| | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
thread: Clear the process list on shutdown.
|
|/ / / / / |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Removes the use of QKeySequence::Cancel to remove issues while running make
* Corrects characters in a line for travis failure
* Corrects space in a line for travis failure
|
|\ \ \ \ \
| |_|_|_|/
|/| | | | |
IPC: add domain header to response if only it exists in request
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
UnmapSharedMemory
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
C++11 requires spaces on the Identifier
Add inttypes include
clang
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
NPDM Parsing
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Asdf
|
| | | | | | | |
|
| | | | | | | |
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Stub some functions
|
| | | | | | | |
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
time: Add missing time:s functions, used for libnx
|
| |/ / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
arm_dynarmic: Implement system registers and provide more hooks
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
6b4c6b0 impl: Update PC when raising exception
7a1313a A64: Implement FDIV (vector)
b2d781d system: Raise exception for YIELD, WFE, WFI, SEV, SEVL
b277bf5 Correct FPSR and FPCR
7673933 A64: Implement USHL
8d0e558 A64: Implement UCVTF (vector, integer), scalar variant
da9a4f8 A64: Partially implement FCVTZU (scalar, fixed-point) and FCVTZS (scalar, fixed-point)
7479684 A64: Implement system register TPIDR_EL0
0fd75fd A64: Implement system registers FPCR and FPSR
31e370c A64: Implement system register CNTPCT_EL0
9a88fd3 A64: Implement system register CTR_EL0
1d16896 A64: Implement NEG (vector)
3184edf IR: Add IR instruction ZeroVector
31f8fbc emit_x64_floating_point: Add maybe_unused to preprocess parameter
567eb1a A64: Implement FMINNM (scalar)
c6d8fa1 A64: Implement FMAXNM (scalar)
616056d constant_pool: Add frame parameter
a3747cb A64: Implement ADDP (scalar)
5cd5d9f reg_alloc: Only exchange GPRs
dd0452a A64: Implement DUP (element), scalar variant
e5732ea emit_x64_floating_point: Correct FP{Max,Min}{32,64} implementations for -0/+0
40eb9c3 A64: Implement FMAX (scalar), FMIN (scalar)
7cef39b fuzz_with_unicorn: QEMU's implementation of FCVT is incorrect
826dce2 travis: Switch unicorn repository
9605f28 a64/config: Allow NaN emulation accuracy to be set
e9435bc a64_emit_x64: Add conf to A64EmitContext
30b596d fuzz_with_unicorn: Explicitly test floating point instructions
be292a8 A64: Implement FSQRT (scalar)
3c42d48 backend_x64: Accurately handle NaNs
4aefed0 fuzz_with_unicorn: Print AArch64 disassembly
|
| | | | | | |
|
| |/ / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
time: Add GetStandardLocalSystemClock, used by libnx
|
| |/ / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
core: Fix scheduler-shutdown related crash
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Service/AOC: stub ListAddOnContent function
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Stub several friend:a and acc:u0 service functions
|
| | | | | |
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Scheduler cleanup
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
AM: Corrected the response in EnsureSaveData.
|
|/ / / /
| | | |
| | | |
| | | |
| | | | |
The values are still unknown and the function is still considered a stub.
Puyo Puyo Tetris now tries to call fsp-srv:MountSaveData.
|
|\ \ \ \
| | | | |
| | | | | |
Use Docker for Build Target clang-format for travis.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
This uses the (apparently) more stable Ubuntu Repo instead of the LLVM one.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Kernel/IPC: Add a small delay after each SyncRequest to prevent thread starvation.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Ported from citra PR #3091
The delay specified here is from a Nintendo 3DS, and should be measured in a Nintendo Switch.
This change is enough to prevent Puyo Puyo Tetris's main thread starvation.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Make the fence handling in Vi a little less of a hack.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Games like Puyo Puyo Tetris and BOTW seem to depend on the buffer always having the same handle
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This may break libnx homebrew due to a bug in libnx but is required by official games since they always assume that the buffer will be there.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Updated Dynarmic
|
|/ / / / / / |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | | |
Service/hid: stub some functions
|
|/ / / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
pl_u: Add basic support for shared fonts.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Refactor IPC buffer descriptor interface
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Fix fps counter to correctly measure frame end when there was no frame to draw
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
debugger: Fix wait_tree crash.
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
core: Silence formatting specifier warnings
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
maxwell_3d: Make constructor explicit
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
GPU: Partially implemented the QUERY_* registers in the Maxwell3D engine.
|
| | | |
| | | |
| | | |
| | | | |
Only QueryMode::Write is supported at the moment.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* audren_u: Schedule reoccuring event.
* audren_u: Stub GetAudioRenderersProcessMasterVolume, and misc. changes.
|
|\ \ \ \
| | | | |
| | | | | |
VI cleanup and add a hack for booting games
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Service/lm: add support to multiline logs
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
arm_dynarmic: Support direct page table access
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Stub RequestUpdateAudioRenderer, StartAudioRenderer and StopAudioRenderer
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| / / /
| |/ / / |
GPU: Added a command processor to decode the GPU pushbuffers and forward the commands to their respective engines
|
| | | |
| | | |
| | | |
| | | | |
Also moved the GPU MemoryManager class to video_core since it makes more sense for it to be there.
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Several misc. VI fixes
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
More fixes for Libnx
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
- Another fix for libnx.
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Various fixes for libnx, etc.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
dynarmic: Fix bug due to Windows ABI mismatch
|
| | | | | |
|
|\| | | |
| |/ / /
|/| | | |
dynarmic: Update to 41ae12263
|
|/ / /
| | |
| | |
| | | |
Changes: Primarily implementing more A64 instructions
|
|\ \ \
| | | |
| | | | |
nvdrv: Implement AllocateSpace and MapBufferEx
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Service: stub some functions in am, audio, time, vi services
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Service/hid: stub SetNpadHandheldActivationMode
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Stubs for HID, AM, and a mutex fix
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* FinishInitalize needed for 3.0.1+ games
* nvdrv:s and nvdrv:t both use NVDRV
* Most settings return 0 on hardware, disabled NV_MEMORY_PROFILER for now.
NVN_THROUGH_OPENGL & NVRM_GPU_PREVENT_USE are a few interesting settings to look at. Carefully choosing settings can help with drawing graphics later on
* Initial /dev/nvhost-gpu support
* ZCullBind
* Stubbed SetErrorNotifier
* Fixed SetErrorNotifier log, Added SetChannelPriority
* Allocate GPFIFO Ex2, Allocate Obj Ctx, Submit GPFIFO
* oops
* Fixed up naming/structs/enums. Used vector instead of array for "gpfifo_entry"
* Added missing fixes
* /dev/nvhost-ctrl-gpu
* unneeded struct
* Forgot u32 in enum class
* Automatic descriptor swapping for ioctls, fixed nvgpu_gpu_get_tpc_masks_args being incorrect size
* nvdrv#QueryEvent
* Renamed logs for nvdrv
* Refactor ioctl so nv_result isn't needed
* /dev/nvhost-as-gpu
* Fixed Log service naming, CtxObjects now u32, renamed all structs, added static_asserts to structs, used INSERT_PADDING_WORDS instead of u32s
* nvdevices now uses "Ioctl" union,
* IoctlGpfifoEntry now uses bit field
* final changes
|
|\ \ \
| | | |
| | | | |
Don't call UNIMPLEMENTED for 'empty services', just return error code
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Changed .istorage to .romfs
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Many service improvements
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
- This gets BOTW booting.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Several SVC fixes and improvements
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
acc:u0 : stub GetAccountId
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
controller: DuplicateSession should return a ClientSession.
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Service/nifm: add nifm:a, nifm:s and nifm:u services
|
|/ / / |
|
| | |
| | |
| | |
| | |
| | |
| | | |
* Add AppletAE, step 1: move common interfaces to am.h
* Add AppletAE, step 2
|
|\ \ \
| | | |
| | | | |
vi::CreateStrayLayer : add padding to request
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Services/vi: add vi:s and vi:u services
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | | |
shared_memory: Only mark addresses as invalid if they are within the heap
|
| | | | |
|
|/ / /
| | |
| | | |
sfdnsres: Add several stubs
|
|\ \ \
| | | |
| | | | |
externals: Update catch to v2.1.1
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
memory: Replace all memory hooking with Special regions
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
travis: Remove CMAKE_OSX_ARCHITECTURES argument
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Unicorn only builds a x86_64 library, without a x86_64h slice. We can't link against
x86_64-only in this manner for static libraries.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Added webhook notifications to TravisCI build.
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Install Linux icon in hicolor instead of pixmaps
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
hicolor is the preferred location for applications. See https://specifications.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html#directory_layout
Same as https://github.com/citra-emu/citra/pull/3007
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Fix typo for dependent options
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
time: Implement ISteadyClock::GetCurrentTimePoint
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Improve IPC, unify Domains and Sessions, and add validation
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|/ / / / / |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Updated the audout:u and IAudioOut, now it might work with RetroArch without trigger an assert, however it's not the ideal implementation
* Updated the audout:u and IAudioOut, now it might work with RetroArch without trigger an assert, however it's not the ideal implementation
* audout:u OpenAudioOut implementation and IAudioOut cmd 1,2,3,4,5 implementation
* using an enum for audio_out_state as well as changing its initialize to member initializer list
* Minor fixes, added Service_Audio for LOG_*, changed PcmFormat enum to EnumClass
* Minor fixes, added Service_Audio for LOG_*, changed PcmFormat enum to EnumClass
* added missing Audio loggin subclass, minor fixes, clang comment breakline
* Solving backend logging conflict
* minor fix
* Fixed duplicated Service NVDRV in backend.cpp, my bad
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix time returning epoch time in milliseconds rather than in seconds
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
logging: add missing NVDRV subclass to macro list
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Correct Spelling
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
IPC: Don't create unnecessary ports when returning sub interfaces.
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
AppletOE: Stubbed CreateManagedDisplayLayer to create a new layer in the default display.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This function is used by libnx to obtain a new layer.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
It'll be needed when we implement CreateManagedDisplayLayer.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
It is now created during Service initialization and passed to all the services that need it.
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Stub OpenAudioOut and fix a issue with HID IAppletResource
|
| | | | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
VI: Move BufferQueue and NVFlinger to their own folder/namespace.
|
|/ / / / / |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* stubs for audout:u, audin:u, audrec:u, audren:u, codecctl and decoding tables with nullptr for future implementations
* fixing the changes requested (remove private, explicit)
|
|\ \ \ \ \
| | | | | |
| | | | | | |
nvmap: Make IoctlCommands an enum class
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This macro resolves to an empty macro in release builds.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Prevents the enum values from polluting the surrounding scope
|
|\ \ \ \ \ \
| | |_|/ / /
| |/| | | | |
externals: Update dynarmic
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
a6d17e A64: Implement AND (vector)
963453 tests/A64: Randomize vectors
adcd34 tests/A64/unicorn: Print interrupt number when InterruptHook is hit
304c91 tests/A64: Allow RunTestInstance to start from an arbitrary offset
d333b5 A64: Implement ADD (vector, vector)
1cf87a A64: Implement REV, REV32, and REV16 (#126)
9fc157 IR: Simplify types. F32 -> U32, F64 -> U64, F128 -> U128
50c181 reg_alloc: GetBitWidth: Add UNREACHABLE
adccbf reg_alloc: Consider bitwidth of data and registers when emitting instructions
7b7f23 A64: Implement CSEL
2f8413 IR: Implement Conditional Select
ebb3e8 A64/tests: Split unicorn sanity checking from other tests
5740a0 tests/A64: Single random instruction: Test branch instructions as well
0892b4 A64/translate/branch: bug: Read-after-write error in BLR
e77bc2 A64: Implement SBFM, BFM, UBFM
0c37ca A64: Implement MOVN, MOVZ, MOVK
b6bb59 travis: Print current test information
e77207 fuzz_thumb: Off by one error
a04ca2 ir/location_descriptor: Add missing <functional> header for std::hash
1e0f5c travis: Run A64 tests
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* Added nvmemp, Added /dev/nvhost-ctrl, SetClientPID now stores pid
* used clang-format-3.9 instead
* lowercase pid
* Moved nvmemp handlers to cpp
* Removed unnecessary logging for NvOsGetConfigU32. Cleaned up log and changed to LOG_DEBUG
* using std::arrays instead of c arrays
* nvhost get config now uses std::array completely
* added pid logging back
* updated cmakelist
* missing includes
* added array, removed memcpy
* clang-format6.0
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
VI: Implement the Query transaction of IHOSBinderDriver, and stubbed some results.
|
| | |_|/ / /
| |/| | | | |
|
|\ \ \ \ \ \
| |_|_|/ / /
|/| | | | | |
Initial implementation of RomFS filesystem and fsp-srv
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
file_sys: Add factory class for RomFS file system.
|
| | | | | | |
|
| | | | | | |
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
gdbstub: Update registers and sizes for aarch64
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This gets gdbstub working at least to the point where clients can
communicate with it.
What works:
- Reading/writing GPRegs
- Reading/writing memory
- Interrupting the emulated program and continuing
What does NOT work:
- Breakpoints. Sizes have been updated to u64, but support will need to be
added in the interpreter for them to work.
- VRegs. Mostly because my gdb was having issues with 128-bit regs for
some reason. However, the current u128 representation is a bit
awkward to use and should probably be updated first.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix minor spelling error in CMakeLists
|
| |/ / / /
| | | | |
| | | | | |
Minor spelling error of its --> it's
|
|\ \ \ \ \
| |/ / / /
|/| / / /
| |/ / / |
Unicorn build fixups
|
| | | |
| | | |
| | | |
| | | | |
Some of us do not have any i386 libraries required to build x86-32 universal libraries.
|
|/ / /
| | |
| | |
| | |
| | | |
Since we use a custom build of unicorn it doesn't make much sense to look for
the system version, unless the user explicitly wants to override this.
|
|\ \ \
| | | |
| | | | |
Implement Pull #3275 from citra: core: Don't Shutdown before we've even Init-ed
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Fix NRO entry point
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
service/time: remove accidental #pragmas
|
| | | | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
loader: Minor style fix in deconstructed_rom_directory
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Clang format as a build target
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Removes the annoying step when generating sln for MSVC where you have to
click an extra checkbox after the first generate fails by using a
conditional option. The USE_BUNDLED options will be off by default, but
if the enable_lib option is enabled and the toolset is msvc, they are
turned ON.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Checks to see if clang-format can be found, and if it is, sets up a
custom target that will run against the src dir and auto formats all
files. In MSVC, this is a project, and in Makefiles, its a make target
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
memory: Return false for large VAddr in IsValidVirtualAddress
|
| |/ / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Separate NSO loading from DesconstuctedRomLoader
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|/ / / / / |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Port citra #3352 to yuzu
This change allows non x86_64 architectures to compile yuzu by skipping the building of dynarmic
* Fixed clang-format errors
* fixes more clang-format errors
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Added svcCreateSharedMemory
* Services which are not implemented now throw UNIMPLEMENTED()
* clang-format
* changed perms to u32
* removed camelcase
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Fixes some cast warnings, partially fixes citra #3064
* Converted casts to uint32_t to u32
* Ran clang-format
|
|\ \ \ \ \
| | | | | |
| | | | | | |
ISelfController: Stub LockExit and UnlockExit
|
| | | | | | |
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Stubs for various acc:u0 funcs needed
* Stub for GetDesiredLanguage in IApplicationFunctions
* Add set service + stubs needed for games
* Fix formatting
* Implement IProfile, IManagerForApplication, return bool in CheckAvailability, style fixes
* Remove IProfile::Get(needs more research), fix IPC response sizes
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix svcGetInfo for libnx
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
time: Stub out GetTotalLocationNameCount and some cleanup.
|
| | | | | | | |
|
| | | | | | | |
|
|/ / / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Fix dispdrv typo
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
time: Refactor time:* to use a single shared module
|
| | | | | | |
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Port citra #3336
|
| | |/ / /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
qt: Migrate to Qt 5 signal/slot connection syntax where applicable
|
|/ / / / / |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Rename verticalLayout_25 to verticalLayout_23.
* Rename almost all classes.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Build: Add missing dlls to msvc release
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Stub PopLaunchParameter and implement Buffer C Descriptors reading
* Address PR feedback
* Ensure we push a u64 not a size_t
* Fix formatting
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* bsd: start stubbing bsd:u and sfdnsres
* bsd: stubbed RegisterClient
* bsd: attempt to get past socket()
* bsd: fix some wrong assumptions about IPC
* bsd: fix format specifiers
* bsd: stubbed Connect()
* bsd: stubbed SendTo()
* made requested changes
* sockets: respect alphabetical order at service installation
* run clang-format
* bsd: start stubbing bsd:u and sfdnsres
* bsd: stubbed RegisterClient
* bsd: attempt to get past socket()
* bsd: fix some wrong assumptions about IPC
* bsd: fix format specifiers
* bsd: stubbed Connect()
* bsd: stubbed SendTo()
* made requested changes
* sockets: respect alphabetical order at service installation
* run clang-format
* run clang-format (2)
|
|\ \ \ \ \
| | | | | |
| | | | | | |
travis: Use Xcode 9.2
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | | |
Uses the latest available Xcode version. This allows the use of more
C++17 facilities without the CI failing.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
lm: Minor logging fix to skip a byte.
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
CMakeLists: Derive the source directory grouping from targets themselves
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Removes the need to store to separate SRC and HEADER variables, and then
construct the target in most cases.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
svc: Minor clarity changes
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Makes the codebase a little more consistent with regards to available documentation. Also amends the duplicate case where there was a similar entry at 0x72 named ConnectToPort.
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
Makes the table match SwitchBrew for these entries
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
vi: Minor clean up/correctness changes
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Prevents implicit conversions.
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
vi: Copy data directly into the std::vector within Parcel's ReadBlock function
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Previously this would unnecessarily zero-initialize the vector before
copying the actual data into the vector instance.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
hotkeys: Add missing <QTreeWidgetItem> include
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
game_list: Add missing override specifier for KeyReleaseEater's eventFilter function
|
| |/ / / / / |
|
|\ \ \ \ \ \
| | |_|/ / /
| |/| | | | |
Build: Update deploy keys
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
game_list: Amend doxygen parameter identifiers
|
| |/ / / / |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
telemetry: Silence initialization order warnings
|
| |/ / / |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
input_common/sdl: Silence a -Wpessimizing-move warning
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
externals: Update catch to 2.1.0
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
bootmanager: Minor tidiness/correctness changes
|
| |/ / /
| | | |
| | | |
| | | | |
Moved over from #3266 in citra.
|
|\ \ \ \
| |/ / /
|/| | | |
Fix NRO loading
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
Implement Pull #3093 from citra: Added missing headers to CMakeLists.txt and fixed includes.
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
TIME: consolidate time:* interfaces, stub functions and structs
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Update bootmanager.cpp
* This *should* fix the clang error
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Remove relocation on NSO/NRO
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
Implement Pull #3295 from citra: citra_qt: CMakeLists: Drop leftover handling code for Qt 4 UI files
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | | |
Fix non translated string (same as Citra PR 2949)
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
hid: Adjust timing based on actual hardware
|
| | |_|_|/
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
nvdrv: stubbed Close(cmd 2)
|
| | | | | | |
|
| |_|_|_|/
|/| | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Implement Pull #3109 from citra: sdl2 default ini: fix framelimit
|
| |/ / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Implement IPC domain command CloseVirtualHandle
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Fix gdbstub typo
|
|/ / / /
| | | |
| | | | |
Core::System().GetInstance().IsPoweredOn() -> Core::System::GetInstance().IsPoweredOn()
|
|\ \ \ \
| |/ / /
|/| | | |
UI: Fix frame rate perf stats
|
| | | |
| | | |
| | | |
| | | | |
Adds in a missing EndGameFrame when nvdrv swaps buffers
|
|\ \ \ \
| |/ / /
|/| | | |
hid: Write to all layouts, implement circular buffers, set up controller metadata.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Improvements to IPC, AppletOE, APM, VI, SVC
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
# Conflicts:
# src/core/hle/service/am/applet_oe.cpp
# src/core/hle/service/apm/apm.cpp
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
# Conflicts:
# src/core/hle/kernel/svc.cpp
|
| | | | | |
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
added more svcGetInfo pairs for 3.0.0+ support, Changed HEAP_SIZE and TLS_AREA_VADDR. changed mem usage & heap usage stub added, ISelfController, IApplication function stubs. Added SetThreadCoreMask
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | |/ /
| |/| | |
|
|\ \ \ \
| | | | |
| | | | | |
Implement Pull #3030 from Citra: Rename derivative class name
|
| | | | |
| | | | |
| | | | | |
citra-qt: Rename derivative class name
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Implement Pull #3052 from citra: Correct spelling of searchfield in comment
|
| | |_|_|/
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Implement Pull #3034 from Citra: Change build order to check clang-format first
|
| | |/ / /
| |/| | |
| | | | | |
Change build order to check clang-format first
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Implement Pull #3240 from Citra: Add button labels for sdl joystick mappings
|
| | | | | | |
|
| | | | | | |
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
nso: Modify .bss size calculation logic
|
| | |_|/ /
| |/| | | |
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
Misc build fixes
|
| | | | | |
|
| | |/ /
| |/| | |
|
|\ \ \ \
| |/ / /
|/| | | |
CMake: Override PYTHON environment variable for libunicorn
|
|/ / / |
|
| | | |
|
|\ \ \
| |/ /
|/| | |
Build/Deploy Updates to Setup Nightly Builds
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
On MSVC if unicorn isn't found, fallback to bundled unicorn
On everything else, fallback to building unicorn in externals
Also fixes loading unicorn in msvc
|
| | |
| | |
| | |
| | |
| | | |
The keys are github auth_tokens and are assigned to yuzubot for the
yuzu-nightly repository to allow Appveyor and Travis to upload releases
|
| |/
| |
| |
| |
| |
| |
| | |
Adds a cmake custom target that will build unicorn on first compile and
uses this in the build scripts as well. Updates Appveyor and Travis
build scripts to work with the new unicorn build, and updates the paths
to all of the different artifacts.
|
| | |
|
|\ \
| | |
| | | |
Adding meumart's Citra SDL Joystick support. Citra PR #3116
|
| | | |
|
|\ \ \
| |_|/
|/| | |
Merge citra-emu PR#3001 by Styleoshin(citra-qt : Adding fullscreen mode)
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Updated Discord link to match website.
|
|/ / |
|
|\ \
| | |
| | | |
CMakeList.txt: rename CITRA to YUZU
|
| |/ |
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
CMake: Output binaries to bin/
|
| | |
|
|\ \
| | |
| | | |
Various fixes
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| |/ /
|/| | |
HID Sharedmem Impl Start
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
vi: Add IManagerDisplayService::CloseDisplay function
|
|/ / / |
|
|\ \ \
| |/ /
|/| | |
Fix build for gcc c++17 / boost.icl incompatibility
|
| | | |
|
|\ \ \
| | | |
| | | | |
Changed ICommonStateGetter::ReceiveMessage to allow further execution in games
|
| | | | |
|
|/ / / |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
|\ \
| | |
| | | |
Fix some warnings in the microprofile
|
| |/ |
|
| |
| |
| |
| | |
Fixes #6.
|
| | |
|
| | |
|
|/ |
|
|\
| |
| | |
Remove Surface Viewer stub
|
|/ |
|
|\
| |
| | |
Implement "About" dialog
|
| | |
|
|\ \
| | |
| | | |
Fix compilation on case-sensitive OSX
|
| |/
| |
| |
| |
| | |
When compiling on a case-sensitive filesystem on OSX, cmake doesn't find
the FindUnicorn file, because it looks for Findunicorn.cmake. We should
uses the correct case to avoid this issue.
|
|\ \
| |/
|/| |
Add missing FileType declarations in GuessFromExtension and GetFileTypeString
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
bc73004 a64_merge_interpret_blocks: Remove debug output
4e656ed tests/A64: Randomize PSTATE.<NZCV>
fd9530b A64: Optimization: Merge interpret blocks
3c9eb04 testenv: Use format constants
324f3fc tests/A64: Unicorn interface fixes
98ecbe7 tests/A64: Fuzz against unicorn
b1d38e7 tests/A64: Move TestEnvironment to own header
5218ad9 A64/data_processing_pcrel: bug: ADR{,P} instructions sign extend their immediate
b1a8c39 A64/data_processing_addsub: bug: {ADD,SUB}S (extended register) instructions write to ZR when d = 31
64827fb a64_emit_x64: bug: A64CallSupervisor trampled callee-save registers
1bfa04d emit_x64: bug: OP m/r64, imm32 form instructions sign-extend their immediate on x64
edadeea A64 inferface: Use two argument static_assert
9ab1304 A64: Add ExceptionRaised IR instruction
6843eed Update readme
7438d07 A64/translate: Add TranslateSingleInstruction function
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
This prevents missing frames if the vblank fires between the DequeueBuffer and Wait(vsync) calls
|
| |
|
|
|
|
|
|
| |
NVFlinger will call into the nvdisp_disp0 device to perform screen flips, bypassing the ioctl interface.
We now have the address of the framebuffer to draw, we just need to actually put it on the screen.
|
|
|
|
|
|
| |
Don't try to draw buffers that the guest application is using, only queued buffers are eligible for drawing.
Drawing actual pixels is still not implemented.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
The homebrew display test application now properly writes graphics data to the graphics buffer but we still don't have a way to compose the display layers.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Also properly keep track of data in guest memory, this fixes managing the semaphore from userland.
It was found that Semaphores are actually Condition Variables, with Release(1) and Release(-1) being equivalent to notify_one and notify_all. We should change the name of the class to reflect this.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
* CoreTiming: New CoreTiming; Add Test for CoreTiming
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
They should have 32 bits of padding after the error code now.
|
| |
|
| |
|
|
|
|
| |
Popping objects from the buffer is still not implemented.
|
|
|
|
| |
Service code now doesn't have to deal with this.
|
|
|
|
| |
Domain object ids are always stored immediately after the raw data.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
- This does not matter until we implement other kernel objects, mutexes use svcLockMutex for waiting.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
This is kinda crufty, but we need it for now to update guest state variables.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
# Conflicts:
# src/core/CMakeLists.txt
# src/core/arm/dynarmic/arm_dynarmic.cpp
# src/core/arm/dyncom/arm_dyncom.cpp
# src/core/hle/kernel/process.cpp
# src/core/hle/kernel/thread.cpp
# src/core/hle/kernel/thread.h
# src/core/hle/kernel/vm_manager.cpp
# src/core/loader/3dsx.cpp
# src/core/loader/elf.cpp
# src/core/loader/ncch.cpp
# src/core/memory.cpp
# src/core/memory.h
# src/core/memory_setup.h
|
| |\
| | |
| | | |
travis: Split build scripts for different platforms
|
| | |
| | |
| | |
| | | |
This commit also separates clang-format from the linux build, closing #2702.
|
| |\ \
| | | |
| | | | |
Change command header in nwm::UDS Initialize function
|
| |/ / |
|
| |\ \
| | |/
| |/| |
Remove more usages of GetPointer.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| |\ \
| | | |
| | | | |
file_sys/archive_ncch: use NCCHs/.apps instead of .romfs files, NCCH section override
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| |\ \ \
| | | | |
| | | | | |
HLE/APT: Always set up the APT parameter when starting a library applet.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Only use the HLE interface if an HLE applet with the desired id was started.
This commit reorganizes the APT code surrounding parameter creation and delivery to make it easier to support LLE applets in the future.
As future work, the HLE applet interface can be reworked to utilize the same facilities as the LLE interface.
|
| |\ \ \ \
| | | | | |
| | | | | | |
Extracted the attribute setup and draw commands into their own functions
|
| |/ / / / |
|
| |\ \ \ \
| | | | | |
| | | | | | |
SharedMemory: Don't take over and unmap the source memory block when creating a shared memory, just reference it
|
| | | |/ /
| | |/| |
| | | | |
| | | | | |
Also reference the right offset into the backing block for the requested address.
|
| |\ \ \ \
| | |_|_|/
| |/| | | |
macOS: Build x86_64h slice
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This commit produces a fat-binary with two slices. The x86_64 slice
is for all x64 systems, and the x86_64h slice targets x64 systems
starting with Haswell. The latter allows the compiler to use newer
instructions that are not available on older microarchitectures.
|
| |\ \ \
| | | | |
| | | | | |
Memory: Add overloads for ReadBlock and WriteBlock that operate on a specific process.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |\ \ \ \
| | |_|/ /
| |/| | | |
Services/NIM: Implement CheckForSysUpdateEvent.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Implementation verified by reverse engineering.
This lets the Home Menu boot without crashing on startup.
|
| |\ \ \ \
| | |/ / /
| |/| | | |
Moved down_count to CoreTiming
|
| |/ / / |
|
| | | |
| | | |
| | | | |
Services/UDS: Handle the rest of the connection sequence.
|
| |\ \ \
| | | | |
| | | | | |
Add the .vs folder and the CMakeSettings.json file from Visual Studio to gitignore
|
| | | | | |
|
| |\ \ \ \
| | |/ / /
| |/| | | |
Implement PrepareToStartNewestHomeMenu and fixed an APT regression.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
As per 3dbrew:
"During Home Menu start-up it uses APT:PrepareToStartNewestHomeMenu. If that doesn't return an error(normally NS returns 0xC8A0CFFC for that), Home Menu starts a hardware reboot with APT:StartNewestHomeMenu etc. "
|
| | | |/
| | |/|
| | | |
| | | |
| | | | |
We need to know what is being run so we can set the APT parameter destination AppId correctly.
Delaying the preparation of the parameter until we know which AppId is running lets us support booting both the Home Menu and normal game Applications.
|
| |\ \ \
| | |_|/
| |/| | |
Kernel/Threads: When putting a thread to wait, specify a function to execute when it is awoken
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This change makes for a clearer (less confusing) path of execution in the scheduler, now the code to execute when a thread awakes is closer to the code that puts the thread to sleep (WaitSynch1, WaitSynchN). It also allows us to implement the special wake up behavior of ReplyAndReceive without hacking up WaitObject::WakeupAllWaitingThreads.
If savestates are desired in the future, we can change this implementation to one similar to the CoreTiming event system, where we first register the callback functions at startup and assign their identifiers to the Thread callback variable instead of directly assigning a lambda to the wake up callback variable.
|
| |\ \ \
| | | | |
| | | | | |
Fixed type conversion ambiguity
|
| |/ / / |
|
| |\ \ \
| | |/ /
| |/| | |
Loaders: Don't automatically set the current process every time we load an application.
|
| | | |
| | | |
| | | |
| | | | |
The loaders will now just create a Kernel::Process, construct it and return it to the caller, which is responsible for setting it as the current process and configuring the global page table.
|
| | | |
| | | |
| | | |
| | | | |
Don't automatically assume that Thread::Create will only be called when the parent process is currently scheduled. This assumption will be broken when applets or system modules are loaded.
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
There is still an overload of IsValidVirtualAddress that only takes the VAddr and will default to the current process.
|
| |\ \ \
| | | | |
| | | | | |
Disable unary operator- on Math::Vec2/Vec3/Vec4 for unsigned types.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
It is unlikely we will ever use this without first doing a Cast to a signed type.
Fixes 9 "unary minus operator applied to unsigned type, result still unsigned" warnings on MSVC2017.3
|
| |\ \ \ \
| | |_|/ /
| |/| | | |
Memory/RasterizerCache: Ignore unmapped memory regions when caching physical regions
|
| | | |/
| | |/|
| | | |
| | | |
| | | |
| | | | |
Not all physical regions need to be mapped into the address space of every process, for example, system modules do not have a VRAM mapping.
This fixes a crash when loading applets and system modules.
|
| |\ \ \
| | | | |
| | | | | |
Audio: Use std::deque instead of std::vector for the audio buffer type (StereoBuffer16)
|
| | | |/
| | |/|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The current code inserts and deletes elements from the beginning of the audio buffer, which is very inefficient in an std::vector.
Profiling was done using VisualStudio2017's Performance Analyzer in Super Mario 3D Land.
Before this change: AudioInterp::Linear had 14.14% of the runtime (inclusive) and most of that time was spent in std::vector's insert implementation.
After this change: AudioInterp::Linear has 0.36% of the runtime (inclusive)
|
| |\ \ \
| | |/ /
| |/| | |
HLE/Archives: Allow multiple loaded applications to access their SelfNCCH archive independently.
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The loaders now register each loaded ROM with the SelfNCCH factory, which keeps the data around for the duration of the emulation session.
When opening the SelfNCCH archive, the factory queries the current program's programid and uses that as a key to the map that contains the NCCHData structure (RomFS, Icon, Banner, etc).
3dsx files do not have a programid and will use a default of 0 for this value, thus, only 1 3dsx file with RomFS is loadable at the same time.
|
| |\ \
| | | |
| | | | |
Switchable Page Tables
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Don't expose Memory::current_page_table as a global.
|
| |\ \ \
| | | | |
| | | | | |
Optimized Morton
|
| | |/ / |
|
| |\ \ \
| | | | |
| | | | | |
citra-qt: fix some untranslated strings
|
| | |/ / |
|
| |\ \ \
| | | | |
| | | | | |
HLE/SRV: Implemented RegisterService.
|
| | | |/
| | |/|
| | | |
| | | | |
Now system modules can do more than just crash immediately on startup.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* loader/ncch: split NCCH parsing into its own file
* loader/ncch: add support for loading update NCCHs from the SD card
* loader/ncch: fix formatting
* file_sys/ncch_container: Return a value for OpenFile
* loader/ncch: cleanup, always instantiate overlay_ncch to base_ncch
* file_sys/ncch_container: better encryption checks, allow non-app NCCHs to load properly and for the existence of NCCH structures to be checked
* file_sys/ncch_container: pass filepath as a const reference
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* Services/UDS: Added a function to generate the EAPoL-Start packet body.
* Services/UDS: Added filter for beacons.
* Services/UDS: Lock a mutex when accessing connection_status from both the emulation and network thread.
* Services/UDS: Handle the Association Response frame and respond with the EAPoL-Start frame.
* fixup: make use of current_node, changed received_beacons into a list, mutex and assert corrections
* fixup: fix damn clang-format
|
| |\ \ \
| | |_|/
| |/| | |
Optimized Float<M,E> multiplication
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Before:
ucomiss xmm1, xmm1
jp .L9
pxor xmm2, xmm2
mov edx, 1
ucomiss xmm0, xmm2
setp al
cmovne eax, edx
test al, al
jne .L9
.L3:
movaps xmm0, xmm2
ret
.L9:
ucomiss xmm0, xmm0
jp .L10
pxor xmm2, xmm2
mov edx, 1
ucomiss xmm1, xmm2
setp al
cmovne eax, edx
test al, al
je .L3
After:
movaps xmm2, xmm1
mulss xmm2, xmm0
ucomiss xmm2, xmm2
jnp .L3
ucomiss xmm1, xmm0
jnp .L11
.L3:
movaps xmm0, xmm2
ret
.L11:
pxor xmm2, xmm2
jmp .L3
|
| |\ \
| | |/
| |/| |
GPU: Add draw for immediate and batch modes
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
PR #1461 introduced a regression where some games would change configuration
even while in the poorly named "drawing" mode, which broke the heuristic
citra was using to determine when to draw the batch. This change adds
back in a draw call for batching, and also adds in a draw call in
immediate mode each time it adds a triangle.
|
| |\ \
| | | |
| | | | |
Fixed framebuffer warning
|
| | | | |
|
| |\ \ \
| | | | |
| | | | | |
Improved performance of FromAttributeBuffer
|
| | |/ /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Ternary operator is optimized by the compiler
whereas std::min() is meant to return a value.
I've noticed a 5%-10% emulation speed increase.
|
| |\ \ \
| | | | |
| | | | | |
WebService: Set USE_SYSTEM_CURL for travis linux builds
|
| |/ / / |
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* WebService: Verify username and token; Log errors in PostJson
* Fixup: added docstrings to the functions
* Webservice: Added Icons to the verification, imrpved error detection in cpr, fixup nits
* fixup: fmt warning
|
| |\ \
| | | |
| | | | |
Services/NS: Port ns:s to the new service framework.
|
| | | | |
|
| |\ \ \
| | | | |
| | | | | |
PICA: implement custom clip plane
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |\ \ \ \
| | | | | |
| | | | | | |
Kernel/Memory: Give each process its own page table and allow switching the current page table upon reschedule
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
This fixes building the tests
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We were unnecessarily clearing the cache when going from Process A -> Idle -> Process A, this caused extreme performance regressions.
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The loader is in charge of setting the newly created process's page table as the main one during the loading process.
|
| |\ \ \ \ \
| | | | | | |
| | | | | | | |
APT: load different shared font depending on the region
|
| | | | | | | |
|
| |\ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Build: Enable SSL in mingw by linking against WinSSL
|
| | | |_|_|_|/
| | |/| | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The mingw builds aren't submitting telemetry because the curl library
they are linked against is configured to use openSSL and openSSL looks
for the certificates in the users home folder. This keeps it from
contacting web services because it can't communicate over SSL.
This commit adds a download in mingw builds that will download a
precompiled curl for mingw linked against winssl and sspi.
|
| |\ \ \ \ \ \
| | |/ / / / /
| |/| | | | | |
travis_OSX: build with system curl
|
| |/ / / / / |
|
| |\ \ \ \ \
| | | | | | |
| | | | | | | |
PICA: implemented geometry shader
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The geometry pipeline manages data transfer between VS, GS and primitive assembler. It has known four modes:
- no GS mode: sends VS output directly to the primitive assembler (what citra currently does)
- GS mode 0: sends VS output to GS input registers, and sends GS output to primitive assembler
- GS mode 1: sends VS output to GS uniform registers, and sends GS output to primitive assembler. It also takes an index from the index buffer at the beginning of each primitive for determine the primitive size.
- GS mode 2: similar to mode 1, but doesn't take the index and uses a fixed primitive size.
hwtest shows that immediate mode also supports GS (at least for mode 0), so the geometry pipeline gets refactored into its own class for supporting both drawing mode.
In the immediate mode, some games don't set the pipeline registers to a valid value until the first attribute input, so a geometry pipeline reset flag is set in `pipeline.vs_default_attributes_setup.index` trigger, and the actual pipeline reconfigure is triggered in the first attribute input.
In the normal drawing mode with index buffer, the vertex cache is a little bit modified to support the geometry pipeline. Instead of OutputVertex, it now holds AttributeBuffer, which is the input to the geometry pipeline. The AttributeBuffer->OutputVertex conversion is done inside the pipeline vertex handler. The actual hardware vertex cache is believed to be implemented in a similar way (because this is the only way that makes sense).
Both geometry pipeline and GS unit rely on states preservation across drawing call, so they are put into the global state. In the future, the other three vertex shader units should be also placed in the global state, and a scheduler should be implemented on top of the four units. Note that the current gs_unit already allows running VS on it in the future.
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
hwtest shows that, although GS always emit a group of three vertices as one primitive, it still respects to the topology type, as if the three vertices are input into the primitive assembler independently and sequentially. It is also shown that the winding flag in SETEMIT only takes effect for Shader topology type, which is believed to be the actual difference between List and Shader (hence removed the TODO). However, only Shader topology type is observed in official games when GS is in use, so the other mode seems to be just unintended usage.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Among four shader units in pica, a special unit can be configured to run both VS and GS program. GSUnitState represents this unit, which extends UnitState (which represents the other three normal units) with extra state for primitive emitting. It uses lots of raw pointers to represent internal structure in order to keep it standard layout type for JIT to access.
This unit doesn't handle triangle winding (inverting) itself; instead, it calls a WindingSetter handler. This will be explained in the following commits
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
All the register meanings are derived from ctrulib (3dbrew is outdated for most of them)
|
| |\ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Remove excess debug dlls for mingw build
|
| |/ / / / / / |
|
| |\ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
pica/lighting: only apply Fresnel factor for the last light
|
| | | | | | | | |
|
| |\ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Services/UDS: Handle beacon frames and the basic AP connection sequence frames.
|
| | | | | | | | | |
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
There is currently no stage tracking, a client is considered "Connected" when it receives the EAPoL Logoff packet from the server, this is not yet implemented.
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| |\ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Mii Selector Applet: update Mii structures
|
| | | | | | | | | | |
|
| |/ / / / / / / / |
|
| |\ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Fix icon for citra qt
|
| |/ / / / / / / / |
|
| |\ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Add manifest
|
| | | |_|_|/ / / /
| | |/| | | | | | |
|
| |\ \ \ \ \ \ \ \
| | |/ / / / / / /
| |/| | | | | | | |
Build: Add mingw64 compile support to appveyor
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Releases will be built with both mingw and msvc and the binaries of both
builds will be uploaded to github releases
|
| |\ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
video_core: report telemetry for gas mode
|
| | | |_|/ / / / /
| | |/| | | | | | |
|
| |\ \ \ \ \ \ \ \
| | |/ / / / / / /
| |/| | | | | | | |
interpolate: Interpolate on a frame-by-frame basis
|
| | | | | | | | | |
|
| |\ \ \ \ \ \ \ \
| | |_|/ / / / / /
| |/| | | | | | | |
SwRasterizer/Lighting: implement bump mapping
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| |\ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Refactor touch input into a TouchDevice
|
| | | | | | | | | | |
|
| | | |_|_|_|_|/ /
| | |/| | | | | | |
|
| |\ \ \ \ \ \ \ \
| | |_|_|_|_|_|_|/
| |/| | | | | | | |
Use recursive_mutex instead of mutex to fix #2902
|
| | |/ / / / / / |
|
| |\ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Fix info about TODO list
|
| | | | | | | | | |
|
| |\ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Warnings: Fixed a few missing-return warnings in video_core.
|
| | | |_|/ / / / /
| | |/| | | | | | |
|
| |\ \ \ \ \ \ \ \
| | |_|/ / / / / /
| |/| | | | | | | |
Telemetry UI and final touches
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
# This is the 1st commit message:
qt: Add web configuration tab.
# The commit message #2 will be skipped:
# fixup! qt: Add web configuration tab.
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| |/ / / / / / / |
|
| | |/ / / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
* added a SidebySide Layout
* Reworked, so both screen have the same height and cleaned up screen translates.
* added the option in the UI, hope this is the right way to do it. formated framebuffer_layout.cpp
* delete the x64 files
* deleted ui_configure_graphics.h
* added Option for the Layout in the xml
* got rid of SIDE_BY_SIDE_ASPECT_RATIO because it was useless. pulled translate into variables
* changed shift variables to u32 and moved them in their respective branch. remove notr="true" for the Screen layout drop down
* reworked intends :). changed function description for SideFrameLayout
* some description reworking
|
| |\ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Kernel/HLE: Use a mutex to synchronize access to the HLE kernel state between the cpu thread and any other possible threads that might touch the kernel (network thread, etc).
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This mutex is acquired in SVC::CallSVC, ie, as soon as the guest application enters the HLE kernel, and should be acquired by the aforementioned threads before modifying kernel structures.
|
| |\ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Kernel/Threads: Don't immediately switch to the new main thread when loading a new process.
|
| | | |/ / / / /
| | |/| | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This is necessary for loading multiple processes at the same time.
The main thread will be automatically scheduled when necessary once the scheduler runs.
|
| |\ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Fixed some warnings in the core project.
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | | |
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
Fixes a few warnings.
|
| | |/ / / / / / |
|
| |\ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
motion_emu: fix initialization order
|
| |/ / / / / / / |
|
| |\ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
gl_rasterizer: add clipping plane z<=0 defined in PICA
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This function is called in clipping, before the pespective divide, and is not used in later rasterization. Thus it doesn't need perspective correction.
|
| | | | | | | | |
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
hwtested. Current implementation is the correct behavior
|
| | | | | | | | | |
|
| | |/ / / / / / |
|
| |\ \ \ \ \ \ \
| | |/ / / / / /
| |/| | | | | | |
Updated master logo to new logo svg
|
| | | |_|_|_|/
| | |/| | | | |
|
| |\ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
SwRasterizer/Lighting: implement geometric factor
|
| | | | | | | | |
|
| |\ \ \ \ \ \ \ |
|
| | | | | | | | | |
|
| |\ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Refactor MotionEmu into a InputDevice
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| | | | | | | | | | |
|
| |\ \ \ \ \ \ \ \ \
| | |_|_|_|/ / / / /
| |/| | | | | | | | |
SwRasterizer/Lighting: implement spot light
|
| | | |_|/ / / / /
| | |/| | | | | | |
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
* Network: Set and send the game information over enet
Added Callbacks for RoomMember and GetMemberList to Room in preparation for web_services.
|
| |\ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
dsp_dsp: Remove size assertion in LoadComponent
|
| | | | | | | | | |
|
| |\ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Fix Spelling/English mistakes
|
| |/ / / / / / / / |
|
| |\ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Services/APT: Use an array to hold data about the 4 possible concurrent applet types (Application, Library, HomeMenu, System)
|
| | | | | | | | | | |
|
| | |/ / / / / / /
| | | | | | | | |
| | | | | | | | |
| | | | | | | | | |
This gives each applet type its own set of events as per the real NS module.
|
| |\ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
gl_shader_gen: don't call SampleTexture when bump map is not used
|
| | | |_|/ / / / /
| | |/| | | | | | |
|
| |\ \ \ \ \ \ \ \
| | | | | | | | | |
| | | | | | | | | | |
Travis: Use Docker to build for Linux
|
| | | | | | | | | | |
|
| |\ \ \ \ \ \ \ \ \
| | |_|/ / / / / / /
| |/| | | | | | | | |
Implement correct folder structure for CI builds
|
| | | | | | | | | | |
|
| |\ \ \ \ \ \ \ \ \
| | |_|_|_|/ / / / /
| |/| | | | | | | | |
Fix some spelling mistakes
|
| | |/ / / / / / / |
|
| |\ \ \ \ \ \ \ \
| | |_|/ / / / / /
| |/| | | | | | | |
HID: zero unused PadState bits
|
| | | |/ / / / /
| | |/| | | | | |
|
| |\ \ \ \ \ \ \
| | |_|/ / / / /
| |/| | | | | | |
SwRasterizer/Lighting: use make_tuple instead of constructor
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
implicit tuple constructor is a c++17 thing, which is not supported by some not-so-old libraries. Play safe for now
|
| |\ \ \ \ \ \
| | |_|_|_|_|/
| |/| | | | | |
Travis/AppVeyor: Deploy based upon tags
|
| | | |_|/ /
| | |/| | | |
|
| |\ \ \ \ \
| | | | | | |
| | | | | | | |
Update CryptoPP (byte ambiguity)
|
| | | |/ / /
| | |/| | | |
|
| |\ \ \ \ \
| | | | | | |
| | | | | | | |
Implement fragment lighting in the sw renderer (take 2)
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
merging similar pattern. Also makes the code more similar to the gl one
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
this was originally added to eliminate warnings on MSVC, but it doesn't work for custom types.
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|