diff --git a/shared/source/xe2_hpg_core/windows/product_helper_lnl.cpp b/shared/source/xe2_hpg_core/windows/product_helper_lnl.cpp index dd2ded6d34..08c2c23c92 100644 --- a/shared/source/xe2_hpg_core/windows/product_helper_lnl.cpp +++ b/shared/source/xe2_hpg_core/windows/product_helper_lnl.cpp @@ -44,11 +44,6 @@ bool ProductHelperHw::isDirectSubmissionSupported(ReleaseHelper *rel return true; } -template <> -bool ProductHelperHw::isCopyBufferRectSplitSupported() const { - return false; -} - template <> bool ProductHelperHw::mitigateDcFlush() const { return true; diff --git a/shared/test/unit_test/xe2_hpg_core/lnl/windows/product_helper_tests_lnl_windows.cpp b/shared/test/unit_test/xe2_hpg_core/lnl/windows/product_helper_tests_lnl_windows.cpp index b989751a83..5ce88ebf35 100644 --- a/shared/test/unit_test/xe2_hpg_core/lnl/windows/product_helper_tests_lnl_windows.cpp +++ b/shared/test/unit_test/xe2_hpg_core/lnl/windows/product_helper_tests_lnl_windows.cpp @@ -63,6 +63,6 @@ LNLTEST_F(LnlProductHelperWindows, givenProductHelperWhenIsStagingBuffersEnabled EXPECT_TRUE(productHelper->isStagingBuffersEnabled()); } -LNLTEST_F(LnlProductHelperWindows, givenProductHelperWhenCheckIsCopyBufferRectSplitSupportedThenReturnsFalse) { - EXPECT_FALSE(productHelper->isCopyBufferRectSplitSupported()); +LNLTEST_F(LnlProductHelperWindows, givenProductHelperWhenCheckIsCopyBufferRectSplitSupportedThenReturnsTrue) { + EXPECT_TRUE(productHelper->isCopyBufferRectSplitSupported()); } \ No newline at end of file