* Copyright (c) 2022-2025 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <gtest/gtest.h>
#include "display.h"
#include "display_info.h"
#include "display_manager.h"
#include "display_manager_proxy.h"
#include "surface_draw.h"
#include "window_impl.h"
using namespace testing;
using namespace testing::ext;
namespace OHOS {
namespace Rosen {
namespace {
const std::string IMAGE_PLACE_HOLDER_PNG_PATH = "/etc/window/resources/bg_place_holder.png";
const int WAIT_FOR_SYNC_US = 1000 * 500;
constexpr float WIDTH_THRESHOLD_SMALL_VP = 320.0;
constexpr float WIDTH_THRESHOLD_MEDIUM_VP = 600.0;
constexpr float WIDTH_THRESHOLD_LARGE_VP = 840.0;
constexpr float VPRATIO = 1.5;
}
class SurfaceDrawTest : public testing::Test {
public:
static void SetUpTestCase();
static void TearDownTestCase();
void SetUp() override;
void TearDown() override;
public:
struct WindowTestInfo {
std::string name;
Rect rect;
WindowType type;
WindowMode mode;
bool needAvoid;
bool parentLimit;
bool forbidSplitMove{ false };
bool showWhenLocked;
uint32_t parentId;
};
sptr<Window> CreateTestWindow(const std::string& name);
static inline DisplayId displayId_;
static inline int32_t displayWidth_;
static inline int32_t displayHeight_;
WindowTestInfo windowInfo_;
};
void SurfaceDrawTest::SetUpTestCase()
{
displayId_ = DisplayManager::GetInstance().GetDefaultDisplayId();
sptr<Display> display = DisplayManager::GetInstance().GetDefaultDisplay();
if (display == nullptr) {
return;
}
displayWidth_ = display->GetWidth();
displayHeight_ = display->GetHeight();
}
void SurfaceDrawTest::TearDownTestCase()
{
}
void SurfaceDrawTest::SetUp()
{
windowInfo_ = {
.name = "main",
.rect = { 100, 100, 250, 300 },
.type = WindowType::WINDOW_TYPE_APP_MAIN_WINDOW,
.mode = WindowMode::WINDOW_MODE_FLOATING,
.needAvoid = true,
.parentLimit = false,
.parentId = INVALID_WINDOW_ID,
};
}
void SurfaceDrawTest::TearDown() {}
sptr<Window> SurfaceDrawTest::CreateTestWindow(const std::string& name)
{
sptr<WindowOption> option = new (std::nothrow) WindowOption();
if (option == nullptr) {
return nullptr;
}
option->SetDisplayId(displayId_);
option->SetWindowType(windowInfo_.type);
option->SetWindowRect(windowInfo_.rect);
option->SetWindowMode(windowInfo_.mode);
option->SetWindowName(name);
sptr<Window> window = Window::Create(option->GetWindowName(), option);
if (window == nullptr) {
return nullptr;
}
window->AddWindowFlag(WindowFlag::WINDOW_FLAG_SHOW_WHEN_LOCKED);
return window;
}
namespace {
* @tc.name: DrawImage
* @tc.desc: SurfaceDraw::DrawImage test
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DrawImage01, TestSize.Level1)
{
ASSERT_FALSE(SurfaceDraw::DrawImage(nullptr, 0, 0, ""));
sptr<Window> window = CreateTestWindow("testDrawImage");
ASSERT_NE(nullptr, window);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
auto surfaceNode = window->GetSurfaceNode();
ASSERT_NE(surfaceNode, nullptr);
usleep(WAIT_FOR_SYNC_US / 20);
uint32_t width = window->GetRect().width_;
uint32_t height = window->GetRect().height_;
SurfaceDraw::DrawImage(surfaceNode, width, height, IMAGE_PLACE_HOLDER_PNG_PATH);
ASSERT_FALSE(SurfaceDraw::DrawImage(surfaceNode, -1, -1, IMAGE_PLACE_HOLDER_PNG_PATH));
window->Destroy();
}
* @tc.name: DecodeImageToPixelMap
* @tc.desc: SurfaceDraw::DecodeImageToPixelMap test
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DecodeImageToPixelMap01, TestSize.Level1)
{
ASSERT_EQ(SurfaceDraw::DecodeImageToPixelMap(""), nullptr);
ASSERT_NE(SurfaceDraw::DecodeImageToPixelMap(IMAGE_PLACE_HOLDER_PNG_PATH), nullptr);
}
* @tc.name: DrawMasking
* @tc.desc: SurfaceDraw::DrawMasking test
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DrawMasking01, TestSize.Level1)
{
OHOS::Rosen::Rect screenRect = { 0, 0, 0, 0 };
OHOS::Rosen::Rect transRect = { 0, 0, 0, 0 };
ASSERT_FALSE(SurfaceDraw::DrawMasking(nullptr, screenRect, transRect));
sptr<Window> window = CreateTestWindow("testDrawMasking");
ASSERT_NE(nullptr, window);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
auto surfaceNode = window->GetSurfaceNode();
ASSERT_NE(surfaceNode, nullptr);
ASSERT_FALSE(SurfaceDraw::DrawMasking(surfaceNode, screenRect, transRect));
screenRect.width_ = displayWidth_;
screenRect.height_ = displayHeight_;
transRect.width_ = displayWidth_;
transRect.height_ = displayHeight_;
SurfaceDraw::DrawMasking(surfaceNode, screenRect, transRect);
window->Destroy();
}
* @tc.name: DoDrawImageRect
* @tc.desc: SurfaceDraw::DoDrawImageRect test
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DoDrawImageRect01, TestSize.Level1)
{
sptr<Window> window = CreateTestWindow("testDoDrawImageRect");
ASSERT_NE(window, nullptr);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
OHOS::Rosen::Rect rect = window->GetRect();
uint32_t color = 0x00660000;
auto surfaceNode = window->GetSurfaceNode();
ASSERT_NE(surfaceNode, nullptr);
sptr<OHOS::Surface> layer = SurfaceDraw::GetLayer(surfaceNode);
ASSERT_NE(layer, nullptr);
sptr<OHOS::SurfaceBuffer> buffer = SurfaceDraw::GetSurfaceBuffer(layer, rect.width_, rect.height_);
ASSERT_NE(nullptr, buffer);
ASSERT_FALSE(SurfaceDraw::DoDrawImageRect(buffer, rect, nullptr, color, false));
std::shared_ptr<Media::PixelMap> pixelMap = SurfaceDraw::DecodeImageToPixelMap(IMAGE_PLACE_HOLDER_PNG_PATH);
ASSERT_NE(pixelMap, nullptr);
ASSERT_TRUE(SurfaceDraw::DoDrawImageRect(buffer, rect, pixelMap, color, false));
window->Destroy();
}
* @tc.name: GetSurfaceSnapshot
* @tc.desc: SurfaceDraw::GetSurfaceSnapshot test
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, GetSurfaceSnapshot01, TestSize.Level1)
{
sptr<Window> window = CreateTestWindow("testDoDrawImageRect");
ASSERT_NE(window, nullptr);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
auto surfaceNode = window->GetSurfaceNode();
ASSERT_NE(surfaceNode, nullptr);
std::shared_ptr<Media::PixelMap> pixelMap = SurfaceDraw::DecodeImageToPixelMap(IMAGE_PLACE_HOLDER_PNG_PATH);
ASSERT_NE(pixelMap, nullptr);
ASSERT_FALSE(SurfaceDraw::GetSurfaceSnapshot(nullptr, pixelMap, 0, 0, 0));
ASSERT_FALSE(SurfaceDraw::GetSurfaceSnapshot(surfaceNode, pixelMap, 0, 0, 0));
window->Destroy();
}
* @tc.name: DrawColor
* @tc.desc: SurfaceDraw::DrawColor test
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DrawColor01, TestSize.Level1)
{
ASSERT_FALSE(SurfaceDraw::DrawColor(nullptr, 0, 0, 0));
sptr<Window> window = CreateTestWindow("DrawColor");
ASSERT_NE(nullptr, window);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
auto surfaceNode = window->GetSurfaceNode();
ASSERT_NE(surfaceNode, nullptr);
uint32_t width = window->GetRect().width_;
uint32_t height = window->GetRect().height_;
uint32_t color = 0x00660000;
SurfaceDraw::DrawColor(surfaceNode, width, height, color);
SurfaceDraw::DrawColor(surfaceNode, -1, -1, color);
ASSERT_EQ(WMError::WM_OK, window->Destroy());
}
* @tc.name: DoDraw
* @tc.desc: SurfaceDraw::DoDraw test
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DoDraw01, TestSize.Level1)
{
sptr<Window> window = CreateTestWindow("DoDrawTest01");
ASSERT_NE(nullptr, window);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
OHOS::Rosen::Rect rect = window->GetRect();
auto surfaceNode = window->GetSurfaceNode();
ASSERT_NE(surfaceNode, nullptr);
sptr<OHOS::Surface> layer = SurfaceDraw::GetLayer(surfaceNode);
ASSERT_NE(layer, nullptr);
sptr<OHOS::SurfaceBuffer> buffer = SurfaceDraw::GetSurfaceBuffer(layer, rect.width_, rect.height_);
ASSERT_NE(buffer, nullptr);
ASSERT_FALSE(SurfaceDraw::DoDraw(nullptr, 0, 0, ""));
window->Destroy();
}
* @tc.name: DoDraw
* @tc.desc: SurfaceDraw::DoDraw02 test
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DoDraw02, TestSize.Level1)
{
sptr<Window> window = CreateTestWindow("DoDraw02");
ASSERT_NE(window, nullptr);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
OHOS::Rosen::Rect rect = window->GetRect();
auto surfaceNode = window->GetSurfaceNode();
ASSERT_NE(surfaceNode, nullptr);
sptr<OHOS::Surface> layer = SurfaceDraw::GetLayer(surfaceNode);
ASSERT_NE(layer, nullptr);
sptr<OHOS::SurfaceBuffer> buffer = SurfaceDraw::GetSurfaceBuffer(layer, rect.width_, rect.height_);
ASSERT_NE(nullptr, buffer);
std::shared_ptr<Media::PixelMap> pixelMap = SurfaceDraw::DecodeImageToPixelMap(IMAGE_PLACE_HOLDER_PNG_PATH);
ASSERT_NE(pixelMap, nullptr);
ASSERT_FALSE(SurfaceDraw::DoDraw(nullptr, 0, 0, pixelMap));
window->Destroy();
}
* @tc.name: DoDraw03
* @tc.desc: SurfaceDraw::DoDraw03 test
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DoDraw03, TestSize.Level1)
{
sptr<Window> window = CreateTestWindow("DoDrawTest03");
ASSERT_NE(nullptr, window);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
OHOS::Rosen::Rect rect = window->GetRect();
uint32_t color = 0x00660000;
auto surfaceNode = window->GetSurfaceNode();
ASSERT_NE(surfaceNode, nullptr);
sptr<OHOS::Surface> layer = SurfaceDraw::GetLayer(surfaceNode);
ASSERT_NE(layer, nullptr);
sptr<OHOS::SurfaceBuffer> buffer = SurfaceDraw::GetSurfaceBuffer(layer, rect.width_, rect.height_);
ASSERT_NE(nullptr, buffer);
ASSERT_FALSE(SurfaceDraw::DoDraw(nullptr, 0, 0, color));
window->Destroy();
}
* @tc.name: DrawImageRect
* @tc.desc: SurfaceDraw::DoDrawImageRect test
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DrawImageRect01, TestSize.Level1)
{
sptr<Window> window = CreateTestWindow("DrawImageRect");
ASSERT_NE(window, nullptr);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
OHOS::Rosen::Rect rect = window->GetRect();
uint32_t color = 0x00660000;
auto surfaceNode = window->GetSurfaceNode();
ASSERT_NE(surfaceNode, nullptr);
ASSERT_FALSE(SurfaceDraw::DrawImageRect(surfaceNode, rect, nullptr, color, false));
std::shared_ptr<Media::PixelMap> pixelMap = SurfaceDraw::DecodeImageToPixelMap(IMAGE_PLACE_HOLDER_PNG_PATH);
ASSERT_NE(pixelMap, nullptr);
SurfaceDraw::DrawImageRect(surfaceNode, rect, pixelMap, color, false);
window->Destroy();
}
* @tc.name: DrawCustomStartingWindow
* @tc.desc: SurfaceDraw::DrawCustomStartingWindow test failure
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DrawCustomStartingWindow01, TestSize.Level1)
{
sptr<Window> window = CreateTestWindow("DrawCustomStartingWindow test fail");
ASSERT_NE(window, nullptr);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
OHOS::Rosen::Rect rect = window->GetRect();
auto info = std::make_shared<Rosen::StartingWindowPageDrawInfo>();
info->bgColor = 0x00660000;
auto surfaceNode = window->GetSurfaceNode();
std::array<uint32_t, size_t(StartWindowResType::Count)> frameIndex {};
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(nullptr, rect, info, 1.0f, frameIndex), false);
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode, rect, nullptr, 1.0f, frameIndex), false);
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode, rect, info, -1.0f, frameIndex), false);
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode, rect, info, 0.0f, frameIndex), false);
rect.width_ = 0;
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode, rect, info, 1.0f, frameIndex), false);
rect.height_ = 0;
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode, rect, info, 1.0f, frameIndex), false);
window->Destroy();
}
* @tc.name: DrawCustomStartingWindow
* @tc.desc: SurfaceDraw::DrawCustomStartingWindow color
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DrawCustomStartingWindow02, TestSize.Level1)
{
sptr<Window> window = CreateTestWindow("DrawCustomStartingWindow test success");
ASSERT_NE(window, nullptr);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
OHOS::Rosen::Rect rect = window->GetRect();
auto info = std::make_shared<Rosen::StartingWindowPageDrawInfo>();
info->bgColor = 0x00660000;
auto surfaceNode = window->GetSurfaceNode();
std::array<uint32_t, size_t(StartWindowResType::Count)> frameIndex {};
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode,
rect, info, std::numeric_limits<float>::max(), frameIndex), true);
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode,
rect, info, std::numeric_limits<float>::min(), frameIndex), true);
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode, rect, info, 1.0f, frameIndex), true);
window->Destroy();
}
* @tc.name: DrawCustomStartingWindow
* @tc.desc: SurfaceDraw::DrawCustomStartingWindow resource
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DrawCustomStartingWindow03, TestSize.Level1)
{
sptr<Window> window = CreateTestWindow("DrawCustomStartingWindow test success");
ASSERT_NE(window, nullptr);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
OHOS::Rosen::Rect rect = window->GetRect();
auto info = std::make_shared<Rosen::StartingWindowPageDrawInfo>();
info->bgColor = 0x00660000;
auto surfaceNode = window->GetSurfaceNode();
std::array<uint32_t, size_t(StartWindowResType::Count)> frameIndex { 0, 0, 0, 0 };
std::shared_ptr<Media::PixelMap> pixelMap = SurfaceDraw::DecodeImageToPixelMap(IMAGE_PLACE_HOLDER_PNG_PATH);
info->appIcon = std::make_shared<ResourceInfo>();
info->bgImage = std::make_shared<ResourceInfo>();
info->branding = std::make_shared<ResourceInfo>();
info->appIcon->pixelMaps.push_back(pixelMap);
info->bgImage->pixelMaps.push_back(pixelMap);
info->branding->pixelMaps.push_back(pixelMap);
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode, rect, info, 1.0f, frameIndex), true);
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode, rect, info,
std::numeric_limits<float>::max(), frameIndex), true);
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode, rect, info,
std::numeric_limits<float>::min(), frameIndex), true);
window->Destroy();
}
* @tc.name: DrawCustomStartingWindow
* @tc.desc: SurfaceDraw::DrawCustomStartingWindow resource
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DrawCustomStartingWindow04, TestSize.Level1)
{
sptr<Window> window = CreateTestWindow("DrawCustomStartingWindow test success");
ASSERT_NE(window, nullptr);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
OHOS::Rosen::Rect rect = window->GetRect();
auto info = std::make_shared<Rosen::StartingWindowPageDrawInfo>();
info->bgColor = 0x00660000;
auto surfaceNode = window->GetSurfaceNode();
std::array<uint32_t, size_t(StartWindowResType::Count)> frameIndex { 0, 0, 0, 0 };
std::shared_ptr<Media::PixelMap> pixelMap = SurfaceDraw::DecodeImageToPixelMap(IMAGE_PLACE_HOLDER_PNG_PATH);
info->branding = std::make_shared<ResourceInfo>();
info->branding->pixelMaps.push_back(pixelMap);
info->illustration = std::make_shared<ResourceInfo>();
info->illustration->pixelMaps.push_back(pixelMap);
rect.height_ = 200;
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode, rect, info, 1.0f, frameIndex), true);
window->Destroy();
}
* @tc.name: DrawCustomStartingWindow
* @tc.desc: SurfaceDraw::DrawCustomStartingWindow appicon
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DrawCustomStartingWindow05, TestSize.Level1)
{
sptr<Window> window = CreateTestWindow("DrawCustomStartingWindow test success");
ASSERT_NE(window, nullptr);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
OHOS::Rosen::Rect rect = window->GetRect();
auto info = std::make_shared<Rosen::StartingWindowPageDrawInfo>();
info->bgColor = 0x00660000;
auto surfaceNode = window->GetSurfaceNode();
std::array<uint32_t, size_t(StartWindowResType::Count)> frameIndex { 0, 0, 0, 0 };
std::shared_ptr<Media::PixelMap> pixelMap = SurfaceDraw::DecodeImageToPixelMap(IMAGE_PLACE_HOLDER_PNG_PATH);
info->appIcon = std::make_shared<ResourceInfo>();
info->appIcon->pixelMaps.push_back(pixelMap);
rect.width_ = WIDTH_THRESHOLD_SMALL_VP * VPRATIO - 1;
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode, rect, info, VPRATIO, frameIndex), true);
rect.width_ = WIDTH_THRESHOLD_MEDIUM_VP * VPRATIO - 1;
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode, rect, info, VPRATIO, frameIndex), true);
rect.width_ = WIDTH_THRESHOLD_LARGE_VP * VPRATIO - 1;
EXPECT_EQ(SurfaceDraw::DrawCustomStartingWindow(surfaceNode, rect, info, VPRATIO, frameIndex), true);
window->Destroy();
}
* @tc.name: DrawBackgroundImage01
* @tc.desc: SurfaceDraw::DoDrawBackgroundImage01 test
* @tc.type: FUNC
*/
HWTEST_F(SurfaceDrawTest, DrawBackgroundImage01, TestSize.Level1)
{
std::shared_ptr<Media::PixelMap> pixelMap = SurfaceDraw::DecodeImageToPixelMap(IMAGE_PLACE_HOLDER_PNG_PATH);
ASSERT_NE(pixelMap, nullptr);
auto info = std::make_shared<Rosen::StartingWindowPageDrawInfo>();
info->bgColor = 0x00660000;
info->bgImage = std::make_shared<ResourceInfo>();
info->bgImage->pixelMaps.push_back(pixelMap);
sptr<Window> window = CreateTestWindow("DrawCustomResource");
ASSERT_NE(window, nullptr);
window->Show();
usleep(WAIT_FOR_SYNC_US / 20);
OHOS::Rosen::Rect rect = window->GetRect();
auto surfaceNode = window->GetSurfaceNode();
auto buffer = SurfaceDraw::GetSurfaceBuffer(SurfaceDraw::GetLayer(surfaceNode), rect.width_, rect.height_);
float ratio = 1.0f;
std::array<uint32_t, size_t(StartWindowResType::Count)> frameIndex { 0, 0, 0, 0 };
info->startWindowBackgroundImageFit = "";
EXPECT_EQ(SurfaceDraw::DoDrawCustomStartingWindow(buffer, rect, info, ratio, frameIndex), true);
info->startWindowBackgroundImageFit = "Cover";
EXPECT_EQ(SurfaceDraw::DoDrawCustomStartingWindow(buffer, rect, info, ratio, frameIndex), true);
info->startWindowBackgroundImageFit = "Contain";
EXPECT_EQ(SurfaceDraw::DoDrawCustomStartingWindow(buffer, rect, info, ratio, frameIndex), true);
info->startWindowBackgroundImageFit = "Fill";
EXPECT_EQ(SurfaceDraw::DoDrawCustomStartingWindow(buffer, rect, info, ratio, frameIndex), true);
info->startWindowBackgroundImageFit = "Auto";
EXPECT_EQ(SurfaceDraw::DoDrawCustomStartingWindow(buffer, rect, info, ratio, frameIndex), true);
info->startWindowBackgroundImageFit = "ScaleDown";
EXPECT_EQ(SurfaceDraw::DoDrawCustomStartingWindow(buffer, rect, info, ratio, frameIndex), true);
info->startWindowBackgroundImageFit = "xxxxx";
EXPECT_EQ(SurfaceDraw::DoDrawCustomStartingWindow(buffer, rect, info, ratio, frameIndex), true);
info->startWindowBackgroundImageFit = "None";
EXPECT_EQ(SurfaceDraw::DoDrawCustomStartingWindow(buffer, rect, info, ratio, frameIndex), true);
window->Destroy();
}
}
}
}