summaryrefslogtreecommitdiffstats
path: root/src/video_core/host1x (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-refLioncash2-6/+6
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-11syncpoint_manager: ensure handle is removable before removingLiam1-1/+11
2022-10-06General: address feedbackFernando Sahmkow3-19/+19
2022-10-06general: Format licenses as per SPDX guidelinesMorph6-19/+13
2022-10-06General: Fix clang format.Fernando Sahmkow3-6/+7
2022-10-06DMA & InlineToMemory Engines Rework.bunnei1-2/+3
2022-10-06NVDRV: Further refactors and eliminate old code.Fernando Sahmkow1-0/+4
2022-10-06NVDRV: Refactor Host1xFernando Sahmkow19-67/+125
2022-10-06VideoCore: Refactor syncing.Fernando Sahmkow21-0/+3310