| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 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 GrRenderTargetContext_DEFINED | 8 #ifndef GrRenderTargetContext_DEFINED |
| 9 #define GrRenderTargetContext_DEFINED | 9 #define GrRenderTargetContext_DEFINED |
| 10 | 10 |
| 11 #include "GrColor.h" | 11 #include "GrColor.h" |
| 12 #include "GrContext.h" | 12 #include "GrContext.h" |
| 13 #include "GrPaint.h" | 13 #include "GrPaint.h" |
| 14 #include "GrRenderTarget.h" | 14 #include "GrRenderTargetProxy.h" |
| 15 #include "SkRefCnt.h" | 15 #include "SkRefCnt.h" |
| 16 #include "SkRegion.h" | 16 #include "SkRegion.h" |
| 17 #include "SkSurfaceProps.h" | 17 #include "SkSurfaceProps.h" |
| 18 #include "../private/GrInstancedPipelineInfo.h" | 18 #include "../private/GrInstancedPipelineInfo.h" |
| 19 #include "../private/GrRenderTargetProxy.h" | 19 #include "../private/GrRenderTargetProxy.h" |
| 20 #include "../private/GrSingleOwner.h" | 20 #include "../private/GrSingleOwner.h" |
| 21 | 21 |
| 22 class GrAuditTrail; | 22 class GrAuditTrail; |
| 23 class GrClip; | 23 class GrClip; |
| 24 class GrDrawBatch; | 24 class GrDrawBatch; |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 sk_sp<SkColorSpace> fColorSpace; | 447 sk_sp<SkColorSpace> fColorSpace; |
| 448 sk_sp<GrColorSpaceXform> fColorXformFromSRGB; | 448 sk_sp<GrColorSpaceXform> fColorXformFromSRGB; |
| 449 SkSurfaceProps fSurfaceProps; | 449 SkSurfaceProps fSurfaceProps; |
| 450 GrAuditTrail* fAuditTrail; | 450 GrAuditTrail* fAuditTrail; |
| 451 | 451 |
| 452 // In debug builds we guard against improper thread handling | 452 // In debug builds we guard against improper thread handling |
| 453 SkDEBUGCODE(mutable GrSingleOwner* fSingleOwner;) | 453 SkDEBUGCODE(mutable GrSingleOwner* fSingleOwner;) |
| 454 }; | 454 }; |
| 455 | 455 |
| 456 #endif | 456 #endif |
| OLD | NEW |