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

Side by Side Diff: src/gpu/GrDrawTarget.h

Issue 458383004: Make comment ASCII in GrDrawTarget.h (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2010 Google Inc. 2 * Copyright 2010 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef GrDrawTarget_DEFINED 8 #ifndef GrDrawTarget_DEFINED
9 #define GrDrawTarget_DEFINED 9 #define GrDrawTarget_DEFINED
10 10
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 323
324 /** 324 /**
325 * Draws many paths. It will respect the HW 325 * Draws many paths. It will respect the HW
326 * antialias flag on the draw state (if possible in the 3D API). 326 * antialias flag on the draw state (if possible in the 3D API).
327 * 327 *
328 * @param pathRange Source of paths to draw from 328 * @param pathRange Source of paths to draw from
329 * @param indices Array of indices into the the pathRange 329 * @param indices Array of indices into the the pathRange
330 * @param count Number of paths to draw (length of indices array) 330 * @param count Number of paths to draw (length of indices array)
331 * @param transforms Array of individual transforms, one for each path 331 * @param transforms Array of individual transforms, one for each path
332 * @param transformsType Type of transformations in the array. Array contai ns 332 * @param transformsType Type of transformations in the array. Array contai ns
333 PathTransformSize(transformsType) × count elements 333 PathTransformSize(transformsType) * count elements
334 * @param fill Fill type for drawing all the paths 334 * @param fill Fill type for drawing all the paths
335 */ 335 */
336 enum PathTransformType { 336 enum PathTransformType {
337 kNone_PathTransformType, //!< [] 337 kNone_PathTransformType, //!< []
338 kTranslateX_PathTransformType, //!< [kMTransX] 338 kTranslateX_PathTransformType, //!< [kMTransX]
339 kTranslateY_PathTransformType, //!< [kMTransY] 339 kTranslateY_PathTransformType, //!< [kMTransY]
340 kTranslate_PathTransformType, //!< [kMTransX, kMTransY] 340 kTranslate_PathTransformType, //!< [kMTransX, kMTransY]
341 kAffine_PathTransformType, //!< [kMScaleX, kMSkewX, kMTransX, kMSke wY, kMScaleY, kMTransY] 341 kAffine_PathTransformType, //!< [kMScaleX, kMSkewX, kMTransX, kMSke wY, kMScaleY, kMTransY]
342 342
343 kLast_PathTransformType = kAffine_PathTransformType 343 kLast_PathTransformType = kAffine_PathTransformType
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
953 GrContext* fContext; 953 GrContext* fContext;
954 // To keep track that we always have at least as many debug marker adds as r emoves 954 // To keep track that we always have at least as many debug marker adds as r emoves
955 int fGpuTraceMar kerCount; 955 int fGpuTraceMar kerCount;
956 GrTraceMarkerSet fActiveTrace Markers; 956 GrTraceMarkerSet fActiveTrace Markers;
957 GrTraceMarkerSet fStoredTrace Markers; 957 GrTraceMarkerSet fStoredTrace Markers;
958 958
959 typedef SkRefCnt INHERITED; 959 typedef SkRefCnt INHERITED;
960 }; 960 };
961 961
962 #endif 962 #endif
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698