michael@0: /* michael@0: * Copyright 2012 Google Inc. michael@0: * michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. michael@0: */ michael@0: michael@0: #ifndef SkPaintDefaults_DEFINED michael@0: #define SkPaintDefaults_DEFINED michael@0: michael@0: #include "SkPaint.h" michael@0: michael@0: /** michael@0: * Any of these can be specified by the build system (or SkUserConfig.h) michael@0: * to change the default values for a SkPaint. This file should not be michael@0: * edited directly. michael@0: */ michael@0: michael@0: #ifndef SkPaintDefaults_Flags michael@0: #define SkPaintDefaults_Flags 0 michael@0: #endif michael@0: michael@0: #ifndef SkPaintDefaults_TextSize michael@0: #define SkPaintDefaults_TextSize SkIntToScalar(12) michael@0: #endif michael@0: michael@0: #ifndef SkPaintDefaults_Hinting michael@0: #define SkPaintDefaults_Hinting SkPaint::kNormal_Hinting michael@0: #endif michael@0: michael@0: #ifndef SkPaintDefaults_MiterLimit michael@0: #define SkPaintDefaults_MiterLimit SkIntToScalar(4) michael@0: #endif michael@0: michael@0: #endif