Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(733)

Side by Side Diff: cc/CCTextureLayerImpl.cpp

Issue 10989024: cc: Remove OwnPtr usage from CCRenderPass and CCDrawQuad class hierarchy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « cc/CCTextureDrawQuad.cpp ('k') | cc/CCTileDrawQuad.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 "CCTextureLayerImpl.h" 9 #include "CCTextureLayerImpl.h"
10 10
(...skipping 28 matching lines...) Expand all
39 39
40 void CCTextureLayerImpl::appendQuads(CCQuadSink& quadSink, CCAppendQuadsData& ap pendQuadsData) 40 void CCTextureLayerImpl::appendQuads(CCQuadSink& quadSink, CCAppendQuadsData& ap pendQuadsData)
41 { 41 {
42 if (!m_externalTextureResource) 42 if (!m_externalTextureResource)
43 return; 43 return;
44 44
45 CCSharedQuadState* sharedQuadState = quadSink.useSharedQuadState(createShare dQuadState()); 45 CCSharedQuadState* sharedQuadState = quadSink.useSharedQuadState(createShare dQuadState());
46 appendDebugBorderQuad(quadSink, sharedQuadState, appendQuadsData); 46 appendDebugBorderQuad(quadSink, sharedQuadState, appendQuadsData);
47 47
48 IntRect quadRect(IntPoint(), contentBounds()); 48 IntRect quadRect(IntPoint(), contentBounds());
49 quadSink.append(CCTextureDrawQuad::create(sharedQuadState, quadRect, m_exter nalTextureResource, m_premultipliedAlpha, m_uvRect, m_flipped), appendQuadsData) ; 49 quadSink.append(CCTextureDrawQuad::create(sharedQuadState, quadRect, m_exter nalTextureResource, m_premultipliedAlpha, m_uvRect, m_flipped).PassAs<CCDrawQuad >(), appendQuadsData);
50 } 50 }
51 51
52 void CCTextureLayerImpl::didDraw(CCResourceProvider* resourceProvider) 52 void CCTextureLayerImpl::didDraw(CCResourceProvider* resourceProvider)
53 { 53 {
54 if (!m_externalTextureResource) 54 if (!m_externalTextureResource)
55 return; 55 return;
56 // FIXME: the following assert will not be true when sending resources to a 56 // FIXME: the following assert will not be true when sending resources to a
57 // parent compositor. A synchronization scheme (double-buffering or 57 // parent compositor. A synchronization scheme (double-buffering or
58 // pipelining of updates) for the client will need to exist to solve this. 58 // pipelining of updates) for the client will need to exist to solve this.
59 ASSERT(!resourceProvider->inUseByConsumer(m_externalTextureResource)); 59 ASSERT(!resourceProvider->inUseByConsumer(m_externalTextureResource));
(...skipping 15 matching lines...) Expand all
75 } 75 }
76 76
77 const char* CCTextureLayerImpl::layerTypeAsString() const 77 const char* CCTextureLayerImpl::layerTypeAsString() const
78 { 78 {
79 return "TextureLayer"; 79 return "TextureLayer";
80 } 80 }
81 81
82 } 82 }
83 83
84 #endif // USE(ACCELERATED_COMPOSITING) 84 #endif // USE(ACCELERATED_COMPOSITING)
OLDNEW
« no previous file with comments | « cc/CCTextureDrawQuad.cpp ('k') | cc/CCTileDrawQuad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698