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

Side by Side Diff: include/gpu/GrRenderTarget.h

Issue 1225923010: Refugee from Dead Machine 4: MDB Monster Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Last update from dead machine Created 4 years, 7 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
« no previous file with comments | « include/gpu/GrPaint.h ('k') | include/gpu/GrSurface.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 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrRenderTarget_DEFINED 8 #ifndef GrRenderTarget_DEFINED
9 #define GrRenderTarget_DEFINED 9 #define GrRenderTarget_DEFINED
10 10
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 SampleConfig fSampleConfig; 184 SampleConfig fSampleConfig;
185 185
186 SkIRect fResolveRect; 186 SkIRect fResolveRect;
187 187
188 // The last drawTarget that wrote to or is currently going to write to this renderTarget 188 // The last drawTarget that wrote to or is currently going to write to this renderTarget
189 // The drawTarget can be closed (e.g., no draw context is currently bound 189 // The drawTarget can be closed (e.g., no draw context is currently bound
190 // to this renderTarget). 190 // to this renderTarget).
191 // This back-pointer is required so that we can add a dependancy between 191 // This back-pointer is required so that we can add a dependancy between
192 // the drawTarget used to create the current contents of this renderTarget 192 // the drawTarget used to create the current contents of this renderTarget
193 // and the drawTarget of a destination renderTarget to which this one is bei ng drawn. 193 // and the drawTarget of a destination renderTarget to which this one is bei ng drawn.
194 // TODO: it seems like the DT needs a pointer to the RT to which it is bound
195 // when it dies it can then clear out this pointer.
194 GrDrawTarget* fLastDrawTarget; 196 GrDrawTarget* fLastDrawTarget;
195 197
196 typedef GrSurface INHERITED; 198 typedef GrSurface INHERITED;
197 }; 199 };
198 200
199 201
200 #endif 202 #endif
OLDNEW
« no previous file with comments | « include/gpu/GrPaint.h ('k') | include/gpu/GrSurface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698