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

Side by Side Diff: gfx/skbitmap_operations.h

Issue 2967008: Add a function to scroll a platform canvas. This uses the platform scroll... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « gfx/gfx.gyp ('k') | 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 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef APP_GFX_SKBITMAP_OPERATIONS_H_ 5 #ifndef GFX_SKBITMAP_OPERATIONS_H_
6 #define APP_GFX_SKBITMAP_OPERATIONS_H_ 6 #define GFX_SKBITMAP_OPERATIONS_H_
7 7
8 #include "gfx/color_utils.h" 8 #include "gfx/color_utils.h"
9 #include "testing/gtest/include/gtest/gtest_prod.h" 9 #include "testing/gtest/include/gtest/gtest_prod.h"
10 10
11 class SkBitmap; 11 class SkBitmap;
12 12
13 class SkBitmapOperations { 13 class SkBitmapOperations {
14 public: 14 public:
15 // Create a bitmap that is an inverted image of the passed in image. 15 // Create a bitmap that is an inverted image of the passed in image.
16 // Each color becomes its inverse in the color wheel. So (255, 15, 0) becomes 16 // Each color becomes its inverse in the color wheel. So (255, 15, 0) becomes
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 // input size. The normal use of this is to downsample the bitmap "close" to 74 // input size. The normal use of this is to downsample the bitmap "close" to
75 // the final size, and then use traditional resampling on the result. 75 // the final size, and then use traditional resampling on the result.
76 // Because the bitmap will be closer to the final size, it will be faster, 76 // Because the bitmap will be closer to the final size, it will be faster,
77 // and linear interpolation will generally work well as a second step. 77 // and linear interpolation will generally work well as a second step.
78 static SkBitmap DownsampleByTwoUntilSize(const SkBitmap& bitmap, 78 static SkBitmap DownsampleByTwoUntilSize(const SkBitmap& bitmap,
79 int min_w, int min_h); 79 int min_w, int min_h);
80 80
81 // Makes a bitmap half has large in each direction by averaging groups of 81 // Makes a bitmap half has large in each direction by averaging groups of
82 // 4 pixels. This is one step in generating a mipmap. 82 // 4 pixels. This is one step in generating a mipmap.
83 static SkBitmap DownsampleByTwo(const SkBitmap& bitmap); 83 static SkBitmap DownsampleByTwo(const SkBitmap& bitmap);
84
84 private: 85 private:
85 SkBitmapOperations(); // Class for scoping only. 86 SkBitmapOperations(); // Class for scoping only.
86 87
87 FRIEND_TEST(SkBitmapOperationsTest, DownsampleByTwo); 88 FRIEND_TEST(SkBitmapOperationsTest, DownsampleByTwo);
88 FRIEND_TEST(SkBitmapOperationsTest, DownsampleByTwoSmall); 89 FRIEND_TEST(SkBitmapOperationsTest, DownsampleByTwoSmall);
89 }; 90 };
90 91
91 #endif // APP_GFX_SKBITMAP_OPERATIONS_H_ 92 #endif // GFX_SKBITMAP_OPERATIONS_H_
OLDNEW
« no previous file with comments | « gfx/gfx.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698