diff options
author | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-23 15:01:06 +0000 |
---|---|---|
committer | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-23 15:01:06 +0000 |
commit | 44f4f3120bfb6334b491da1876f3bc798104546a (patch) | |
tree | ec4f417eee9ec0eee14a8ca15eff62a4ee84e5f9 /ppapi/cpp/paint_manager.h | |
parent | 10d8ea6d242a2c8de51c4e90ca7f3846aeac0bf7 (diff) | |
download | chromium_src-44f4f3120bfb6334b491da1876f3bc798104546a.zip chromium_src-44f4f3120bfb6334b491da1876f3bc798104546a.tar.gz chromium_src-44f4f3120bfb6334b491da1876f3bc798104546a.tar.bz2 |
Fixed references such that all begin "Refer to xyz for further information."
Doxygen will create links for xyz (don't need @see).
Review URL: http://codereview.chromium.org/7711014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97859 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp/paint_manager.h')
-rw-r--r-- | ppapi/cpp/paint_manager.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ppapi/cpp/paint_manager.h b/ppapi/cpp/paint_manager.h index e86dc92..809946b 100644 --- a/ppapi/cpp/paint_manager.h +++ b/ppapi/cpp/paint_manager.h @@ -180,11 +180,12 @@ class PaintManager { } /// Setter function for setting the maximum number of paint rects. If we - /// exceed this limit, then we'll start combining paint rects (see - /// CombinePaintRects(). This limiting can be important since there is - /// typically some overhead in deciding what to paint. If your module is fast - /// at doing these computations, raise this threshold, if your module is - /// slow, lower it (probably requires some tuning to find the right value). + /// exceed this limit, then we'll start combining paint rects (refer to + /// CombinePaintRects() for further information). This limiting can be + /// important since there is typically some overhead in deciding what to + /// paint. If your module is fast at doing these computations, raise this + /// threshold, if your module is slow, lower it (probably requires some + /// tuning to find the right value). /// /// @param[in] max_rects The maximum number of paint rects. void set_max_paint_rects(size_t max_rects) { |