Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(623)

Side by Side Diff: include/gpu/GrConfig.h

Issue 41213003: Hook in rough distance field support for fonts (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Minor fixes for GrDistanceFieldTextContext. Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2010 Google Inc. 3 * Copyright 2010 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 10
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 #endif 234 #endif
235 235
236 /** 236 /**
237 * GR_STROKE_PATH_RENDERING controls whether or not the GrStrokePathRenderer can be selected 237 * GR_STROKE_PATH_RENDERING controls whether or not the GrStrokePathRenderer can be selected
238 * as a path renderer. GrStrokePathRenderer is currently an experimental path re nderer. 238 * as a path renderer. GrStrokePathRenderer is currently an experimental path re nderer.
239 */ 239 */
240 #if !defined(GR_STROKE_PATH_RENDERING) 240 #if !defined(GR_STROKE_PATH_RENDERING)
241 #define GR_STROKE_PATH_RENDERING 0 241 #define GR_STROKE_PATH_RENDERING 0
242 #endif 242 #endif
243 243
244 /**
245 * GR_DISTANCEFIELD_FONTS controls whether we use distance fields to represent f ont data.
246 */
247 #if !defined(GR_DISTANCEFIELD_FONTS)
248 #define GR_DISTANCEFIELD_FONTS 0
244 #endif 249 #endif
250
251 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698