blob: d3ed72981f365232c727f3d246c147eda1dbff5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright 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.
#ifndef CCLayerTestCommon_h
#define CCLayerTestCommon_h
#include "IntRect.h"
#include "Region.h"
#include "cc/render_pass.h"
namespace LayerTestCommon {
extern const char* quadString;
void verifyQuadsExactlyCoverRect(const cc::QuadList&, const cc::IntRect&);
} // namespace LayerTestCommon
#endif // CCLayerTestCommon_h
|