OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2010 Google Inc. | 2 * Copyright 2010 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 GrDrawTarget_DEFINED | 8 #ifndef GrDrawTarget_DEFINED |
9 #define GrDrawTarget_DEFINED | 9 #define GrDrawTarget_DEFINED |
10 | 10 |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 /** | 137 /** |
138 * Copies a pixel rectangle from one surface to another. This call may final
ize | 138 * Copies a pixel rectangle from one surface to another. This call may final
ize |
139 * reserved vertex/index data (as though a draw call was made). The src pixe
ls | 139 * reserved vertex/index data (as though a draw call was made). The src pixe
ls |
140 * copied are specified by srcRect. They are copied to a rect of the same | 140 * copied are specified by srcRect. They are copied to a rect of the same |
141 * size in dst with top left at dstPoint. If the src rect is clipped by the | 141 * size in dst with top left at dstPoint. If the src rect is clipped by the |
142 * src bounds then pixel values in the dst rect corresponding to area clipp
ed | 142 * src bounds then pixel values in the dst rect corresponding to area clipp
ed |
143 * by the src rect are not overwritten. This method is not guaranteed to suc
ceed | 143 * by the src rect are not overwritten. This method is not guaranteed to suc
ceed |
144 * depending on the type of surface, configs, etc, and the backend-specific | 144 * depending on the type of surface, configs, etc, and the backend-specific |
145 * limitations. | 145 * limitations. |
146 */ | 146 */ |
147 bool copySurface(GrSurface* dst, | 147 void copySurface(GrSurface* dst, |
148 GrSurface* src, | 148 GrSurface* src, |
149 const SkIRect& srcRect, | 149 const SkIRect& srcRect, |
150 const SkIPoint& dstPoint); | 150 const SkIPoint& dstPoint); |
151 | 151 |
152 /** Provides access to internal functions to GrClipMaskManager without frien
ding all of | 152 /** Provides access to internal functions to GrClipMaskManager without frien
ding all of |
153 GrDrawTarget to CMM. */ | 153 GrDrawTarget to CMM. */ |
154 class CMMAccess { | 154 class CMMAccess { |
155 public: | 155 public: |
156 CMMAccess(GrDrawTarget* drawTarget) : fDrawTarget(drawTarget) {} | 156 CMMAccess(GrDrawTarget* drawTarget) : fDrawTarget(drawTarget) {} |
157 private: | 157 private: |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 SkTDArray<GrDrawTarget*> fDependencies; | 258 SkTDArray<GrDrawTarget*> fDependencies; |
259 GrRenderTarget* fRenderTarget; | 259 GrRenderTarget* fRenderTarget; |
260 | 260 |
261 bool fDrawBatchBounds; | 261 bool fDrawBatchBounds; |
262 int fMaxBatchLookback; | 262 int fMaxBatchLookback; |
263 | 263 |
264 typedef SkRefCnt INHERITED; | 264 typedef SkRefCnt INHERITED; |
265 }; | 265 }; |
266 | 266 |
267 #endif | 267 #endif |
OLD | NEW |