// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/compositor/test/test_suite.h"
#include "base/command_line.h"
#include "base/message_loop/message_loop.h"
#include "ui/compositor/compositor.h"
#include "ui/compositor/compositor_switches.h"
#include "ui/gfx/gfx_paths.h"
#include "ui/gl/gl_implementation.h"
#if defined(USE_X11)
#include <X11/Xlib.h>
#endif
#if defined(OS_WIN)
#include "ui/gfx/win/dpi.h"
#endif
namespace ui {
namespace test {
CompositorTestSuite::CompositorTestSuite(int argc, char** argv)
: TestSuite(argc, argv) {}
CompositorTestSuite::~CompositorTestSuite() {}
void CompositorTestSuite::Initialize() {
#if defined(USE_X11)
XInitThreads();
#endif
CHECK(gfx::InitializeGLBindings(gfx::kGLImplementationOSMesaGL));
base::TestSuite::Initialize();
gfx::RegisterPathProvider();
#if defined(OS_WIN)
gfx::InitDeviceScaleFactor(1.0f);
#endif
message_loop_.reset(new base::MessageLoop(base::MessageLoop::TYPE_UI));
}
void CompositorTestSuite::Shutdown() {
message_loop_.reset();
base::TestSuite::Shutdown();
}
} // namespace test
} // namespace ui