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

Unified Diff: include/core/SkBitmap.h

Issue 19335002: Production quality fast image up/downsampler (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: avoid using any #defines related to SSE by incorporating padding into the function pointer structure Created 7 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 side-by-side diff with in-line comments
Download patch
Index: include/core/SkBitmap.h
diff --git a/include/core/SkBitmap.h b/include/core/SkBitmap.h
index d5277c6c80c6b75b9b0f45785db07c17fe7f5d1a..28f3d5f0e6e3c9208f8a6677be4eb9ea24332d5b 100644
--- a/include/core/SkBitmap.h
+++ b/include/core/SkBitmap.h
@@ -22,6 +22,7 @@ class SkPaint;
class SkPixelRef;
class SkRegion;
class SkString;
+class SkConvolutionProcs;
reed1 2013/07/19 17:47:23 Why is this declared in this (public) header?
humper 2013/07/19 18:08:07 The bitmap proc state stores a pointer to the stru
class GrTexture;
@@ -702,19 +703,7 @@ private:
int extractMipLevel(SkBitmap* dst, SkFixed sx, SkFixed sy);
bool hasMipMap() const;
void freeMipMap();
-
- /** Make a scaled copy of this bitmap into the provided destination.
- * The caller is responsible for having set the width and height of the
- * provided destination bitmap, and also having allocated its pixel
- * memory.
- *
- * This function is temporary and for testing purposes only; it will
- * likely move once it has been properly plumbed into the bitmap
- * shader infrastructure.
- */
-
- void scale(SkBitmap *dst) const;
-
+
friend struct SkBitmapProcState;
};
« no previous file with comments | « gyp/core.gypi ('k') | src/core/SkBitmapFilter.h » ('j') | src/core/SkBitmapFilter.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698