summaryrefslogtreecommitdiffstats
path: root/src/video_core/host1x/syncpoint_manager.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-11-29host1x/syncpoint_manager: Eliminate unnecessary std::function constructionLioncash1-4/+2
We can just pass the function object through, and if it's a valid function, then it will automatically be converted.
2022-11-29host1x/syncpoint_manager: Pass DeregisterAction() handle as const-refLioncash1-3/+3
The handle is only compared against and not modified in any way, so we can pass it by const reference. This also allows us to mark the respective parameters for DeregisterGuestAction() and DeregisterHostAction() as const references as well.
2022-10-06General: address feedbackFernando Sahmkow1-12/+12
2022-10-06general: Format licenses as per SPDX guidelinesMorph1-3/+2
2022-10-06General: Fix clang format.Fernando Sahmkow1-2/+2
2022-10-06VideoCore: Refactor syncing.Fernando Sahmkow1-0/+99