ReinUsesLisp
45cfd67ae6
maxwell_3d: Move code to separate functions
Deduplicate some code and put it in separate functions so it's easier to
understand and profile.
6 years ago
bunnei
ca2f385e38
Merge pull request #4901 from bunnei/caps-stub
hle: service: caps_u: Stub GetAlbumFileList3AaeAruid.
5 years ago
Rodrigo Locatti
88898861a6
Merge pull request #4909 from lioncash/interrupt
cpu_interrupt_handler: Mark move contructor/assignment as deleted
5 years ago
Rodrigo Locatti
b438d575a5
Merge pull request #4910 from lioncash/service
ipc_helpers: Remove usage of the global system instance
5 years ago
Lioncash
e7fe020ace
ipc_helpers: Remove usage of the global system instance
Resolves numerous deprecation warnings throughout the codebase due to
inclusion of this header. Now building core should be significantly less
noisy (and also relying on less global state).
This also uncovered quite a few modules that were relying on indirect
includes, which have also been fixed.
5 years ago
Lioncash
9568c94a11
cpu_interrupt_handler: Mark move contructor/assignment as deleted
The interrupt handler contains a std::atomic_bool, which isn't copyable
or movable, so the special move member functions will always be deleted,
despite being defaulted.
This can resolve warnings on clang and GCC.
5 years ago
bunnei
d52953b66e
Merge pull request #4903 from bunnei/remove-gpu-integrity
video_core: dma_pusher: Remove integrity check on command lists.
5 years ago
Chloe
7a55a930aa
Merge pull request #4908 from lioncash/fmt
externals: Update fmt to 7.1.2
5 years ago
Lioncash
fd41d21896
externals: Update fmt to 7.1.2
Updates to the latest bugfix release of fmt.
5 years ago
LC
d52a8168a2
Merge pull request #4906 from lat9nq/log-cpu-accuracy
settings: log value of CPU_Accuracy
5 years ago
lat9nq
ec0f96cdd1
settings: log value of CPU_Accuracy
5 years ago
bunnei
0b6324b3a6
video_core: dma_pusher: Remove integrity check on command lists.
- This seems to cause softlocks in Breath of the Wild.
5 years ago
bunnei
08056a8c3d
Merge pull request #4888 from lioncash/unicorn-remove
core: Remove usage of unicorn
5 years ago
bunnei
479a52a8d4
hle: service: caps_u: Stub GetAlbumFileList3AaeAruid.
- This works similiar to GetAlbumContentsFileListForApplication.
- Since we do not implement the album, this should be safe to stub for now.
- Used by Super Smash Bros. Ultimate (newer updates) in World of Light.
5 years ago
bunnei
c952034426
Merge pull request #4899 from lioncash/fiberimpl
common/fiber: Move all member variables into impl class
5 years ago
Lioncash
c20ed9e3da
common/fiber: Move all member variables into impl class
Hides all of the implementation details for users of the class. This has
the benefit of reducing includes and also making the fiber classes
movable again.
5 years ago
bunnei
a3ee29e9f5
Merge pull request #4891 from lioncash/clang2
General: Fix clang build
5 years ago
bunnei
205854b81e
Merge pull request #4894 from lioncash/fn
settings: Simplify initializer of resolution factor
5 years ago
Lioncash
4c3b3b3cd1
settings: Simplify initializer of resolution factor
This can use a braced initializer to accomplish the same thing with less
code.
5 years ago
bunnei
cab7ed694c
Merge pull request #4854 from ReinUsesLisp/cube-array-shadow
shader: Partially implement texture cube array shadow
5 years ago
Lioncash
8fc37d6fca
General: Fix clang build
Allows building on clang to work again
5 years ago
bunnei
653b82fbc3
Merge pull request #4889 from lioncash/setting-global
core/settings: Move configuring_global behind an API
5 years ago
bunnei
97547d70f5
Merge pull request #4858 from lioncash/initializer
General: Resolve a few missing initializer warnings
5 years ago
Lioncash
b1de33af75
core/settings: Move configuring_global behind an API
Rather than have directly modified global state here, we can make it an
implementation detail and have an interface that changes are queried
through.
5 years ago
Chloe
c16acdfb9b
Merge pull request #4869 from bunnei/improve-gpu-sync
Improvements to GPU synchronization & various refactoring
5 years ago
Lioncash
5c55f3b585
core: Remove usage of unicorn
Unicorn long-since lost most of its use, due to dynarmic gaining support
for handling most instructions. At this point any further issues
encountered should be used to make dynarmic better.
This also allows us to remove our dependency on Python.
5 years ago
bunnei
9a81537447
Merge pull request #4874 from lioncash/nodiscard2
nvdec: Make use of [[nodiscard]] where applicable
5 years ago
bunnei
6e1fb8d4c1
Merge pull request #4887 from lioncash/common-build
microprofile: Silence warning in headers
5 years ago
Lioncash
90f5c930f5
microprofile: Silence warning in headers
Silences a truncation warning by making the truncation explicit and
documenting the reason for it.
5 years ago
bunnei
2dcbd3b5c6
Merge pull request #4873 from lioncash/common-error
common: Enable warnings as errors
5 years ago
bunnei
04f9045b01
Merge pull request #4878 from bunnei/unload-nrr
hle: service: ldr: Implement UnloadNrr.
5 years ago
Lioncash
38ffaef6eb
common: Enable warnings as errors
Cleans up common so that we can enable warnings as errors.
5 years ago
Lioncash
2ee59021c2
nvdec: Make use of [[nodiscard]] where applicable
Prevents bugs from occurring where the results of a function are
accidentally discarded
5 years ago
bunnei
a4825b81ac
Merge pull request #4865 from ameerj/async-threadcount
async_shaders: Increase Async worker thread count for >8 thread cpus
5 years ago
bunnei
f8b764dbf2
fixup! hle service: nvdrv: nvhost_gpu: Update to use SyncpointManager and other improvements.
5 years ago
bunnei
0e90fce8d4
core: Initialize GPU before services.
5 years ago
bunnei
57f20d0d70
hle service: nvdrv: nvhost_gpu: Update to use SyncpointManager and other improvements.
- Refactor so that SubmitGPFIFO and KickoffPB use shared functionality.
- Implement add_wait and add_increment flags.
5 years ago
bunnei
af7ab45b45
video_core: dma_pusher: Add support for integrity checks.
- Log corrupted command lists, rather than crash.
5 years ago
bunnei
69f4a66d23
video_core: dma_pusher: Add support for prefetched command lists.
5 years ago
bunnei
d787a5bfde
service: hle: nvflinger: Fix potential shutdown crash when GPU is destroyed.
5 years ago
bunnei
c112a94dfe
video_core: gpu: Implement WaitFence and IncrementSyncPoint.
5 years ago
bunnei
617372b751
hle service: nvdrv: nvhost_ctrl: Update to use SyncpointManager.
5 years ago
bunnei
df095c8963
hle service: nvdrv: Update to instantiate SyncpointManager.
5 years ago
bunnei
317c2ac884
hle: service: nvdrv: Implement SyncpointManager, to manage syncpoints.
5 years ago
Levi Behunin
381586d56c
Rename to align with switchbrew and remove gpu function ( #4714 )
* Rename to align with switchbrew
* Rename to align with switchbrew and remove gpu function that checks if clearing should be done.
5 years ago
bunnei
e9b37e4d52
Merge pull request #4853 from ReinUsesLisp/fcmp-imm
shader/arithmetic: Implement FCMP immediate + register variant
5 years ago
bunnei
4c09a6399c
hle: service: ldr: Implement UnloadNrr.
- Used by Final Fantasy X/X-2 HD Remaster.
5 years ago
LC
c6a6cdc0b3
Merge pull request #4872 from jbeich/clang
video_core: unbreak -Werror in NVDEC with Clang
5 years ago
Lioncash
b712b3684a
CMakeLists: Resolve MSVC build failures
Prevents the compiler tripping up about Windows headers.
5 years ago
Jan Beich
c751be210e
video_core: unbreak -Werror in NVDEC with Clang
src/core/hle/service/nvdrv/devices/nvhost_nvdec_common.cpp:41:15: error: unused variable 'OutOfMemory' [-Werror,-Wunused-const-variable]
constexpr u32 OutOfMemory{static_cast<u32>(-12)};
^
5 years ago