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), {}};