| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #if USE(ACCELERATED_COMPOSITING) | 7 #if USE(ACCELERATED_COMPOSITING) |
| 8 | 8 |
| 9 #include "CCQuadCuller.h" | 9 #include "CCQuadCuller.h" |
| 10 | 10 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 quadList.append(drawQuad.release()); | 70 quadList.append(drawQuad.release()); |
| 71 } | 71 } |
| 72 return keepQuad; | 72 return keepQuad; |
| 73 } | 73 } |
| 74 | 74 |
| 75 bool CCQuadCuller::append(PassOwnPtr<CCDrawQuad> passDrawQuad, CCAppendQuadsData
& appendQuadsData) | 75 bool CCQuadCuller::append(PassOwnPtr<CCDrawQuad> passDrawQuad, CCAppendQuadsData
& appendQuadsData) |
| 76 { | 76 { |
| 77 ASSERT(passDrawQuad->sharedQuadState() == m_currentSharedQuadState); | 77 ASSERT(passDrawQuad->sharedQuadState() == m_currentSharedQuadState); |
| 78 ASSERT(passDrawQuad->sharedQuadStateId() == m_currentSharedQuadState->id); | 78 ASSERT(passDrawQuad->sharedQuadStateId() == m_currentSharedQuadState->id); |
| 79 ASSERT(!m_sharedQuadStateList.isEmpty()); | 79 ASSERT(!m_sharedQuadStateList.isEmpty()); |
| 80 ASSERT(m_sharedQuadStateList.last().get() == m_currentSharedQuadState); | 80 ASSERT(m_sharedQuadStateList.last() == m_currentSharedQuadState); |
| 81 | 81 |
| 82 IntRect culledRect; | 82 IntRect culledRect; |
| 83 bool hasOcclusionFromOutsideTargetSurface; | 83 bool hasOcclusionFromOutsideTargetSurface; |
| 84 | 84 |
| 85 if (m_forSurface) | 85 if (m_forSurface) |
| 86 culledRect = m_occlusionTracker->unoccludedContributingSurfaceContentRec
t(m_layer, false, passDrawQuad->quadRect(), &hasOcclusionFromOutsideTargetSurfac
e); | 86 culledRect = m_occlusionTracker->unoccludedContributingSurfaceContentRec
t(m_layer, false, passDrawQuad->quadRect(), &hasOcclusionFromOutsideTargetSurfac
e); |
| 87 else | 87 else |
| 88 culledRect = m_occlusionTracker->unoccludedContentRect(m_layer, passDraw
Quad->quadRect(), &hasOcclusionFromOutsideTargetSurface); | 88 culledRect = m_occlusionTracker->unoccludedContentRect(m_layer, passDraw
Quad->quadRect(), &hasOcclusionFromOutsideTargetSurface); |
| 89 | 89 |
| 90 appendQuadsData.hadOcclusionFromOutsideTargetSurface |= hasOcclusionFromOuts
ideTargetSurface; | 90 appendQuadsData.hadOcclusionFromOutsideTargetSurface |= hasOcclusionFromOuts
ideTargetSurface; |
| 91 | 91 |
| 92 return appendQuadInternal(passDrawQuad, culledRect, m_quadList, *m_occlusion
Tracker, m_showCullingWithDebugBorderQuads); | 92 return appendQuadInternal(passDrawQuad, culledRect, m_quadList, *m_occlusion
Tracker, m_showCullingWithDebugBorderQuads); |
| 93 } | 93 } |
| 94 | 94 |
| 95 } // namespace cc | 95 } // namespace cc |
| 96 #endif // USE(ACCELERATED_COMPOSITING) | 96 #endif // USE(ACCELERATED_COMPOSITING) |
| OLD | NEW |