2015-05-22 21:01:46 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2015 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GrContextOptions_DEFINED
|
|
|
|
#define GrContextOptions_DEFINED
|
|
|
|
|
|
|
|
#include "SkTypes.h"
|
|
|
|
|
|
|
|
struct GrContextOptions {
|
2015-05-27 20:23:23 +00:00
|
|
|
GrContextOptions()
|
|
|
|
: fDrawPathToCompressedTexture(false)
|
|
|
|
, fSuppressPrints(false)
|
2015-05-27 22:08:33 +00:00
|
|
|
, fMaxTextureSizeOverride(SK_MaxS32)
|
2015-11-02 19:36:52 +00:00
|
|
|
, fMaxTileSizeOverride(0)
|
2015-05-29 13:46:47 +00:00
|
|
|
, fSuppressDualSourceBlending(false)
|
2015-06-18 21:18:02 +00:00
|
|
|
, fGeometryBufferMapThreshold(-1)
|
2015-10-23 16:06:59 +00:00
|
|
|
, fUseDrawInsteadOfPartialRenderTargetWrite(false)
|
2015-11-04 12:23:53 +00:00
|
|
|
, fImmediateMode(false)
|
|
|
|
, fUseShaderSwizzling(false) {}
|
2015-05-22 21:01:46 +00:00
|
|
|
|
|
|
|
// EXPERIMENTAL
|
|
|
|
// May be removed in the future, or may become standard depending
|
|
|
|
// on the outcomes of a variety of internal tests.
|
|
|
|
bool fDrawPathToCompressedTexture;
|
2015-05-27 20:23:23 +00:00
|
|
|
|
2015-05-22 21:01:46 +00:00
|
|
|
// Suppress prints for the GrContext.
|
|
|
|
bool fSuppressPrints;
|
2015-05-27 20:23:23 +00:00
|
|
|
|
|
|
|
/** Overrides: These options override feature detection using backend API queries. These
|
|
|
|
overrides can only reduce the feature set or limits, never increase them beyond the
|
|
|
|
detected values. */
|
|
|
|
|
2015-05-27 22:08:33 +00:00
|
|
|
int fMaxTextureSizeOverride;
|
2015-11-02 19:36:52 +00:00
|
|
|
/** If non-zero, overrides the maximum size of a tile for sw-backed images and bitmaps rendered
|
|
|
|
by SkGpuDevice. */
|
|
|
|
int fMaxTileSizeOverride;
|
2015-05-27 22:08:33 +00:00
|
|
|
bool fSuppressDualSourceBlending;
|
2015-05-29 13:46:47 +00:00
|
|
|
|
2015-06-01 21:17:47 +00:00
|
|
|
/** the threshold in bytes above which we will use a buffer mapping API to map vertex and index
|
|
|
|
buffers to CPU memory in order to update them. A value of -1 means the GrContext should
|
|
|
|
deduce the optimal value for this platform. */
|
|
|
|
int fGeometryBufferMapThreshold;
|
2015-06-18 21:18:02 +00:00
|
|
|
|
|
|
|
/** some gpus have problems with partial writes of the rendertarget */
|
|
|
|
bool fUseDrawInsteadOfPartialRenderTargetWrite;
|
2015-10-23 16:06:59 +00:00
|
|
|
|
|
|
|
/** The GrContext operates in immedidate mode. It will issue all draws to the backend API
|
|
|
|
immediately. Intended to ease debugging. */
|
|
|
|
bool fImmediateMode;
|
2015-11-04 12:23:53 +00:00
|
|
|
|
|
|
|
/** Force us to do all swizzling manually in the shader and don't rely on extensions to do
|
|
|
|
swizzling. */
|
|
|
|
bool fUseShaderSwizzling;
|
2015-05-22 21:01:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|