blob: 62593e5cfe864dc4f321c94ce95253f038d4a5fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright 2014 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 CC_QUADS_LARGEST_DRAW_QUAD_H_
#define CC_QUADS_LARGEST_DRAW_QUAD_H_
#include <stddef.h>
#include "cc/base/cc_export.h"
namespace cc {
CC_EXPORT size_t LargestDrawQuadSize();
} // namespace cc
#endif // CC_QUADS_LARGEST_DRAW_QUAD_H_
|