From 2a14f37ed86f995ae04089060b65353c8753c2f8 Mon Sep 17 00:00:00 2001 From: lizzie Date: Fri, 11 Sep 2026 20:06:05 +0000 Subject: [PATCH] 2026-09-11 20:06:05 Signed-off-by: lizzie --- src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp index 358679b831..fd01bd8e85 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp @@ -298,7 +298,7 @@ NvResult nvhost_gpu::AllocateObjectContext(IoctlAllocObjCtx& params) { return NvResult::Success; } -static boost::container::small_vector BuildWaitCommandList( +static std::vector BuildWaitCommandList( NvFence fence) { return { Tegra::BuildCommandHeader(Tegra::BufferMethods::SyncpointPayload, 1, @@ -310,9 +310,9 @@ static boost::container::small_vector BuildWaitComman }; } -static boost::container::small_vector BuildIncrementCommandList( +static std::vector BuildIncrementCommandList( NvFence fence) { - boost::container::small_vector result{ + std::vector result{ Tegra::BuildCommandHeader(Tegra::BufferMethods::SyncpointPayload, 1, Tegra::SubmissionMode::Increasing), {}}; @@ -327,9 +327,9 @@ static boost::container::small_vector BuildIncrementC return result; } -static boost::container::small_vector BuildIncrementWithWfiCommandList( +static std::vector BuildIncrementWithWfiCommandList( NvFence fence) { - boost::container::small_vector result{ + std::vector result{ Tegra::BuildCommandHeader(Tegra::BufferMethods::WaitForIdle, 1, Tegra::SubmissionMode::Increasing), {}};