summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/syncpoint_manager.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-05-16core: Make variable shadowing a compile-time errorLioncash1-1/+1
Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
2020-11-24nvdrv, video_core: Don't index out of bounds when given invalid syncpoint IDcomex1-2/+2
- Use .at() instead of raw indexing when dealing with untrusted indices. - For the special case of WaitFence with syncpoint id UINT32_MAX, instead of crashing, log an error and ignore. This is what I get when running Super Mario Maker 2.
2020-11-01hle: service: nvdrv: Implement SyncpointManager, to manage syncpoints.bunnei1-0/+85