5785e4a165
Change-Id: Ie7f231295c27010f53f09e9879aa7df74ab2d09b Reviewed-on: https://skia-review.googlesource.com/c/skia/+/212507 Auto-Submit: Ben Wagner <bungeman@google.com> Reviewed-by: Hal Canary <halcanary@skia.org> Commit-Queue: Ben Wagner <bungeman@google.com>
32 lines
746 B
C
32 lines
746 B
C
/*
|
|
* Copyright 2012 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkPaintDefaults_DEFINED
|
|
#define SkPaintDefaults_DEFINED
|
|
|
|
#include "include/core/SkFontTypes.h"
|
|
|
|
/**
|
|
* Any of these can be specified by the build system (or SkUserConfig.h)
|
|
* to change the default values for a SkPaint. This file should not be
|
|
* edited directly.
|
|
*/
|
|
|
|
#ifndef SkPaintDefaults_TextSize
|
|
#define SkPaintDefaults_TextSize SkIntToScalar(12)
|
|
#endif
|
|
|
|
#ifndef SkPaintDefaults_Hinting
|
|
#define SkPaintDefaults_Hinting SkFontHinting::kNormal
|
|
#endif
|
|
|
|
#ifndef SkPaintDefaults_MiterLimit
|
|
#define SkPaintDefaults_MiterLimit SkIntToScalar(4)
|
|
#endif
|
|
|
|
#endif
|