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

Unified Diff: include/core/SkSurface.h

Issue 1643873002: allow the caller to specified raster-surface rowbytes (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | src/image/SkSurface_Raster.cpp » ('j') | src/image/SkSurface_Raster.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkSurface.h
diff --git a/include/core/SkSurface.h b/include/core/SkSurface.h
index 57527ed33afa1640c44755737f48cd514fb913d5..19b03fc67d4ab3704122f8594ae2727c738790fe 100644
--- a/include/core/SkSurface.h
+++ b/include/core/SkSurface.h
@@ -61,12 +61,17 @@ public:
void* context, const SkSurfaceProps* = NULL);
/**
- * Return a new surface, with the memory for the pixels automatically
- * allocated.
+ * Return a new surface, with the memory for the pixels automatically allocated, but respecting
+ * the specified rowBytes. If rowBytes==0, then a default value will be chosen.
*
* If the requested surface cannot be created, or the request is not a
* supported configuration, NULL will be returned.
*/
+ static SkSurface* NewRaster(const SkImageInfo&, size_t rowBytes, const SkSurfaceProps*);
+
+ /**
+ * Allocate a new surface, automatically computing the rowBytes.
+ */
static SkSurface* NewRaster(const SkImageInfo&, const SkSurfaceProps* = NULL);
/**
« no previous file with comments | « no previous file | src/image/SkSurface_Raster.cpp » ('j') | src/image/SkSurface_Raster.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698