summaryrefslogtreecommitdiffstats
path: root/cc/test/mock_quad_culler.cc
blob: 0be49cf939b872e61943e2bd9e349467fc7a9e42 (plain)
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
// 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.

#include "cc/test/mock_quad_culler.h"

namespace cc {

MockQuadCuller::MockQuadCuller()
    : m_activeQuadList(m_quadListStorage)
    , m_activeSharedQuadStateList(m_sharedQuadStateStorage)
{
}

MockQuadCuller::MockQuadCuller(QuadList& externalQuadList, SharedQuadStateList& externalSharedQuadStateList)
    : m_activeQuadList(externalQuadList)
    , m_activeSharedQuadStateList(externalSharedQuadStateList)
{
}

MockQuadCuller::~MockQuadCuller()
{
}

bool MockQuadCuller::append(scoped_ptr<DrawQuad> drawQuad, AppendQuadsData&)
{
    if (!drawQuad->rect.IsEmpty()) {
        m_activeQuadList.append(drawQuad.Pass());
        return true;
    }
    return false;
}

SharedQuadState* MockQuadCuller::useSharedQuadState(scoped_ptr<SharedQuadState> sharedQuadState)
{
    SharedQuadState* rawPtr = sharedQuadState.get();
    m_activeSharedQuadStateList.append(sharedQuadState.Pass());
    return rawPtr;
}

} // namespace cc