blob: 5d01c96e8287185983050b3e17b33a1426a3447e (
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
42
43
44
45
46
47
|
// 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 "config.h"
#include "MockCCQuadCuller.h"
namespace cc {
MockCCQuadCuller::MockCCQuadCuller()
: m_activeQuadList(m_quadListStorage)
, m_activeSharedQuadStateList(m_sharedQuadStateStorage)
{
}
MockCCQuadCuller::MockCCQuadCuller(CCQuadList& externalQuadList, CCSharedQuadStateList& externalSharedQuadStateList)
: m_activeQuadList(externalQuadList)
, m_activeSharedQuadStateList(externalSharedQuadStateList)
{
}
MockCCQuadCuller::~MockCCQuadCuller()
{
}
bool MockCCQuadCuller::append(PassOwnPtr<CCDrawQuad> newQuad, CCAppendQuadsData&)
{
OwnPtr<CCDrawQuad> drawQuad = newQuad;
if (!drawQuad->quadRect().isEmpty()) {
m_activeQuadList.append(drawQuad.release());
return true;
}
return false;
}
CCSharedQuadState* MockCCQuadCuller::useSharedQuadState(PassOwnPtr<CCSharedQuadState> passSharedQuadState)
{
OwnPtr<CCSharedQuadState> sharedQuadState(passSharedQuadState);
sharedQuadState->id = m_activeSharedQuadStateList.size();
CCSharedQuadState* rawPtr = sharedQuadState.get();
m_activeSharedQuadStateList.append(sharedQuadState.release());
return rawPtr;
}
} // namespace cc
|