yuzu/src
Lioncash 39ae73b356 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.
2018-10-16 09:38:52 -04:00
..
audio_core EffectOutStatus padding is now in hex 2018-10-09 11:20:54 +11:00
common web_backend: Make Client use the PImpl idiom 2018-10-10 22:29:35 -04:00
core file_sys/registered_cache: Use unique_ptr and regular pointers instead of shared_ptrs where applicable 2018-10-16 09:38:52 -04:00
input_common Port #4141 from citra: Joystick hotplug support (#1275) 2018-09-10 21:29:59 -04:00
tests kernel/thread: Use a regular pointer for the owner/current process 2018-10-10 02:04:55 -04:00
video_core shader_bytecode: Add Control Code enum 0xf 2018-10-15 15:36:47 -03:00
web_service web_backend: Make Client use the PImpl idiom 2018-10-10 22:29:35 -04:00
yuzu file_sys/registered_cache: Use unique_ptr and regular pointers instead of shared_ptrs where applicable 2018-10-16 09:38:52 -04:00
yuzu_cmd filesystem: Make CreateFactories() and InstallInterface() take a VfsFilesystem instance by reference 2018-10-13 11:36:35 -04:00
.clang-format Remove special rules for Windows.h and library includes 2016-09-21 00:16:33 -07:00
CMakeLists.txt Port web_service from Citra 2018-10-02 15:30:48 +02:00