Home
last modified time | relevance | path

Searched defs:ContextOptions (Results 1 – 3 of 3) sorted by relevance

/external/skia/include/gpu/graphite/
DContextOptions.h15 struct SK_API ContextOptions { struct
16 ContextOptions() {} in ContextOptions() argument
23 bool fDisableDriverCorrectnessWorkarounds = false;
29 skgpu::ShaderErrorHandler* fShaderErrorHandler = nullptr;
36 bool fClientWillExternallySynchronizeAllThreads = false;
41 size_t fGlyphCacheTextureMaximumBytes = 2048 * 1024 * 4;
47 float fMinDistanceFieldFontSize = 18;
53 float fGlyphsAsPathsFontSize = 384;
55 float fGlyphsAsPathsFontSize = 256;
57 float fGlyphsAsPathsFontSize = 324;
[all …]
/external/armnn/third-party/doctest/
Ddoctest.h726 struct ContextOptions //!OCLINT too many fields struct
728 std::ostream* cout; // stdout stream - std::cout by default
729 std::ostream* cerr; // stderr stream - std::cerr by default
730 String binary_name; // the test binary name
732 const detail::TestCase* currentTest = nullptr;
735 String out; // output filename
736 String order_by; // how tests should be ordered
737 unsigned rand_seed; // the seed for rand ordering
739 unsigned first; // the first (matching) test to be executed
740 unsigned last; // the last (matching) test to be executed
[all …]
/external/tensorflow/tensorflow/go/
Dcontext.go29 type ContextOptions struct { struct
33 Config []byte
36 Async bool
41 func (o *ContextOptions) c() (*C.TFE_ContextOptions, error) {
79 func NewContext(options *ContextOptions) (*Context, error) {