| 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 GrContextOptions_DEFINED | 8 #ifndef GrContextOptions_DEFINED |
| 9 #define GrContextOptions_DEFINED | 9 #define GrContextOptions_DEFINED |
| 10 | 10 |
| 11 #include "SkTypes.h" | 11 #include "SkTypes.h" |
| 12 | 12 |
| 13 struct GrContextOptions { | 13 struct GrContextOptions { |
| 14 GrContextOptions() | 14 GrContextOptions() |
| 15 : fDrawPathToCompressedTexture(false) | 15 : fDrawPathToCompressedTexture(false) |
| 16 , fSuppressPrints(false) | 16 , fSuppressPrints(false) |
| 17 , fMaxTextureSizeOverride(SK_MaxS32) | 17 , fMaxTextureSizeOverride(SK_MaxS32) |
| 18 , fMaxTileSizeOverride(0) | 18 , fMaxTileSizeOverride(0) |
| 19 , fSuppressDualSourceBlending(false) | 19 , fSuppressDualSourceBlending(false) |
| 20 , fGeometryBufferMapThreshold(-1) | 20 , fGeometryBufferMapThreshold(-1) |
| 21 , fUseDrawInsteadOfPartialRenderTargetWrite(false) | 21 , fUseDrawInsteadOfPartialRenderTargetWrite(false) |
| 22 , fImmediateMode(false) | 22 , fImmediateMode(false) |
| 23 , fClipBatchToBounds(false) | 23 , fClipBatchToBounds(false) |
| 24 , fDrawBatchBounds(false) | 24 , fDrawBatchBounds(false) |
| 25 , fMaxBatchLookback(-1) | 25 , fMaxBatchLookback(-1) |
| 26 , fMaxBatchLookahead(-1) |
| 26 , fUseShaderSwizzling(false) {} | 27 , fUseShaderSwizzling(false) {} |
| 27 | 28 |
| 28 // EXPERIMENTAL | 29 // EXPERIMENTAL |
| 29 // May be removed in the future, or may become standard depending | 30 // May be removed in the future, or may become standard depending |
| 30 // on the outcomes of a variety of internal tests. | 31 // on the outcomes of a variety of internal tests. |
| 31 bool fDrawPathToCompressedTexture; | 32 bool fDrawPathToCompressedTexture; |
| 32 | 33 |
| 33 // Suppress prints for the GrContext. | 34 // Suppress prints for the GrContext. |
| 34 bool fSuppressPrints; | 35 bool fSuppressPrints; |
| 35 | 36 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 57 | 58 |
| 58 /** For debugging purposes turn each GrBatch's bounds into a clip rect. This
is used to | 59 /** For debugging purposes turn each GrBatch's bounds into a clip rect. This
is used to |
| 59 verify that the clip bounds are conservative. */ | 60 verify that the clip bounds are conservative. */ |
| 60 bool fClipBatchToBounds; | 61 bool fClipBatchToBounds; |
| 61 | 62 |
| 62 /** For debugging purposes draw a wireframe device bounds rect for each GrBa
tch. The wire | 63 /** For debugging purposes draw a wireframe device bounds rect for each GrBa
tch. The wire |
| 63 frame rect is draw before the GrBatch in order to visualize batches that
draw outside | 64 frame rect is draw before the GrBatch in order to visualize batches that
draw outside |
| 64 of their dev bounds. */ | 65 of their dev bounds. */ |
| 65 bool fDrawBatchBounds; | 66 bool fDrawBatchBounds; |
| 66 | 67 |
| 67 /** For debugging, override the default maximum look-back window for GrBatch
combining. */ | 68 /** For debugging, override the default maximum look-back or look-ahead wind
ow for GrBatch |
| 69 combining. */ |
| 68 int fMaxBatchLookback; | 70 int fMaxBatchLookback; |
| 71 int fMaxBatchLookahead; |
| 69 | 72 |
| 70 /** Force us to do all swizzling manually in the shader and don't rely on ex
tensions to do | 73 /** Force us to do all swizzling manually in the shader and don't rely on ex
tensions to do |
| 71 swizzling. */ | 74 swizzling. */ |
| 72 bool fUseShaderSwizzling; | 75 bool fUseShaderSwizzling; |
| 73 }; | 76 }; |
| 74 | 77 |
| 75 #endif | 78 #endif |
| OLD | NEW |