1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
// 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_TEST_LAYER_TREE_PIXEL_RESOURCE_TEST_H_
#define CC_TEST_LAYER_TREE_PIXEL_RESOURCE_TEST_H_
#include "base/memory/ref_counted.h"
#include "cc/test/layer_tree_pixel_test.h"
namespace cc {
class LayerTreeHostImpl;
class TileTaskWorkerPool;
class ResourcePool;
// Enumerate the various combinations of renderer, resource pool, staging
// texture type, and drawing texture types. Not all of the combinations
// are possible (or worth testing independently), so this is the minimal
// list to hit all codepaths.
enum PixelResourceTestCase {
SOFTWARE,
GL_GPU_RASTER_2D_DRAW,
GL_ONE_COPY_2D_STAGING_2D_DRAW,
GL_ONE_COPY_RECT_STAGING_2D_DRAW,
GL_ONE_COPY_EXTERNAL_STAGING_2D_DRAW,
GL_ZERO_COPY_2D_DRAW,
GL_ZERO_COPY_RECT_DRAW,
GL_ZERO_COPY_EXTERNAL_DRAW,
GL_ASYNC_UPLOAD_2D_DRAW,
};
class LayerTreeHostPixelResourceTest : public LayerTreePixelTest {
public:
explicit LayerTreeHostPixelResourceTest(PixelResourceTestCase test_case);
LayerTreeHostPixelResourceTest();
void CreateResourceAndTileTaskWorkerPool(
LayerTreeHostImpl* host_impl,
scoped_ptr<TileTaskWorkerPool>* tile_task_worker_pool,
scoped_ptr<ResourcePool>* resource_pool,
scoped_ptr<ResourcePool>* staging_resource_pool) override;
void RunPixelResourceTest(scoped_refptr<Layer> content_root,
base::FilePath file_name);
enum TileTaskWorkerPoolOption {
BITMAP_TILE_TASK_WORKER_POOL,
GPU_TILE_TASK_WORKER_POOL,
ZERO_COPY_TILE_TASK_WORKER_POOL,
ONE_COPY_TILE_TASK_WORKER_POOL,
PIXEL_BUFFER_TILE_TASK_WORKER_POOL,
};
protected:
unsigned staging_texture_target_;
unsigned draw_texture_target_;
TileTaskWorkerPoolOption resource_pool_option_;
bool initialized_;
void InitializeFromTestCase(PixelResourceTestCase test_case);
private:
PixelResourceTestCase test_case_;
};
#define INSTANTIATE_PIXEL_RESOURCE_TEST_CASE_P(framework_name) \
INSTANTIATE_TEST_CASE_P( \
PixelResourceTest, \
framework_name, \
::testing::Values(SOFTWARE, \
GL_GPU_RASTER_2D_DRAW, \
GL_ONE_COPY_2D_STAGING_2D_DRAW, \
GL_ONE_COPY_RECT_STAGING_2D_DRAW, \
GL_ONE_COPY_EXTERNAL_STAGING_2D_DRAW, \
GL_ZERO_COPY_2D_DRAW, \
GL_ZERO_COPY_RECT_DRAW, \
GL_ZERO_COPY_EXTERNAL_DRAW, \
GL_ASYNC_UPLOAD_2D_DRAW))
class ParameterizedPixelResourceTest
: public LayerTreeHostPixelResourceTest,
public ::testing::WithParamInterface<PixelResourceTestCase> {
public:
ParameterizedPixelResourceTest();
};
} // namespace cc
#endif // CC_TEST_LAYER_TREE_PIXEL_RESOURCE_TEST_H_
|