Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1 | #Topic Surface |
Cary Clark | 137b874 | 2018-05-30 09:21:49 -0400 | [diff] [blame] | 2 | #Alias Surface_Reference ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 3 | |
| 4 | #Class SkSurface |
| 5 | |
| 6 | SkSurface is responsible for managing the pixels that a canvas draws into. The pixels can be |
| 7 | allocated either in CPU memory (a raster surface) or on the GPU (a GrRenderTarget surface). |
| 8 | SkSurface takes care of allocating a SkCanvas that will draw into the surface. Call |
| 9 | surface->getCanvas() to use that canvas (but don't delete it, it is owned by the surface). |
| 10 | SkSurface always has non-zero dimensions. If there is a request for a new surface, and either |
| 11 | of the requested dimensions are zero, then nullptr will be returned. |
| 12 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 13 | #Subtopic Overview |
| 14 | #Populate |
| 15 | ## |
| 16 | |
| 17 | #Subtopic Constant |
| 18 | #Populate |
| 19 | ## |
| 20 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 21 | #Subtopic Related_Function |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 22 | #Populate |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 23 | ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 24 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 25 | #Subtopic Member_Function |
Cary Clark | 08895c4 | 2018-02-01 09:37:32 -0500 | [diff] [blame] | 26 | #Populate |
| 27 | ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 28 | |
| 29 | # ------------------------------------------------------------------------------ |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 30 | #Subtopic Constructor |
| 31 | #Populate |
| 32 | ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 33 | |
| 34 | #Method static sk_sp<SkSurface> MakeRasterDirect(const SkImageInfo& imageInfo, void* pixels, |
| 35 | size_t rowBytes, |
| 36 | const SkSurfaceProps* surfaceProps = nullptr) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 37 | #In Constructor |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 38 | #Line # creates Surface from SkImageInfo and Pixel_Storage ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 39 | |
| 40 | Allocates raster Surface. Canvas returned by Surface draws directly into pixels. |
| 41 | |
| 42 | Surface is returned if all parameters are valid. |
| 43 | Valid parameters include: |
| 44 | info dimensions are greater than zero; |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 45 | info contains Color_Type and Alpha_Type supported by Raster_Surface; |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 46 | pixels is not nullptr; |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 47 | rowBytes is large enough to contain info width pixels of Color_Type. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 48 | |
| 49 | Pixel buffer size should be info height times computed rowBytes. |
| 50 | Pixels are not initialized. |
| 51 | To access pixels after drawing, call flush() or peekPixels. |
| 52 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 53 | #Param imageInfo width, height, Color_Type, Alpha_Type, Color_Space, |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 54 | of Raster_Surface; width and height must be greater than zero |
| 55 | ## |
| 56 | #Param pixels pointer to destination pixels buffer ## |
| 57 | #Param rowBytes interval from one Surface row to the next ## |
| 58 | #Param surfaceProps LCD striping orientation and setting for device independent fonts; |
| 59 | may be nullptr |
| 60 | ## |
| 61 | |
| 62 | #Return Surface if all parameters are valid; otherwise, nullptr ## |
| 63 | |
| 64 | #Example |
| 65 | void draw(SkCanvas* ) { |
| 66 | SkImageInfo info = SkImageInfo::MakeN32Premul(3, 3); |
| 67 | const size_t size = info.computeMinByteSize(); |
| 68 | SkAutoTMalloc<SkPMColor> storage(size); |
| 69 | SkPMColor* pixels = storage.get(); |
| 70 | sk_sp<SkSurface> surface(SkSurface::MakeRasterDirect(info, pixels, info.minRowBytes())); |
| 71 | SkCanvas* canvas = surface->getCanvas(); |
| 72 | canvas->clear(SK_ColorWHITE); |
| 73 | SkPMColor pmWhite = pixels[0]; |
| 74 | SkPaint paint; |
| 75 | canvas->drawPoint(1, 1, paint); |
| 76 | canvas->flush(); // ensure that point was drawn |
| 77 | for (int y = 0; y < info.height(); ++y) { |
| 78 | for (int x = 0; x < info.width(); ++x) { |
| 79 | SkDebugf("%c", *pixels++ == pmWhite ? '-' : 'x'); |
| 80 | } |
| 81 | SkDebugf("\n"); |
| 82 | } |
| 83 | } |
| 84 | #StdOut |
| 85 | --- |
| 86 | -x- |
| 87 | --- |
| 88 | ## |
| 89 | ## |
| 90 | |
| 91 | #SeeAlso MakeRasterDirectReleaseProc MakeRaster MakeRasterN32Premul SkCanvas::MakeRasterDirect |
| 92 | |
| 93 | #Method ## |
| 94 | |
| 95 | # ------------------------------------------------------------------------------ |
| 96 | |
| 97 | #Method static sk_sp<SkSurface> MakeRasterDirectReleaseProc(const SkImageInfo& imageInfo, void* pixels, |
| 98 | size_t rowBytes, |
| 99 | void (*releaseProc)(void* pixels, void* context), |
| 100 | void* context, const SkSurfaceProps* surfaceProps = nullptr) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 101 | #In Constructor |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 102 | #Line # creates Surface from SkImageInfo and Pixel_Storage ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 103 | |
| 104 | Allocates raster Surface. Canvas returned by Surface draws directly into pixels. |
| 105 | releaseProc is called with pixels and context when Surface is deleted. |
| 106 | |
| 107 | Surface is returned if all parameters are valid. |
| 108 | Valid parameters include: |
| 109 | info dimensions are greater than zero; |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 110 | info contains Color_Type and Alpha_Type supported by Raster_Surface; |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 111 | pixels is not nullptr; |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 112 | rowBytes is large enough to contain info width pixels of Color_Type. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 113 | |
| 114 | Pixel buffer size should be info height times computed rowBytes. |
| 115 | Pixels are not initialized. |
| 116 | To access pixels after drawing, call flush() or peekPixels. |
| 117 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 118 | #Param imageInfo width, height, Color_Type, Alpha_Type, Color_Space, |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 119 | of Raster_Surface; width and height must be greater than zero |
| 120 | ## |
| 121 | #Param pixels pointer to destination pixels buffer ## |
| 122 | #Param rowBytes interval from one Surface row to the next ## |
| 123 | #Param releaseProc called when Surface is deleted; may be nullptr ## |
| 124 | #Param context passed to releaseProc; may be nullptr ## |
| 125 | #Param surfaceProps LCD striping orientation and setting for device independent fonts; |
| 126 | may be nullptr |
| 127 | ## |
| 128 | |
| 129 | #Return Surface if all parameters are valid; otherwise, nullptr ## |
| 130 | |
| 131 | #Example |
| 132 | #Function |
| 133 | static void release_direct_surface_storage(void* pixels, void* context) { |
| 134 | if (pixels == context) { |
| 135 | SkDebugf("expected release context\n"); |
| 136 | } |
| 137 | sk_free(pixels); |
| 138 | } |
| 139 | |
| 140 | ## |
| 141 | void draw(SkCanvas* ) { |
| 142 | SkImageInfo info = SkImageInfo::MakeN32Premul(3, 3); |
| 143 | const size_t rowBytes = info.minRowBytes(); |
| 144 | void* pixels = sk_malloc_throw(info.computeByteSize(rowBytes)); |
| 145 | sk_sp<SkSurface> surface(SkSurface::MakeRasterDirectReleaseProc(info, pixels, rowBytes, |
| 146 | release_direct_surface_storage, pixels)); |
| 147 | SkCanvas* canvas = surface->getCanvas(); |
| 148 | canvas->clear(SK_ColorWHITE); |
| 149 | SkPMColor* colorPtr = (SkPMColor*) pixels; |
| 150 | SkPMColor pmWhite = colorPtr[0]; |
| 151 | SkPaint paint; |
| 152 | canvas->drawPoint(1, 1, paint); |
| 153 | canvas->flush(); // ensure that point was drawn |
| 154 | for (int y = 0; y < info.height(); ++y) { |
| 155 | for (int x = 0; x < info.width(); ++x) { |
| 156 | SkDebugf("%c", *colorPtr++ == pmWhite ? '-' : 'x'); |
| 157 | } |
| 158 | SkDebugf("\n"); |
| 159 | } |
| 160 | } |
| 161 | #StdOut |
| 162 | --- |
| 163 | -x- |
| 164 | --- |
| 165 | expected release context |
| 166 | ## |
| 167 | ## |
| 168 | |
| 169 | #SeeAlso MakeRasterDirect MakeRasterN32Premul MakeRaster |
| 170 | |
| 171 | #Method ## |
| 172 | |
| 173 | # ------------------------------------------------------------------------------ |
| 174 | |
| 175 | #Method static sk_sp<SkSurface> MakeRaster(const SkImageInfo& imageInfo, size_t rowBytes, |
| 176 | const SkSurfaceProps* surfaceProps) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 177 | #In Constructor |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 178 | #Line # creates Surface from SkImageInfo ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 179 | |
| 180 | Allocates raster Surface. Canvas returned by Surface draws directly into pixels. |
| 181 | Allocates and zeroes pixel memory. Pixel memory size is imageInfo.height() times |
| 182 | rowBytes, or times imageInfo.minRowBytes() if rowBytes is zero. |
| 183 | Pixel memory is deleted when Surface is deleted. |
| 184 | |
| 185 | Surface is returned if all parameters are valid. |
| 186 | Valid parameters include: |
| 187 | info dimensions are greater than zero; |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 188 | info contains Color_Type and Alpha_Type supported by Raster_Surface; |
| 189 | rowBytes is large enough to contain info width pixels of Color_Type, or is zero. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 190 | |
| 191 | If rowBytes is not zero, subsequent images returned by makeImageSnapshot |
| 192 | have the same rowBytes. |
| 193 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 194 | #Param imageInfo width, height, Color_Type, Alpha_Type, Color_Space, |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 195 | of Raster_Surface; width and height must be greater than zero |
| 196 | ## |
| 197 | #Param rowBytes interval from one Surface row to the next; may be zero ## |
| 198 | #Param surfaceProps LCD striping orientation and setting for device independent fonts; |
| 199 | may be nullptr |
| 200 | ## |
| 201 | |
| 202 | #Return Surface if all parameters are valid; otherwise, nullptr ## |
| 203 | |
| 204 | #Example |
| 205 | void draw(SkCanvas* ) { |
| 206 | SkImageInfo info = SkImageInfo::MakeN32Premul(3, 3); |
| 207 | const size_t rowBytes = 64; |
| 208 | sk_sp<SkSurface> surface(SkSurface::MakeRaster(info, rowBytes, nullptr)); |
| 209 | SkCanvas* canvas = surface->getCanvas(); |
| 210 | canvas->clear(SK_ColorWHITE); |
| 211 | SkPixmap pixmap; |
| 212 | if (surface->peekPixels(&pixmap)) { |
| 213 | const uint32_t* colorPtr = pixmap.addr32(); |
| 214 | SkPMColor pmWhite = colorPtr[0]; |
| 215 | SkPaint paint; |
| 216 | canvas->drawPoint(1, 1, paint); |
| 217 | canvas->flush(); // ensure that point was drawn |
| 218 | for (int y = 0; y < info.height(); ++y) { |
| 219 | for (int x = 0; x < info.width(); ++x) { |
| 220 | SkDebugf("%c", colorPtr[x] == pmWhite ? '-' : 'x'); |
| 221 | } |
| 222 | colorPtr += rowBytes / sizeof(colorPtr[0]); |
| 223 | SkDebugf("\n"); |
| 224 | } |
| 225 | } |
| 226 | } |
| 227 | #StdOut |
| 228 | --- |
| 229 | -x- |
| 230 | --- |
| 231 | ## |
| 232 | ## |
| 233 | |
| 234 | #SeeAlso MakeRasterDirect MakeRasterN32Premul MakeRasterDirectReleaseProc |
| 235 | |
| 236 | #Method ## |
| 237 | |
| 238 | # ------------------------------------------------------------------------------ |
| 239 | |
| 240 | #Method static sk_sp<SkSurface> MakeRaster(const SkImageInfo& imageInfo, |
| 241 | const SkSurfaceProps* props = nullptr) |
| 242 | |
| 243 | Allocates raster Surface. Canvas returned by Surface draws directly into pixels. |
| 244 | Allocates and zeroes pixel memory. Pixel memory size is imageInfo.height() times |
| 245 | imageInfo.minRowBytes(). |
| 246 | Pixel memory is deleted when Surface is deleted. |
| 247 | |
| 248 | Surface is returned if all parameters are valid. |
| 249 | Valid parameters include: |
| 250 | info dimensions are greater than zero; |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 251 | info contains Color_Type and Alpha_Type supported by Raster_Surface. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 252 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 253 | #Param imageInfo width, height, Color_Type, Alpha_Type, Color_Space, |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 254 | of Raster_Surface; width and height must be greater than zero |
| 255 | ## |
| 256 | #Param props LCD striping orientation and setting for device independent fonts; |
| 257 | may be nullptr |
| 258 | ## |
| 259 | |
| 260 | #Return Surface if all parameters are valid; otherwise, nullptr ## |
| 261 | |
| 262 | #Example |
| 263 | void draw(SkCanvas* ) { |
| 264 | SkImageInfo info = SkImageInfo::MakeN32Premul(3, 3); |
| 265 | sk_sp<SkSurface> surface(SkSurface::MakeRaster(info)); |
| 266 | SkCanvas* canvas = surface->getCanvas(); |
| 267 | canvas->clear(SK_ColorWHITE); |
| 268 | SkPixmap pixmap; |
| 269 | if (surface->peekPixels(&pixmap)) { |
| 270 | const uint32_t* colorPtr = pixmap.addr32(); |
| 271 | SkPMColor pmWhite = colorPtr[0]; |
| 272 | SkPaint paint; |
| 273 | canvas->drawPoint(1, 1, paint); |
| 274 | canvas->flush(); // ensure that point was drawn |
| 275 | for (int y = 0; y < info.height(); ++y) { |
| 276 | for (int x = 0; x < info.width(); ++x) { |
| 277 | SkDebugf("%c", colorPtr[x] == pmWhite ? '-' : 'x'); |
| 278 | } |
| 279 | colorPtr += info.width(); |
| 280 | SkDebugf("\n"); |
| 281 | } |
| 282 | } |
| 283 | } |
| 284 | ## |
| 285 | |
| 286 | #SeeAlso MakeRasterDirect MakeRasterN32Premul MakeRasterDirectReleaseProc |
| 287 | |
| 288 | #Method ## |
| 289 | |
| 290 | # ------------------------------------------------------------------------------ |
| 291 | |
| 292 | #Method static sk_sp<SkSurface> MakeRasterN32Premul(int width, int height, |
| 293 | const SkSurfaceProps* surfaceProps = nullptr) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 294 | #In Constructor |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 295 | #Line # creates Surface from width, height matching output ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 296 | |
| 297 | Allocates raster Surface. Canvas returned by Surface draws directly into pixels. |
| 298 | Allocates and zeroes pixel memory. Pixel memory size is height times width times |
| 299 | four. Pixel memory is deleted when Surface is deleted. |
| 300 | |
| 301 | Internally, sets Image_Info to width, height, Native_Color_Type, and |
| 302 | kPremul_SkAlphaType. |
| 303 | |
| 304 | Surface is returned if width and height are greater than zero. |
| 305 | |
| 306 | Use to create Surface that matches SkPMColor, the native pixel arrangement on |
| 307 | the platform. Surface drawn to output device skips converting its pixel format. |
| 308 | |
| 309 | #Param width pixel column count; must be greater than zero ## |
| 310 | #Param height pixel row count; must be greater than zero ## |
| 311 | #Param surfaceProps LCD striping orientation and setting for device independent |
| 312 | fonts; may be nullptr |
| 313 | ## |
| 314 | |
| 315 | #Return Surface if all parameters are valid; otherwise, nullptr ## |
| 316 | |
| 317 | #Example |
| 318 | void draw(SkCanvas* ) { |
| 319 | sk_sp<SkSurface> surface(SkSurface::MakeRasterN32Premul(3, 3)); |
| 320 | SkCanvas* canvas = surface->getCanvas(); |
| 321 | canvas->clear(SK_ColorWHITE); |
| 322 | SkPixmap pixmap; |
| 323 | if (surface->peekPixels(&pixmap)) { |
| 324 | const uint32_t* colorPtr = pixmap.addr32(); |
| 325 | SkPMColor pmWhite = colorPtr[0]; |
| 326 | SkPaint paint; |
| 327 | canvas->drawPoint(1, 1, paint); |
| 328 | canvas->flush(); // ensure that point was drawn |
| 329 | for (int y = 0; y < surface->height(); ++y) { |
| 330 | for (int x = 0; x < surface->width(); ++x) { |
| 331 | SkDebugf("%c", colorPtr[x] == pmWhite ? '-' : 'x'); |
| 332 | } |
| 333 | colorPtr += surface->width(); |
| 334 | SkDebugf("\n"); |
| 335 | } |
| 336 | } |
| 337 | } |
| 338 | #StdOut |
| 339 | --- |
| 340 | -x- |
| 341 | --- |
| 342 | ## |
| 343 | ## |
| 344 | |
| 345 | #SeeAlso MakeRasterDirect MakeRasterN32Premul MakeRasterDirectReleaseProc |
| 346 | |
| 347 | #Method ## |
| 348 | |
| 349 | # ------------------------------------------------------------------------------ |
| 350 | |
| 351 | #Method static sk_sp<SkSurface> MakeFromBackendTexture(GrContext* context, |
| 352 | const GrBackendTexture& backendTexture, |
| 353 | GrSurfaceOrigin origin, int sampleCnt, |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 354 | SkColorType colorType, |
| 355 | sk_sp<SkColorSpace> colorSpace, |
| 356 | const SkSurfaceProps* surfaceProps) |
Cary Clark | 06c20f3 | 2018-03-20 15:53:27 -0400 | [diff] [blame] | 357 | #In Constructor |
| 358 | #Line # creates Surface from GPU texture ## |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 359 | |
| 360 | Wraps a GPU-backed texture into Surface. Caller must ensure the texture is |
| 361 | valid for the lifetime of returned Surface. If sampleCnt greater than zero, |
| 362 | creates an intermediate MSAA Surface which is used for drawing backendTexture. |
| 363 | |
| 364 | Surface is returned if all parameters are valid. backendTexture is valid if |
| 365 | its pixel configuration agrees with colorSpace and context; for instance, if |
| 366 | backendTexture has an sRGB configuration, then context must support sRGB, |
| 367 | and colorSpace must be present. Further, backendTexture width and height must |
| 368 | not exceed context capabilities, and the context must be able to support |
| 369 | back-end textures. |
| 370 | |
| 371 | If SK_SUPPORT_GPU is defined as zero, has no effect and returns nullptr. |
| 372 | |
| 373 | #Param context GPU_Context ## |
| 374 | #Param backendTexture texture residing on GPU ## |
| 375 | #Param origin one of: kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin ## |
| 376 | #Param sampleCnt samples per pixel, or 0 to disable full scene anti-aliasing ## |
Cary Clark | 1a8d762 | 2018-03-05 13:26:16 -0500 | [diff] [blame] | 377 | #Param colorType one of: #list_of_color_types# |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 378 | ## |
Cary Clark | 06c20f3 | 2018-03-20 15:53:27 -0400 | [diff] [blame] | 379 | #Param colorSpace range of colors; may be nullptr ## |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 380 | #Param surfaceProps LCD striping orientation and setting for device independent |
| 381 | fonts; may be nullptr |
| 382 | ## |
| 383 | |
| 384 | #Return Surface if all parameters are valid; otherwise, nullptr ## |
| 385 | |
| 386 | #Example |
Cary Clark | 06c20f3 | 2018-03-20 15:53:27 -0400 | [diff] [blame] | 387 | #Platform gpu cpu |
| 388 | #Image 3 |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 389 | SkPaint paint; |
| 390 | paint.setTextSize(32); |
| 391 | GrContext* context = canvas->getGrContext(); |
| 392 | if (!context) { |
| 393 | canvas->drawString("GPU only!", 20, 40, paint); |
| 394 | return; |
| 395 | } |
| 396 | sk_sp<SkSurface> gpuSurface = SkSurface::MakeFromBackendTexture(context, |
Cary Clark | 06c20f3 | 2018-03-20 15:53:27 -0400 | [diff] [blame] | 397 | backEndTexture, kTopLeft_GrSurfaceOrigin, 0, |
| 398 | kRGBA_8888_SkColorType, nullptr, nullptr); |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 399 | auto surfaceCanvas = gpuSurface->getCanvas(); |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 400 | surfaceCanvas->drawString("GPU rocks!", 20, 40, paint); |
| 401 | sk_sp<SkImage> image(gpuSurface->makeImageSnapshot()); |
| 402 | canvas->drawImage(image, 0, 0); |
| 403 | ## |
| 404 | |
| 405 | #SeeAlso GrBackendTexture MakeFromBackendRenderTarget MakeRenderTarget |
| 406 | |
| 407 | #Method ## |
| 408 | |
| 409 | # ------------------------------------------------------------------------------ |
| 410 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 411 | #Method static sk_sp<SkSurface> MakeFromBackendRenderTarget(GrContext* context, |
| 412 | const GrBackendRenderTarget& backendRenderTarget, |
| 413 | GrSurfaceOrigin origin, |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 414 | SkColorType colorType, |
| 415 | sk_sp<SkColorSpace> colorSpace, |
| 416 | const SkSurfaceProps* surfaceProps) |
Cary Clark | 5ab52f6 | 2018-04-02 08:32:23 -0400 | [diff] [blame] | 417 | #In Constructor |
| 418 | #Line # creates Surface from GPU render target ## |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 419 | |
Cary Clark | 06c20f3 | 2018-03-20 15:53:27 -0400 | [diff] [blame] | 420 | Wraps a GPU-backed buffer into Surface. Caller must ensure backendRenderTarget |
| 421 | is valid for the lifetime of returned Surface. |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 422 | |
| 423 | Surface is returned if all parameters are valid. backendRenderTarget is valid if |
| 424 | its pixel configuration agrees with colorSpace and context; for instance, if |
| 425 | backendRenderTarget has an sRGB configuration, then context must support sRGB, |
| 426 | and colorSpace must be present. Further, backendRenderTarget width and height must |
| 427 | not exceed context capabilities, and the context must be able to support |
| 428 | back-end render targets. |
| 429 | |
| 430 | If SK_SUPPORT_GPU is defined as zero, has no effect and returns nullptr. |
| 431 | |
| 432 | #Param context GPU_Context ## |
| 433 | #Param backendRenderTarget GPU intermediate memory buffer ## |
| 434 | #Param origin one of: kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin ## |
Cary Clark | 1a8d762 | 2018-03-05 13:26:16 -0500 | [diff] [blame] | 435 | #Param colorType one of: #list_of_color_types# |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 436 | ## |
| 437 | #Param colorSpace range of colors ## |
| 438 | #Param surfaceProps LCD striping orientation and setting for device independent |
| 439 | fonts; may be nullptr |
| 440 | ## |
| 441 | |
| 442 | #Return Surface if all parameters are valid; otherwise, nullptr ## |
| 443 | |
| 444 | #Example |
| 445 | #ToDo remove !fiddle below once backEndTextureRenderTarget is available ## |
| 446 | #Platform !fiddle gpu |
| 447 | SkPaint paint; |
| 448 | paint.setTextSize(32); |
| 449 | GrContext* context = canvas->getGrContext(); |
| 450 | if (!context) { |
| 451 | canvas->drawString("GPU only!", 20, 40, paint); |
| 452 | return; |
| 453 | } |
| 454 | sk_sp<SkSurface> gpuSurface = SkSurface::MakeFromBackendRenderTarget(context, |
| 455 | backEndRenderTarget, kTopLeft_GrSurfaceOrigin, kRGBA_8888_SkColorType, |
| 456 | nullptr, nullptr); |
| 457 | auto surfaceCanvas = gpuSurface->getCanvas(); |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 458 | surfaceCanvas->drawString("GPU rocks!", 20, 40, paint); |
| 459 | sk_sp<SkImage> image(gpuSurface->makeImageSnapshot()); |
| 460 | canvas->drawImage(image, 0, 0); |
| 461 | ## |
| 462 | |
| 463 | #SeeAlso MakeFromBackendTexture MakeRenderTarget |
| 464 | |
| 465 | #Method ## |
| 466 | |
| 467 | # ------------------------------------------------------------------------------ |
| 468 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 469 | #Method static sk_sp<SkSurface> MakeFromBackendTextureAsRenderTarget(GrContext* context, |
| 470 | const GrBackendTexture& backendTexture, |
| 471 | GrSurfaceOrigin origin, |
| 472 | int sampleCnt, |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 473 | SkColorType colorType, |
| 474 | sk_sp<SkColorSpace> colorSpace, |
| 475 | const SkSurfaceProps* surfaceProps) |
Cary Clark | 06c20f3 | 2018-03-20 15:53:27 -0400 | [diff] [blame] | 476 | #In Constructor |
| 477 | #Line # creates Surface from GPU back-end render target ## |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 478 | |
Cary Clark | 06c20f3 | 2018-03-20 15:53:27 -0400 | [diff] [blame] | 479 | Wraps a GPU-backed texture into Surface. Caller must ensure backendTexture is |
| 480 | valid for the lifetime of returned Surface. If sampleCnt greater than zero, |
| 481 | creates an intermediate MSAA Surface which is used for drawing backendTexture. |
| 482 | |
| 483 | Surface is returned if all parameters are valid. backendTexture is valid if |
| 484 | its pixel configuration agrees with colorSpace and context; for instance, if |
| 485 | backendTexture has an sRGB configuration, then context must support sRGB, |
| 486 | and colorSpace must be present. Further, backendTexture width and height must |
| 487 | not exceed context capabilities. |
| 488 | |
| 489 | Returned Surface is available only for drawing into, and cannot generate an |
| 490 | Image. |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 491 | |
| 492 | If SK_SUPPORT_GPU is defined as zero, has no effect and returns nullptr. |
| 493 | |
| 494 | #Param context GPU_Context ## |
| 495 | #Param backendTexture texture residing on GPU ## |
| 496 | #Param origin one of: kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin ## |
| 497 | #Param sampleCnt samples per pixel, or 0 to disable full scene anti-aliasing ## |
Cary Clark | 1a8d762 | 2018-03-05 13:26:16 -0500 | [diff] [blame] | 498 | #Param colorType one of: #list_of_color_types# |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 499 | ## |
Cary Clark | 06c20f3 | 2018-03-20 15:53:27 -0400 | [diff] [blame] | 500 | #Param colorSpace range of colors; may be nullptr ## |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 501 | #Param surfaceProps LCD striping orientation and setting for device independent |
| 502 | fonts; may be nullptr |
| 503 | ## |
| 504 | |
| 505 | #Return Surface if all parameters are valid; otherwise, nullptr ## |
| 506 | |
| 507 | #Example |
Cary Clark | 06c20f3 | 2018-03-20 15:53:27 -0400 | [diff] [blame] | 508 | #ToDo example is bogus; gpuSurface should not make image ## |
| 509 | #Platform gpu |
| 510 | #Image 3 |
Brian Salomon | 49edccd | 2018-03-23 15:31:32 -0400 | [diff] [blame] | 511 | SkPaint paint; |
| 512 | paint.setTextSize(32); |
| 513 | GrContext* context = canvas->getGrContext(); |
| 514 | if (!context) { |
| 515 | canvas->drawString("GPU only!", 20, 40, paint); |
| 516 | return; |
| 517 | } |
| 518 | sk_sp<SkSurface> gpuSurface = SkSurface::MakeFromBackendTextureAsRenderTarget( |
| 519 | context, backEndTexture, kTopLeft_GrSurfaceOrigin, 0, |
| 520 | kRGBA_8888_SkColorType, nullptr, nullptr); |
| 521 | auto surfaceCanvas = gpuSurface->getCanvas(); |
| 522 | surfaceCanvas->drawString("GPU rocks!", 20, 40, paint); |
| 523 | sk_sp<SkImage> image(gpuSurface->makeImageSnapshot()); |
| 524 | canvas->drawImage(image, 0, 0); |
Cary Clark | f059e7c | 2017-12-20 14:53:21 -0500 | [diff] [blame] | 525 | ## |
| 526 | |
| 527 | #SeeAlso MakeFromBackendRenderTarget MakeRenderTarget |
| 528 | |
| 529 | #Method ## |
| 530 | |
| 531 | # ------------------------------------------------------------------------------ |
| 532 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 533 | #Method static sk_sp<SkSurface> MakeRenderTarget(GrContext* context, SkBudgeted budgeted, |
| 534 | const SkImageInfo& imageInfo, |
| 535 | int sampleCount, GrSurfaceOrigin surfaceOrigin, |
| 536 | const SkSurfaceProps* surfaceProps, |
| 537 | bool shouldCreateWithMips = false) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 538 | #In Constructor |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 539 | #Line # creates Surface pointing to new GPU memory buffer ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 540 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 541 | Returns Surface on GPU indicated by context. Allocates memory for |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 542 | pixels, based on the width, height, and Color_Type in ImageInfo. budgeted |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 543 | selects whether allocation for pixels is tracked by context. imageInfo |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 544 | describes the pixel format in Color_Type, and transparency in |
| 545 | Alpha_Type, and color matching in Color_Space. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 546 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 547 | sampleCount requests the number of samples per pixel. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 548 | Pass zero to disable Multi_Sample_Anti_Aliasing. The request is rounded |
| 549 | up to the next supported count, or rounded down if it is larger than the |
| 550 | maximum supported count. |
| 551 | |
| 552 | surfaceOrigin pins either the top-left or the bottom-left corner to the origin. |
| 553 | |
| 554 | shouldCreateWithMips hints that Image returned by makeImageSnapshot is Mip_Map. |
| 555 | |
| 556 | If SK_SUPPORT_GPU is defined as zero, has no effect and returns nullptr. |
| 557 | |
| 558 | #Param context GPU_Context ## |
| 559 | #Param budgeted one of: SkBudgeted::kNo, SkBudgeted::kYes ## |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 560 | #Param imageInfo width, height, Color_Type, Alpha_Type, Color_Space; |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 561 | width, or height, or both, may be zero |
| 562 | ## |
| 563 | #Param sampleCount samples per pixel, or 0 to disable full scene anti-aliasing ## |
| 564 | #Param surfaceOrigin one of: kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin ## |
| 565 | #Param surfaceProps LCD striping orientation and setting for device independent |
| 566 | fonts; may be nullptr |
| 567 | ## |
| 568 | #Param shouldCreateWithMips hint that Surface will host Mip_Map images ## |
| 569 | |
| 570 | #Return Surface if all parameters are valid; otherwise, nullptr ## |
| 571 | |
| 572 | #ToDo not sure that this example is relevant; surfaceOrigin doesn't appear to do anything ## |
| 573 | #Example |
| 574 | #Platform gpu |
| 575 | #Height 64 |
| 576 | SkPaint paint; |
| 577 | paint.setTextSize(32); |
| 578 | GrContext* context = canvas->getGrContext(); |
| 579 | if (!context) { |
| 580 | canvas->drawString("GPU only!", 20, 40, paint); |
| 581 | return; |
| 582 | } |
| 583 | SkImageInfo info = SkImageInfo::MakeN32(256, 64, kOpaque_SkAlphaType); |
| 584 | for (auto surfaceOrigin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin } ) { |
| 585 | auto gpuSurface(SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info, 0, |
| 586 | surfaceOrigin, nullptr)); |
| 587 | auto surfaceCanvas = gpuSurface->getCanvas(); |
| 588 | surfaceCanvas->clear(SK_ColorWHITE); |
| 589 | surfaceCanvas->drawString("GPU rocks!", 20, 40, paint); |
| 590 | sk_sp<SkImage> image(gpuSurface->makeImageSnapshot()); |
| 591 | canvas->drawImage(image, 0, 0); |
| 592 | canvas->translate(0, 128); |
| 593 | } |
| 594 | ## |
| 595 | |
| 596 | #SeeAlso MakeFromBackendRenderTarget MakeFromBackendTextureAsRenderTarget |
| 597 | |
| 598 | #Method ## |
| 599 | |
| 600 | # ------------------------------------------------------------------------------ |
| 601 | |
| 602 | #Method static sk_sp<SkSurface> MakeRenderTarget(GrContext* context, SkBudgeted budgeted, |
| 603 | const SkImageInfo& imageInfo, int sampleCount, |
| 604 | const SkSurfaceProps* props) |
| 605 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 606 | Returns Surface on GPU indicated by context. Allocates memory for |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 607 | pixels, based on the width, height, and Color_Type in ImageInfo. budgeted |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 608 | selects whether allocation for pixels is tracked by context. imageInfo |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 609 | describes the pixel format in Color_Type, and transparency in |
| 610 | Alpha_Type, and color matching in Color_Space. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 611 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 612 | sampleCount requests the number of samples per pixel. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 613 | Pass zero to disable Multi_Sample_Anti_Aliasing. The request is rounded |
| 614 | up to the next supported count, or rounded down if it is larger than the |
| 615 | maximum supported count. |
| 616 | |
| 617 | Surface bottom-left corner is pinned to the origin. |
| 618 | |
| 619 | #Param context GPU_Context ## |
| 620 | #Param budgeted one of: SkBudgeted::kNo, SkBudgeted::kYes ## |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 621 | #Param imageInfo width, height, Color_Type, Alpha_Type, Color_Space, |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 622 | of Raster_Surface; width, or height, or both, may be zero |
| 623 | ## |
| 624 | #Param sampleCount samples per pixel, or 0 to disable Multi_Sample_Anti_Aliasing ## |
| 625 | #Param props LCD striping orientation and setting for device independent |
| 626 | fonts; may be nullptr |
| 627 | ## |
| 628 | |
| 629 | #Return Surface if all parameters are valid; otherwise, nullptr ## |
| 630 | |
| 631 | #Example |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 632 | #Platform cpu gpu |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 633 | #Description |
| 634 | LCD text takes advantage of raster striping to improve resolution. Only one of |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 635 | the four combinations is correct, depending on whether monitor LCD striping is |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 636 | horizontal or vertical, and whether the order of the stripes is red blue green |
| 637 | or red green blue. |
| 638 | ## |
| 639 | void draw(SkCanvas* canvas) { |
| 640 | auto test_draw = [](SkCanvas* surfaceCanvas) -> void { |
| 641 | SkPaint paint; |
| 642 | paint.setAntiAlias(true); |
| 643 | paint.setLCDRenderText(true); |
| 644 | paint.setColor(0xFFBBBBBB); |
| 645 | surfaceCanvas->drawRect(SkRect::MakeWH(128, 64), paint); |
| 646 | paint.setColor(SK_ColorWHITE); |
| 647 | paint.setTextSize(32); |
| 648 | surfaceCanvas->drawString("Pest", 0, 25, paint); |
| 649 | }; |
| 650 | GrContext* context = canvas->getGrContext(); |
| 651 | SkImageInfo info = SkImageInfo::MakeN32(128, 64, kOpaque_SkAlphaType); |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 652 | int y = 0; |
| 653 | for (auto geometry : { kRGB_H_SkPixelGeometry, kBGR_H_SkPixelGeometry, |
| 654 | kRGB_V_SkPixelGeometry, kBGR_V_SkPixelGeometry } ) { |
| 655 | SkSurfaceProps props(0, geometry); |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 656 | sk_sp<SkSurface> surface = context ? SkSurface::MakeRenderTarget( |
| 657 | context, SkBudgeted::kNo, info, 0, &props) : SkSurface::MakeRaster(info, &props); |
| 658 | test_draw(surface->getCanvas()); |
| 659 | surface->draw(canvas, 0, y, nullptr); |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 660 | sk_sp<SkImage> image(surface->makeImageSnapshot()); |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 661 | SkAutoCanvasRestore acr(canvas, true); |
| 662 | canvas->scale(8, 8); |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 663 | canvas->drawImage(image, 12, y / 8); |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 664 | y += 64; |
| 665 | } |
| 666 | } |
| 667 | ## |
| 668 | |
| 669 | #SeeAlso MakeFromBackendRenderTarget MakeFromBackendTextureAsRenderTarget |
| 670 | |
| 671 | #Method ## |
| 672 | |
| 673 | # ------------------------------------------------------------------------------ |
| 674 | |
| 675 | #Method static sk_sp<SkSurface> MakeRenderTarget(GrContext* context, SkBudgeted budgeted, |
| 676 | const SkImageInfo& imageInfo) |
| 677 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 678 | Returns Surface on GPU indicated by context. Allocates memory for |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 679 | pixels, based on the width, height, and Color_Type in ImageInfo. budgeted |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 680 | selects whether allocation for pixels is tracked by context. imageInfo |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 681 | describes the pixel format in Color_Type, and transparency in |
| 682 | Alpha_Type, and color matching in Color_Space. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 683 | |
| 684 | Surface bottom-left corner is pinned to the origin. |
| 685 | |
| 686 | #Param context GPU_Context ## |
| 687 | #Param budgeted one of: SkBudgeted::kNo, SkBudgeted::kYes ## |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 688 | #Param imageInfo width, height, Color_Type, Alpha_Type, Color_Space, |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 689 | of Raster_Surface; width, or height, or both, may be zero |
| 690 | ## |
| 691 | |
| 692 | #Return Surface if all parameters are valid; otherwise, nullptr ## |
| 693 | |
| 694 | #Example |
| 695 | #Platform gpu |
| 696 | SkPaint paint; |
| 697 | paint.setTextSize(32); |
| 698 | GrContext* context = canvas->getGrContext(); |
| 699 | if (!context) { |
| 700 | canvas->drawString("GPU only!", 20, 40, paint); |
| 701 | return; |
| 702 | } |
| 703 | SkImageInfo info = SkImageInfo::MakeN32(256, 64, kOpaque_SkAlphaType); |
| 704 | auto gpuSurface(SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, info)); |
| 705 | auto surfaceCanvas = gpuSurface->getCanvas(); |
| 706 | surfaceCanvas->clear(SK_ColorWHITE); |
| 707 | surfaceCanvas->drawString("GPU rocks!", 20, 40, paint); |
| 708 | sk_sp<SkImage> image(gpuSurface->makeImageSnapshot()); |
| 709 | canvas->drawImage(image, 0, 0); |
| 710 | ## |
| 711 | |
| 712 | #SeeAlso MakeFromBackendRenderTarget MakeFromBackendTextureAsRenderTarget |
| 713 | |
| 714 | #Method ## |
| 715 | |
| 716 | # ------------------------------------------------------------------------------ |
| 717 | |
Robert Phillips | 6b6fcc7 | 2018-03-30 13:57:00 -0400 | [diff] [blame] | 718 | #Method static sk_sp<SkSurface> MakeRenderTarget(GrContext* context, |
| 719 | const SkSurfaceCharacterization& characterization, |
| 720 | SkBudgeted budgeted) |
| 721 | |
| 722 | Returns SkSurface on GPU indicated by context that is compatible with the provided |
| 723 | characterization. budgeted selects whether allocation for pixels is tracked by context. |
| 724 | |
Robert Phillips | 6b6fcc7 | 2018-03-30 13:57:00 -0400 | [diff] [blame] | 725 | #Param context GPU_Context ## |
| 726 | #Param characterization description of the desired SkSurface ## |
| 727 | #Param budgeted one of: SkBudgeted::kNo, SkBudgeted::kYes |
| 728 | ## |
| 729 | |
| 730 | #Return Surface if all parameters are valid; otherwise, nullptr ## |
| 731 | |
Cary Clark | 5ab52f6 | 2018-04-02 08:32:23 -0400 | [diff] [blame] | 732 | #NoExample |
| 733 | ## |
| 734 | |
Robert Phillips | 6b6fcc7 | 2018-03-30 13:57:00 -0400 | [diff] [blame] | 735 | #SeeAlso MakeFromBackendRenderTarget MakeFromBackendTextureAsRenderTarget |
| 736 | |
| 737 | #Method ## |
| 738 | |
| 739 | # ------------------------------------------------------------------------------ |
| 740 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 741 | #Method static sk_sp<SkSurface> MakeNull(int width, int height) |
| 742 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 743 | #In Constructor |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 744 | #Line # creates Surface without backing pixels ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 745 | Returns Surface without backing pixels. Drawing to Canvas returned from Surface |
| 746 | has no effect. Calling makeImageSnapshot() on returned Surface returns nullptr. |
| 747 | |
| 748 | #Param width one or greater ## |
| 749 | #Param height one or greater ## |
| 750 | |
| 751 | #Return Surface if width and height are positive; otherwise, nullptr ## |
| 752 | |
| 753 | #Example |
| 754 | SkDebugf("SkSurface::MakeNull(0, 0) %c= nullptr\n", SkSurface::MakeNull(0, 0) == nullptr ? |
| 755 | '=' : '!'); |
| 756 | const int w = 37; |
| 757 | const int h = 1000; |
| 758 | auto surf = SkSurface::MakeNull(w, h); |
| 759 | auto nullCanvas = surf->getCanvas(); |
| 760 | nullCanvas->drawPaint(SkPaint()); // does not crash, nothing draws |
| 761 | SkDebugf("surf->makeImageSnapshot() %c= nullptr\n", surf->makeImageSnapshot() == nullptr ? |
| 762 | '=' : '!'); |
| 763 | #StdOut |
| 764 | SkSurface::MakeNull(0, 0) == nullptr |
| 765 | surf->makeImageSnapshot() == nullptr |
| 766 | ## |
| 767 | ## |
| 768 | |
| 769 | #SeeAlso MakeRaster MakeRenderTarget |
| 770 | |
| 771 | #Method ## |
| 772 | |
| 773 | # ------------------------------------------------------------------------------ |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 774 | #Subtopic Property |
| 775 | #Populate |
| 776 | #Line # member values ## |
| 777 | ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 778 | |
| 779 | #Method int width() const |
| 780 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 781 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 782 | #Line # returns pixel column count ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 783 | Returns pixel count in each row; may be zero or greater. |
| 784 | |
| 785 | #Return number of pixel columns ## |
| 786 | |
| 787 | #Example |
| 788 | const int width = 37; |
| 789 | const int height = 1000; |
| 790 | auto surf = SkSurface::MakeNull(width, height); |
| 791 | auto nullCanvas = surf->getCanvas(); |
| 792 | SkDebugf("surface width=%d canvas width=%d\n", surf->width(), |
| 793 | nullCanvas->getBaseLayerSize().fWidth); |
| 794 | #StdOut |
| 795 | surface width=37 canvas width=37 |
| 796 | ## |
| 797 | ## |
| 798 | |
| 799 | #SeeAlso height() |
| 800 | |
| 801 | #Method ## |
| 802 | |
| 803 | # ------------------------------------------------------------------------------ |
| 804 | |
| 805 | #Method int height() const |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 806 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 807 | #Line # returns pixel row count ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 808 | Returns pixel row count; may be zero or greater. |
| 809 | |
| 810 | #Return number of pixel rows ## |
| 811 | |
| 812 | #Example |
| 813 | const int width = 37; |
| 814 | const int height = 1000; |
| 815 | auto surf = SkSurface::MakeNull(width, height); |
| 816 | auto nullCanvas = surf->getCanvas(); |
| 817 | SkDebugf("surface height=%d canvas height=%d\n", surf->height(), |
| 818 | nullCanvas->getBaseLayerSize().fHeight); |
| 819 | #StdOut |
| 820 | surface height=1000 canvas height=1000 |
| 821 | ## |
| 822 | ## |
| 823 | |
| 824 | #SeeAlso width() |
| 825 | |
| 826 | #Method ## |
| 827 | |
| 828 | # ------------------------------------------------------------------------------ |
| 829 | |
| 830 | #Method uint32_t generationID() |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 831 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 832 | #Line # returns unique ID ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 833 | Returns unique value identifying the content of Surface. Returned value changes |
| 834 | each time the content changes. Content is changed by drawing, or by calling |
| 835 | notifyContentWillChange. |
| 836 | |
| 837 | #Return unique content identifier ## |
| 838 | |
| 839 | #Example |
| 840 | auto surface = SkSurface::MakeRasterN32Premul(1, 1); |
| 841 | for (int i = 0; i < 3; ++i) { |
| 842 | SkDebugf("surface generationID: %d\n", surface->generationID()); |
| 843 | if (0 == i) { |
| 844 | surface->getCanvas()->drawColor(SK_ColorBLACK); |
| 845 | } else { |
| 846 | surface->notifyContentWillChange(SkSurface::kDiscard_ContentChangeMode); |
| 847 | } |
| 848 | } |
| 849 | #StdOut |
| 850 | surface generationID: 1 |
| 851 | surface generationID: 2 |
| 852 | surface generationID: 3 |
| 853 | ## |
| 854 | ## |
| 855 | |
| 856 | #SeeAlso notifyContentWillChange ContentChangeMode getCanvas |
| 857 | |
| 858 | #Method ## |
| 859 | |
| 860 | # ------------------------------------------------------------------------------ |
| 861 | |
| 862 | #Enum ContentChangeMode |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 863 | #Line # parameter options for notifyContentWillChange ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 864 | #Code |
| 865 | enum ContentChangeMode { |
| 866 | kDiscard_ContentChangeMode, |
| 867 | kRetain_ContentChangeMode, |
| 868 | }; |
| 869 | ## |
| 870 | |
| 871 | ContentChangeMode members are parameters to notifyContentWillChange. |
| 872 | |
| 873 | #Const kDiscard_ContentChangeMode |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 874 | #Line # discards surface on change ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 875 | Pass to notifyContentWillChange to discard surface contents when |
| 876 | the surface is cleared or overwritten. |
| 877 | ## |
| 878 | #Const kRetain_ContentChangeMode |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 879 | #Line # preserves surface on change ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 880 | Pass to notifyContentWillChange when to preserve surface contents. |
| 881 | If a snapshot has been generated, this copies the Surface contents. |
| 882 | ## |
| 883 | |
| 884 | #SeeAlso notifyContentWillChange generationID |
| 885 | |
| 886 | #Enum ## |
| 887 | |
| 888 | # ------------------------------------------------------------------------------ |
| 889 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 890 | #ToDo not crazy about misc catagory -- hopefully will become clear with time |
| 891 | ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 892 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 893 | #Subtopic Miscellaneous |
| 894 | #Populate |
| 895 | #Line # other functions ## |
| 896 | ## |
| 897 | |
| 898 | #Method void notifyContentWillChange(ContentChangeMode mode) |
| 899 | #In Miscellaneous |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 900 | #Line # notifies that contents will be changed outside of Skia ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 901 | Notifies that Surface contents will be changed by code outside of Skia. |
| 902 | Subsequent calls to generationID return a different value. |
| 903 | |
| 904 | mode is normally passed as kRetain_ContentChangeMode. |
| 905 | |
| 906 | #Private |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 907 | Can we deprecate this? |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 908 | ## |
| 909 | |
| 910 | #Param mode one of: kDiscard_ContentChangeMode, kRetain_ContentChangeMode ## |
| 911 | |
| 912 | #Example |
| 913 | auto surface = SkSurface::MakeRasterN32Premul(1, 1); |
| 914 | for (int i = 0; i < 3; ++i) { |
| 915 | SkDebugf("surface generationID: %d\n", surface->generationID()); |
| 916 | if (0 == i) { |
| 917 | surface->getCanvas()->drawColor(SK_ColorBLACK); |
| 918 | } else { |
| 919 | surface->notifyContentWillChange(SkSurface::kDiscard_ContentChangeMode); |
| 920 | } |
| 921 | } |
| 922 | ## |
| 923 | |
| 924 | #SeeAlso ContentChangeMode generationID |
| 925 | |
| 926 | #Method ## |
| 927 | |
| 928 | # ------------------------------------------------------------------------------ |
| 929 | |
| 930 | #Enum BackendHandleAccess |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 931 | #Line # options to read and write back-end object ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 932 | #Code |
| 933 | enum BackendHandleAccess { |
| 934 | kFlushRead_BackendHandleAccess, |
| 935 | kFlushWrite_BackendHandleAccess, |
| 936 | kDiscardWrite_BackendHandleAccess, |
| 937 | }; |
Cary Clark | 7cfcbca | 2018-01-04 16:11:51 -0500 | [diff] [blame] | 938 | |
| 939 | static const BackendHandleAccess kFlushRead_TextureHandleAccess = |
| 940 | kFlushRead_BackendHandleAccess; |
| 941 | static const BackendHandleAccess kFlushWrite_TextureHandleAccess = |
| 942 | kFlushWrite_BackendHandleAccess; |
| 943 | static const BackendHandleAccess kDiscardWrite_TextureHandleAccess = |
| 944 | kDiscardWrite_BackendHandleAccess; |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 945 | ## |
| 946 | |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 947 | #Const kFlushRead_BackendHandleAccess 0 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 948 | #Line # back-end object is readable ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 949 | Caller may read from the back-end object. |
| 950 | ## |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 951 | #Const kFlushWrite_BackendHandleAccess 1 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 952 | #Line # back-end object is writable ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 953 | Caller may write to the back-end object. |
| 954 | ## |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 955 | #Const kDiscardWrite_BackendHandleAccess 2 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 956 | #Line # back-end object must be overwritten ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 957 | Caller must overwrite the entire back-end object. |
| 958 | ## |
| 959 | |
Cary Clark | 7cfcbca | 2018-01-04 16:11:51 -0500 | [diff] [blame] | 960 | #Const kFlushRead_TextureHandleAccess 0 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 961 | #Deprecated |
Cary Clark | 7cfcbca | 2018-01-04 16:11:51 -0500 | [diff] [blame] | 962 | ## |
Cary Clark | 7cfcbca | 2018-01-04 16:11:51 -0500 | [diff] [blame] | 963 | #Const kFlushWrite_TextureHandleAccess 1 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 964 | #Deprecated |
Cary Clark | 7cfcbca | 2018-01-04 16:11:51 -0500 | [diff] [blame] | 965 | ## |
Cary Clark | 7cfcbca | 2018-01-04 16:11:51 -0500 | [diff] [blame] | 966 | #Const kDiscardWrite_TextureHandleAccess 2 |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 967 | #Deprecated |
Cary Clark | 7cfcbca | 2018-01-04 16:11:51 -0500 | [diff] [blame] | 968 | ## |
Cary Clark | 7cfcbca | 2018-01-04 16:11:51 -0500 | [diff] [blame] | 969 | |
Cary Clark | 36122e7 | 2018-04-26 10:59:57 -0400 | [diff] [blame] | 970 | #NoExample |
| 971 | // todo: need to update example to use GrBackendTexture instead of GrBackendObject |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 972 | #Platform gpu |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 973 | SkPaint paint; |
| 974 | paint.setTextSize(32); |
| 975 | GrContext* context = canvas->getGrContext(); |
| 976 | if (!context) { |
| 977 | canvas->drawString("GPU only!", 20, 40, paint); |
| 978 | return; |
| 979 | } |
| 980 | sk_sp<SkSurface> gpuSurface = SkSurface::MakeRenderTarget( |
| 981 | context, SkBudgeted::kYes, SkImageInfo::MakeN32Premul(10, 10)); |
| 982 | int y = 20; |
| 983 | SkString str; |
| 984 | paint.setTextSize(16); |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 985 | for (auto access : { SkSurface::kFlushRead_BackendHandleAccess, |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 986 | SkSurface::kFlushWrite_BackendHandleAccess, |
| 987 | SkSurface::kDiscardWrite_BackendHandleAccess } ) { |
| 988 | sk_sp<SkImage> image(gpuSurface->makeImageSnapshot()); |
| 989 | str.printf("uniqueID=%d", image->uniqueID()); |
| 990 | canvas->drawString(str, 20, y += 20, paint); |
Greg Daniel | 6d138bf | 2018-05-03 16:54:03 -0400 | [diff] [blame] | 991 | GrBackendTexture backendTex = gpuSurface->getBackendTexture(access); |
| 992 | str.printf("backendTex is %svalid", backendTex.isValid() ? '' : 'not '); |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 993 | canvas->drawString(str, 20, y += 20, paint); |
| 994 | } |
| 995 | sk_sp<SkImage> image(gpuSurface->makeImageSnapshot()); |
| 996 | str.printf("final image uniqueID=%d", image->uniqueID()); |
| 997 | canvas->drawString(str, 20, y += 20, paint); |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 998 | ## |
| 999 | |
Cary Clark | 36122e7 | 2018-04-26 10:59:57 -0400 | [diff] [blame] | 1000 | #SeeAlso getBackendTexture getBackendRenderTarget |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1001 | |
| 1002 | #Enum ## |
| 1003 | |
| 1004 | # ------------------------------------------------------------------------------ |
| 1005 | |
Robert Phillips | 8caf85f | 2018-04-05 09:30:38 -0400 | [diff] [blame] | 1006 | #Method GrBackendTexture getBackendTexture(BackendHandleAccess backendHandleAccess) |
| 1007 | #In Property |
| 1008 | #Line # returns the GPU reference to texture ## |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1009 | Retrieves the back-end texture. If Surface has no back-end texture, an invalid |
Robert Phillips | 8caf85f | 2018-04-05 09:30:38 -0400 | [diff] [blame] | 1010 | object is returned. Call GrBackendTexture::isValid to determine if the result |
| 1011 | is valid. |
| 1012 | |
| 1013 | The returned GrBackendTexture should be discarded if the Surface is drawn to or deleted. |
| 1014 | |
| 1015 | #Param backendHandleAccess one of: kFlushRead_BackendHandleAccess, |
| 1016 | kFlushWrite_BackendHandleAccess, kDiscardWrite_BackendHandleAccess |
| 1017 | ## |
| 1018 | |
| 1019 | #Return GPU texture reference; invalid on failure ## |
| 1020 | |
| 1021 | #NoExample |
| 1022 | ## |
| 1023 | |
| 1024 | #SeeAlso GrBackendTexture BackendHandleAccess getBackendRenderTarget |
| 1025 | |
| 1026 | #Method ## |
| 1027 | |
| 1028 | # ------------------------------------------------------------------------------ |
| 1029 | |
| 1030 | #Method GrBackendRenderTarget getBackendRenderTarget(BackendHandleAccess backendHandleAccess) |
| 1031 | #In Property |
| 1032 | #Line # returns the GPU reference to render target ## |
| 1033 | |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1034 | Retrieves the back-end render target. If Surface has no back-end render target, an invalid |
Robert Phillips | 8caf85f | 2018-04-05 09:30:38 -0400 | [diff] [blame] | 1035 | object is returned. Call GrBackendRenderTarget::isValid to determine if the result |
| 1036 | is valid. |
| 1037 | |
| 1038 | The returned GrBackendRenderTarget should be discarded if the Surface is drawn to |
| 1039 | or deleted. |
| 1040 | |
| 1041 | #Param backendHandleAccess one of: kFlushRead_BackendHandleAccess, |
| 1042 | kFlushWrite_BackendHandleAccess, kDiscardWrite_BackendHandleAccess |
| 1043 | ## |
| 1044 | |
| 1045 | #Return GPU render target reference; invalid on failure ## |
| 1046 | |
| 1047 | #NoExample |
| 1048 | ## |
| 1049 | |
| 1050 | #SeeAlso GrBackendRenderTarget BackendHandleAccess getBackendTexture |
| 1051 | |
| 1052 | #Method ## |
| 1053 | |
| 1054 | # ------------------------------------------------------------------------------ |
| 1055 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1056 | #Method SkCanvas* getCanvas() |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1057 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1058 | #Line # returns Canvas that draws into Surface ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1059 | Returns Canvas that draws into Surface. Subsequent calls return the same Canvas. |
| 1060 | Canvas returned is managed and owned by Surface, and is deleted when Surface |
| 1061 | is deleted. |
| 1062 | |
| 1063 | #Return drawing Canvas for Surface ## |
| 1064 | |
| 1065 | #Example |
| 1066 | #Height 64 |
| 1067 | sk_sp<SkSurface> surface(SkSurface::MakeRasterN32Premul(64, 64)); |
| 1068 | SkCanvas* surfaceCanvas = surface->getCanvas(); |
| 1069 | surfaceCanvas->clear(SK_ColorBLUE); |
| 1070 | SkPaint paint; |
| 1071 | paint.setTextSize(40); |
| 1072 | surfaceCanvas->drawString("\xF0\x9F\x98\x81", 12, 45, paint); |
| 1073 | surface->draw(canvas, 0, 0, nullptr); |
| 1074 | ## |
| 1075 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1076 | #SeeAlso makeSurface makeImageSnapshot draw |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1077 | |
| 1078 | #Method ## |
| 1079 | |
| 1080 | # ------------------------------------------------------------------------------ |
| 1081 | |
| 1082 | #Method sk_sp<SkSurface> makeSurface(const SkImageInfo& imageInfo) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1083 | #In Constructor |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1084 | #Line # creates a compatible Surface ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1085 | Returns a compatible Surface, or nullptr. Returned Surface contains |
| 1086 | the same raster, GPU, or null properties as the original. Returned Surface |
| 1087 | does not share the same pixels. |
| 1088 | |
| 1089 | Returns nullptr if imageInfo width or height are zero, or if imageInfo |
| 1090 | is incompatible with Surface. |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1091 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1092 | #Param imageInfo width, height, Color_Type, Alpha_Type, Color_Space, |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1093 | of Surface; width and height must be greater than zero |
| 1094 | ## |
| 1095 | |
| 1096 | #Return compatible Surface or nullptr ## |
| 1097 | |
| 1098 | #Example |
| 1099 | #Height 96 |
| 1100 | sk_sp<SkSurface> big(SkSurface::MakeRasterN32Premul(64, 64)); |
| 1101 | sk_sp<SkSurface> lil(big->makeSurface(SkImageInfo::MakeN32(32, 32, kPremul_SkAlphaType))); |
| 1102 | big->getCanvas()->clear(SK_ColorRED); |
| 1103 | lil->getCanvas()->clear(SK_ColorBLACK); |
| 1104 | SkPixmap pixmap; |
| 1105 | if (big->peekPixels(&pixmap)) { |
| 1106 | SkBitmap bigBits; |
| 1107 | bigBits.installPixels(pixmap); |
| 1108 | canvas->drawBitmap(bigBits, 0, 0); |
| 1109 | } |
| 1110 | if (lil->peekPixels(&pixmap)) { |
| 1111 | SkBitmap lilBits; |
| 1112 | lilBits.installPixels(pixmap); |
| 1113 | canvas->drawBitmap(lilBits, 64, 64); |
| 1114 | } |
| 1115 | ## |
| 1116 | |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1117 | #SeeAlso makeImageSnapshot getCanvas draw |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1118 | |
| 1119 | #Method ## |
| 1120 | |
| 1121 | # ------------------------------------------------------------------------------ |
| 1122 | |
| 1123 | #Method sk_sp<SkImage> makeImageSnapshot() |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1124 | #In Constructor |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1125 | #Line # creates Image capturing Surface contents ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1126 | Returns Image capturing Surface contents. Subsequent drawing to Surface contents |
| 1127 | are not captured. Image allocation is accounted for if Surface was created with |
| 1128 | SkBudgeted::kYes. |
| 1129 | |
| 1130 | #Return Image initialized with Surface contents ## |
| 1131 | |
| 1132 | #Example |
| 1133 | #Height 64 |
| 1134 | sk_sp<SkSurface> big(SkSurface::MakeRasterN32Premul(64, 64)); |
| 1135 | sk_sp<SkSurface> lil(big->makeSurface(SkImageInfo::MakeN32(32, 32, kPremul_SkAlphaType))); |
| 1136 | big->getCanvas()->clear(SK_ColorRED); |
| 1137 | lil->getCanvas()->clear(SK_ColorBLACK); |
| 1138 | sk_sp<SkImage> early(big->makeImageSnapshot()); |
| 1139 | lil->draw(big->getCanvas(), 16, 16, nullptr); |
| 1140 | sk_sp<SkImage> later(big->makeImageSnapshot()); |
| 1141 | canvas->drawImage(early, 0, 0); |
| 1142 | canvas->drawImage(later, 128, 0); |
| 1143 | ## |
| 1144 | |
| 1145 | #SeeAlso draw getCanvas |
| 1146 | |
| 1147 | #Method ## |
| 1148 | |
| 1149 | # ------------------------------------------------------------------------------ |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1150 | #Subtopic Pixels |
| 1151 | #Populate |
| 1152 | #Line # functions with pixel access ## |
| 1153 | ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1154 | |
| 1155 | #Method void draw(SkCanvas* canvas, SkScalar x, SkScalar y, const SkPaint* paint) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1156 | #In Pixels |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1157 | #Line # draws Surface contents to canvas ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1158 | Draws Surface contents to canvas, with its top-left corner at (x, y). |
| 1159 | |
| 1160 | If Paint paint is not nullptr, apply Color_Filter, Color_Alpha, Image_Filter, |
| 1161 | Blend_Mode, and Draw_Looper. |
| 1162 | |
| 1163 | #Param canvas Canvas drawn into ## |
| 1164 | #Param x horizontal offset in Canvas ## |
| 1165 | #Param y vertical offset in Canvas ## |
| 1166 | #Param paint Paint containing Blend_Mode, Color_Filter, Image_Filter, |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1167 | and so on; or nullptr |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1168 | ## |
| 1169 | |
| 1170 | #Example |
| 1171 | #Height 64 |
| 1172 | sk_sp<SkSurface> big(SkSurface::MakeRasterN32Premul(64, 64)); |
| 1173 | sk_sp<SkSurface> lil(big->makeSurface(SkImageInfo::MakeN32(32, 32, kPremul_SkAlphaType))); |
| 1174 | big->getCanvas()->clear(SK_ColorRED); |
| 1175 | lil->getCanvas()->clear(SK_ColorBLACK); |
| 1176 | lil->draw(big->getCanvas(), 16, 16, nullptr); |
| 1177 | SkPixmap pixmap; |
| 1178 | if (big->peekPixels(&pixmap)) { |
| 1179 | SkBitmap bigBits; |
| 1180 | bigBits.installPixels(pixmap); |
| 1181 | canvas->drawBitmap(bigBits, 0, 0); |
| 1182 | } |
| 1183 | ## |
| 1184 | |
| 1185 | #SeeAlso makeImageSnapshot getCanvas |
| 1186 | |
| 1187 | #Method ## |
| 1188 | |
| 1189 | # ------------------------------------------------------------------------------ |
| 1190 | |
| 1191 | #Method bool peekPixels(SkPixmap* pixmap) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1192 | #In Pixels |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1193 | #Line # copies Surface parameters to Pixmap ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1194 | Copies Surface pixel address, row bytes, and Image_Info to Pixmap, if address |
| 1195 | is available, and returns true. If pixel address is not available, return |
| 1196 | false and leave Pixmap unchanged. |
| 1197 | |
| 1198 | pixmap contents become invalid on any future change to Surface. |
| 1199 | |
| 1200 | #Param pixmap storage for pixel state if pixels are readable; otherwise, ignored ## |
| 1201 | |
| 1202 | #Return true if Surface has direct access to pixels ## |
| 1203 | |
| 1204 | #Example |
| 1205 | #Height 64 |
| 1206 | sk_sp<SkSurface> surf(SkSurface::MakeRasterN32Premul(64, 64)); |
| 1207 | auto surfCanvas = surf->getCanvas(); |
| 1208 | surfCanvas->clear(SK_ColorRED); |
| 1209 | SkPaint paint; |
| 1210 | paint.setTextSize(40); |
| 1211 | surfCanvas->drawString("&", 16, 48, paint); |
| 1212 | SkPixmap pixmap; |
| 1213 | if (surf->peekPixels(&pixmap)) { |
| 1214 | SkBitmap surfBits; |
| 1215 | surfBits.installPixels(pixmap); |
| 1216 | canvas->drawBitmap(surfBits, 0, 0); |
| 1217 | } |
| 1218 | ## |
| 1219 | |
Mike Reed | 4c790bd | 2018-02-08 14:10:40 -0500 | [diff] [blame] | 1220 | #SeeAlso readPixels writePixels |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1221 | |
| 1222 | #Method ## |
| 1223 | |
| 1224 | # ------------------------------------------------------------------------------ |
| 1225 | |
| 1226 | #Method bool readPixels(const SkPixmap& dst, int srcX, int srcY) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1227 | #In Pixels |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1228 | #Line # copies Rect of pixels ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1229 | Copies Rect of pixels to dst. |
| 1230 | |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1231 | Source Rect corners are (srcX, srcY) and Surface (width(), height()). |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1232 | Destination Rect corners are (0, 0) and (dst.width(), dst.height()). |
| 1233 | Copies each readable pixel intersecting both rectangles, without scaling, |
| 1234 | converting to dst.colorType() and dst.alphaType() if required. |
| 1235 | |
| 1236 | Pixels are readable when Surface is raster, or backed by a GPU. |
| 1237 | |
| 1238 | The destination pixel storage must be allocated by the caller. |
| 1239 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1240 | Pixel values are converted only if Color_Type and Alpha_Type |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1241 | do not match. Only pixels within both source and destination rectangles |
| 1242 | are copied. dst contents outside Rect intersection are unchanged. |
| 1243 | |
| 1244 | Pass negative values for srcX or srcY to offset pixels across or down destination. |
| 1245 | |
| 1246 | Does not copy, and returns false if: |
| 1247 | |
| 1248 | #List |
| 1249 | # Source and destination rectangles do not intersect. ## |
| 1250 | # Pixmap pixels could not be allocated. ## |
| 1251 | # dst.rowBytes() is too small to contain one row of pixels. ## |
| 1252 | ## |
| 1253 | |
| 1254 | #Param dst storage for pixels copied from Surface ## |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 1255 | #Param srcX offset into readable pixels on x-axis; may be negative ## |
| 1256 | #Param srcY offset into readable pixels on y-axis; may be negative ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1257 | |
| 1258 | #Return true if pixels were copied ## |
| 1259 | |
| 1260 | #Example |
| 1261 | #Height 32 |
| 1262 | sk_sp<SkSurface> surf(SkSurface::MakeRasterN32Premul(64, 64)); |
| 1263 | auto surfCanvas = surf->getCanvas(); |
| 1264 | surfCanvas->clear(SK_ColorRED); |
| 1265 | SkPaint paint; |
| 1266 | paint.setTextSize(40); |
| 1267 | surfCanvas->drawString("&", 0, 32, paint); |
| 1268 | std::vector<SkPMColor> storage; |
| 1269 | storage.resize(surf->width() * surf->height()); |
| 1270 | SkPixmap pixmap(SkImageInfo::MakeN32Premul(32, 32), &storage.front(), |
| 1271 | surf->width() * sizeof(storage[0])); |
| 1272 | if (surf->readPixels(pixmap, 0, 0)) { |
| 1273 | SkBitmap surfBits; |
| 1274 | surfBits.installPixels(pixmap); |
| 1275 | canvas->drawBitmap(surfBits, 0, 0); |
| 1276 | } |
| 1277 | ## |
| 1278 | |
Mike Reed | 4c790bd | 2018-02-08 14:10:40 -0500 | [diff] [blame] | 1279 | #SeeAlso peekPixels writePixels |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1280 | |
| 1281 | #Method ## |
| 1282 | |
| 1283 | # ------------------------------------------------------------------------------ |
| 1284 | |
| 1285 | #Method bool readPixels(const SkImageInfo& dstInfo, void* dstPixels, size_t dstRowBytes, |
| 1286 | int srcX, int srcY) |
| 1287 | |
| 1288 | Copies Rect of pixels from Canvas into dstPixels. |
| 1289 | |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1290 | Source Rect corners are (srcX, srcY) and Surface (width(), height()). |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1291 | Destination Rect corners are (0, 0) and (dstInfo.width(), dstInfo.height()). |
| 1292 | Copies each readable pixel intersecting both rectangles, without scaling, |
| 1293 | converting to dstInfo.colorType() and dstInfo.alphaType() if required. |
| 1294 | |
| 1295 | Pixels are readable when Surface is raster, or backed by a GPU. |
| 1296 | |
| 1297 | The destination pixel storage must be allocated by the caller. |
| 1298 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1299 | Pixel values are converted only if Color_Type and Alpha_Type |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1300 | do not match. Only pixels within both source and destination rectangles |
| 1301 | are copied. dstPixels contents outside Rect intersection are unchanged. |
| 1302 | |
| 1303 | Pass negative values for srcX or srcY to offset pixels across or down destination. |
| 1304 | |
| 1305 | Does not copy, and returns false if: |
| 1306 | |
| 1307 | #List |
| 1308 | # Source and destination rectangles do not intersect. ## |
| 1309 | # Surface pixels could not be converted to dstInfo.colorType() or dstInfo.alphaType(). ## |
| 1310 | # dstRowBytes is too small to contain one row of pixels. ## |
| 1311 | ## |
| 1312 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1313 | #Param dstInfo width, height, Color_Type, and Alpha_Type of dstPixels ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1314 | #Param dstPixels storage for pixels; dstInfo.height() times dstRowBytes, or larger ## |
| 1315 | #Param dstRowBytes size of one destination row; dstInfo.width() times pixel size, or larger ## |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 1316 | #Param srcX offset into readable pixels on x-axis; may be negative ## |
| 1317 | #Param srcY offset into readable pixels on y-axis; may be negative ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1318 | |
| 1319 | #Return true if pixels were copied ## |
| 1320 | |
| 1321 | #Example |
| 1322 | #Height 64 |
| 1323 | #Description |
| 1324 | A black oval drawn on a red background provides an image to copy. |
| 1325 | readPixels copies one quarter of the Surface into each of the four corners. |
| 1326 | The copied quarter ovals overdraw the original oval. |
| 1327 | ## |
| 1328 | sk_sp<SkSurface> surf(SkSurface::MakeRasterN32Premul(64, 64)); |
| 1329 | auto surfCanvas = surf->getCanvas(); |
| 1330 | surfCanvas->clear(SK_ColorRED); |
| 1331 | SkPaint paint; |
| 1332 | surfCanvas->drawOval({4, 8, 58, 54}, paint); |
| 1333 | SkImageInfo info = SkImageInfo::Make(64, 64, kBGRA_8888_SkColorType, kPremul_SkAlphaType); |
| 1334 | sk_sp<SkData> data(SkData::MakeUninitialized(info.minRowBytes() * info.height())); |
| 1335 | sk_bzero(data->writable_data(), info.minRowBytes() * info.height()); |
| 1336 | for (int x : { 32, -32 } ) { |
| 1337 | for (int y : { 32, -32 } ) { |
| 1338 | surf->readPixels(info, data->writable_data(), info.minRowBytes(), x, y); |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1339 | } |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1340 | } |
| 1341 | sk_sp<SkImage> image = SkImage::MakeRasterData(info, data, info.minRowBytes()); |
| 1342 | canvas->drawImage(image, 0, 0); |
| 1343 | ## |
| 1344 | |
Mike Reed | 4c790bd | 2018-02-08 14:10:40 -0500 | [diff] [blame] | 1345 | #SeeAlso peekPixels writePixels |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1346 | |
| 1347 | #Method ## |
| 1348 | |
| 1349 | # ------------------------------------------------------------------------------ |
| 1350 | |
| 1351 | #Method bool readPixels(const SkBitmap& dst, int srcX, int srcY) |
| 1352 | |
| 1353 | Copies Rect of pixels from Surface into bitmap. |
| 1354 | |
Cary Clark | ac47b88 | 2018-01-11 10:35:44 -0500 | [diff] [blame] | 1355 | Source Rect corners are (srcX, srcY) and Surface (width(), height()). |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1356 | Destination Rect corners are (0, 0) and (bitmap.width(), bitmap.height()). |
| 1357 | Copies each readable pixel intersecting both rectangles, without scaling, |
| 1358 | converting to bitmap.colorType() and bitmap.alphaType() if required. |
| 1359 | |
| 1360 | Pixels are readable when Surface is raster, or backed by a GPU. |
| 1361 | |
| 1362 | The destination pixel storage must be allocated by the caller. |
| 1363 | |
Cary Clark | 2dc84ad | 2018-01-26 12:56:22 -0500 | [diff] [blame] | 1364 | Pixel values are converted only if Color_Type and Alpha_Type |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1365 | do not match. Only pixels within both source and destination rectangles |
| 1366 | are copied. dst contents outside Rect intersection are unchanged. |
| 1367 | |
| 1368 | Pass negative values for srcX or srcY to offset pixels across or down destination. |
| 1369 | |
| 1370 | Does not copy, and returns false if: |
| 1371 | |
| 1372 | #List |
| 1373 | # Source and destination rectangles do not intersect. ## |
| 1374 | # Surface pixels could not be converted to dst.colorType() or dst.alphaType(). ## |
| 1375 | # dst pixels could not be allocated. ## |
| 1376 | # dst.rowBytes() is too small to contain one row of pixels. ## |
| 1377 | ## |
| 1378 | |
| 1379 | #Param dst storage for pixels copied from Surface ## |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 1380 | #Param srcX offset into readable pixels on x-axis; may be negative ## |
| 1381 | #Param srcY offset into readable pixels on y-axis; may be negative ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1382 | |
| 1383 | #Return true if pixels were copied ## |
| 1384 | |
| 1385 | #Example |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 1386 | sk_sp<SkSurface> surf(SkSurface::MakeRasterN32Premul(64, 64)); |
| 1387 | auto surfCanvas = surf->getCanvas(); |
| 1388 | surfCanvas->clear(SK_ColorGREEN); |
| 1389 | SkPaint paint; |
| 1390 | surfCanvas->drawOval({2, 10, 58, 54}, paint); |
| 1391 | SkImageInfo info = SkImageInfo::Make(64, 64, kBGRA_8888_SkColorType, kPremul_SkAlphaType); |
| 1392 | SkBitmap bitmap; |
| 1393 | bitmap.setInfo(info); |
| 1394 | bitmap.allocPixels(); |
| 1395 | for (int x : { 32, -32 } ) { |
| 1396 | for (int y : { 32, -32 } ) { |
| 1397 | surf->readPixels(bitmap, x, y); |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1398 | } |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 1399 | } |
| 1400 | canvas->drawBitmap(bitmap, 0, 0); |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1401 | ## |
| 1402 | |
Mike Reed | 4c790bd | 2018-02-08 14:10:40 -0500 | [diff] [blame] | 1403 | #SeeAlso peekPixels writePixels |
| 1404 | |
| 1405 | #Method ## |
| 1406 | |
| 1407 | # ------------------------------------------------------------------------------ |
| 1408 | |
| 1409 | #Method void writePixels(const SkPixmap& src, int dstX, int dstY) |
Cary Clark | 5635631 | 2018-02-08 14:45:18 -0500 | [diff] [blame] | 1410 | #In Pixels |
| 1411 | #Line # copies Rect of pixels ## |
Mike Reed | 4c790bd | 2018-02-08 14:10:40 -0500 | [diff] [blame] | 1412 | Copies Rect of pixels from the src Pixmap to the Surface. |
| 1413 | |
| 1414 | Source Rect corners are (0, 0) and (src.width(), src.height()). |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1415 | Destination Rect corners are (dstX, dstY) and |
Cary Clark | 2be81cf | 2018-09-13 12:04:30 -0400 | [diff] [blame] | 1416 | #Formula # (dstX + Surface width(), dstY + Surface height()) ##. |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1417 | |
Mike Reed | 4c790bd | 2018-02-08 14:10:40 -0500 | [diff] [blame] | 1418 | Copies each readable pixel intersecting both rectangles, without scaling, |
| 1419 | converting to Surface colorType() and Surface alphaType() if required. |
| 1420 | |
| 1421 | #Param src storage for pixels to copy to Surface ## |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 1422 | #Param dstX x-axis position relative to Surface to begin copy; may be negative ## |
| 1423 | #Param dstY y-axis position relative to Surface to begin copy; may be negative ## |
Mike Reed | 4c790bd | 2018-02-08 14:10:40 -0500 | [diff] [blame] | 1424 | |
| 1425 | #Example |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 1426 | #Image 4 |
| 1427 | #Height 96 |
| 1428 | sk_sp<SkSurface> surf(SkSurface::MakeRasterN32Premul(64, 64));
|
| 1429 | auto surfCanvas = surf->getCanvas();
|
| 1430 | surfCanvas->clear(SK_ColorRED);
|
| 1431 | SkPaint paint;
|
| 1432 | paint.setTextSize(40);
|
| 1433 | surfCanvas->drawString("&", 16, 40, paint);
|
| 1434 | SkPixmap pixmap;
|
| 1435 | if (surf->peekPixels(&pixmap)) {
|
| 1436 | surf->writePixels(pixmap, 25, 25);
|
| 1437 | sk_sp<SkImage> image(surf->makeImageSnapshot());
|
| 1438 | canvas->drawImage(image, 0, 0);
|
| 1439 | } |
Mike Reed | 4c790bd | 2018-02-08 14:10:40 -0500 | [diff] [blame] | 1440 | ## |
| 1441 | |
| 1442 | #SeeAlso readPixels peekPixels |
| 1443 | |
| 1444 | #Method ## |
| 1445 | |
| 1446 | # ------------------------------------------------------------------------------ |
| 1447 | |
| 1448 | #Method void writePixels(const SkBitmap& src, int dstX, int dstY) |
| 1449 | |
| 1450 | Copies Rect of pixels from the src Bitmap to the Surface. |
| 1451 | |
| 1452 | Source Rect corners are (0, 0) and (src.width(), src.height()). |
Cary Clark | 5635631 | 2018-02-08 14:45:18 -0500 | [diff] [blame] | 1453 | Destination Rect corners are (dstX, dstY) and |
Cary Clark | 2be81cf | 2018-09-13 12:04:30 -0400 | [diff] [blame] | 1454 | #Formula # (dstX + Surface width(), dstY + Surface height()) ##. |
Cary Clark | 80247e5 | 2018-07-11 16:18:41 -0400 | [diff] [blame] | 1455 | |
Mike Reed | 4c790bd | 2018-02-08 14:10:40 -0500 | [diff] [blame] | 1456 | Copies each readable pixel intersecting both rectangles, without scaling, |
| 1457 | converting to Surface colorType() and Surface alphaType() if required. |
| 1458 | |
| 1459 | #Param src storage for pixels to copy to Surface ## |
Cary Clark | 5538c13 | 2018-06-14 12:28:14 -0400 | [diff] [blame] | 1460 | #Param dstX x-axis position relative to Surface to begin copy; may be negative ## |
| 1461 | #Param dstY y-axis position relative to Surface to begin copy; may be negative ## |
Mike Reed | 4c790bd | 2018-02-08 14:10:40 -0500 | [diff] [blame] | 1462 | |
| 1463 | #Example |
Cary Clark | ffb3d68 | 2018-05-17 12:17:28 -0400 | [diff] [blame] | 1464 | #Image 4 |
| 1465 | #Height 96 |
| 1466 | sk_sp<SkSurface> surf(SkSurface::MakeRasterN32Premul(64, 64)); |
| 1467 | auto surfCanvas = surf->getCanvas(); |
| 1468 | surfCanvas->clear(SK_ColorGREEN); |
| 1469 | surf->writePixels(source, 25, 25); |
| 1470 | sk_sp<SkImage> image(surf->makeImageSnapshot()); |
| 1471 | canvas->drawImage(image, 0, 0); |
Mike Reed | 4c790bd | 2018-02-08 14:10:40 -0500 | [diff] [blame] | 1472 | ## |
| 1473 | |
| 1474 | #SeeAlso readPixels peekPixels |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1475 | |
| 1476 | #Method ## |
| 1477 | |
| 1478 | # ------------------------------------------------------------------------------ |
| 1479 | |
| 1480 | #Method const SkSurfaceProps& props() const |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1481 | #In Property |
Cary Clark | ab2621d | 2018-01-30 10:08:57 -0500 | [diff] [blame] | 1482 | #Line # returns Surface_Properties ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1483 | Returns Surface_Properties for surface. |
| 1484 | |
| 1485 | #Return LCD striping orientation and setting for device independent fonts ## |
| 1486 | |
| 1487 | #Example |
| 1488 | const char* names[] = { "Unknown", "RGB_H", "BGR_H", "RGB_V", "BGR_V" }; |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 1489 | sk_sp<SkSurface> surf(SkSurface::MakeRasterN32Premul(64, 64)); |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1490 | SkDebugf("surf.props(): k%s_SkPixelGeometry\n", names[surf->props().pixelGeometry()]); |
| 1491 | #StdOut |
| 1492 | surf.props(): kRGB_H_SkPixelGeometry |
| 1493 | ## |
| 1494 | ## |
| 1495 | |
| 1496 | #SeeAlso SkSurfaceProps |
| 1497 | |
| 1498 | #Method ## |
| 1499 | |
| 1500 | # ------------------------------------------------------------------------------ |
| 1501 | |
| 1502 | #Method void prepareForExternalIO() |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1503 | #Deprecated soon |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1504 | #Method ## |
| 1505 | |
| 1506 | # ------------------------------------------------------------------------------ |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1507 | #Subtopic Utility |
| 1508 | #Populate |
| 1509 | #Line # rarely called management functions ## |
| 1510 | ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1511 | |
| 1512 | #Method void flush() |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1513 | #In Utility |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1514 | #Line # resolves pending I/O ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1515 | Issues pending Surface commands to the GPU-backed API and resolves any Surface MSAA. |
| 1516 | |
| 1517 | Skia flushes as needed, so it is not necessary to call this if Skia manages |
| 1518 | drawing and object lifetime. Call when interleaving Skia calls with native |
| 1519 | GPU calls. |
| 1520 | |
| 1521 | #NoExample |
| 1522 | ## |
| 1523 | |
| 1524 | #SeeAlso GrBackendSemaphore |
| 1525 | |
| 1526 | #Method ## |
| 1527 | |
| 1528 | # ------------------------------------------------------------------------------ |
| 1529 | |
| 1530 | #Method GrSemaphoresSubmitted flushAndSignalSemaphores(int numSemaphores, |
| 1531 | GrBackendSemaphore signalSemaphores[]) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1532 | #In Utility |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1533 | #Line # resolves pending I/O, and signal ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1534 | |
| 1535 | Issues pending Surface commands to the GPU-backed API and resolves any Surface MSAA. |
| 1536 | After issuing all commands, signalSemaphores of count numSemaphores semaphores |
| 1537 | are signaled by the GPU. |
| 1538 | |
| 1539 | For each GrBackendSemaphore in signalSemaphores: |
| 1540 | if GrBackendSemaphore is initialized, the GPU back-end uses the semaphore as is; |
| 1541 | otherwise, a new semaphore is created and initializes GrBackendSemaphore. |
| 1542 | |
| 1543 | The caller must delete the semaphores created and returned in signalSemaphores. |
| 1544 | GrBackendSemaphore can be deleted as soon as this function returns. |
| 1545 | |
Cary Clark | 2a8c48b | 2018-02-15 17:31:24 -0500 | [diff] [blame] | 1546 | If the back-end API is OpenGL only uninitialized Backend_Semaphores are supported. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1547 | |
| 1548 | If the back-end API is Vulkan semaphores may be initialized or uninitialized. |
| 1549 | If uninitialized, created semaphores are valid only with the VkDevice |
| 1550 | with which they were created. |
| 1551 | |
| 1552 | If GrSemaphoresSubmitted::kNo is returned, the GPU back-end did not create or |
| 1553 | add any semaphores to signal on the GPU; the caller should not instruct the GPU |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1554 | to wait on any of the semaphores. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1555 | |
| 1556 | Pending surface commands are flushed regardless of the return result. |
| 1557 | |
| 1558 | #Param numSemaphores size of signalSemaphores array ## |
| 1559 | #Param signalSemaphores array of semaphore containers ## |
| 1560 | |
| 1561 | #Return one of: GrSemaphoresSubmitted::kYes, GrSemaphoresSubmitted::kNo ## |
| 1562 | |
| 1563 | #NoExample |
| 1564 | ## |
| 1565 | |
| 1566 | #SeeAlso wait GrBackendSemaphore |
| 1567 | |
| 1568 | #Method ## |
| 1569 | |
| 1570 | # ------------------------------------------------------------------------------ |
| 1571 | |
| 1572 | #Method bool wait(int numSemaphores, const GrBackendSemaphore* waitSemaphores) |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1573 | #In Utility |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1574 | #Line # pauses commands until signaled ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1575 | Inserts a list of GPU semaphores that the current GPU-backed API must wait on before |
| 1576 | executing any more commands on the GPU for this surface. Skia will take ownership of the |
| 1577 | underlying semaphores and delete them once they have been signaled and waited on. |
| 1578 | If this call returns false, then the GPU back-end will not wait on any passed in semaphores, |
| 1579 | and the client will still own the semaphores. |
| 1580 | |
| 1581 | #Param numSemaphores size of waitSemaphores array ## |
| 1582 | #Param waitSemaphores array of semaphore containers ## |
| 1583 | |
| 1584 | #Return true if GPU is waiting on semaphores ## |
| 1585 | |
Cary Clark | 1a8d762 | 2018-03-05 13:26:16 -0500 | [diff] [blame] | 1586 | #NoExample |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1587 | #ToDo this is copy and paste silliness masquerading as an example. Probably need gpu |
| 1588 | globals and definitely need gpu expertise to make a real example out of this |
Cary Clark | 36122e7 | 2018-04-26 10:59:57 -0400 | [diff] [blame] | 1589 | also, note need to replace GrBackendObject with GrBackendTexture |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1590 | ## |
Cary Clark | 1a8d762 | 2018-03-05 13:26:16 -0500 | [diff] [blame] | 1591 | #Platform gpu |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1592 | #Height 64 |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 1593 | SkPaint paint; |
| 1594 | paint.setTextSize(32); |
| 1595 | GrContext* context = canvas->getGrContext(); |
| 1596 | if (!context) { |
| 1597 | canvas->drawString("GPU only!", 20, 40, paint); |
| 1598 | return; |
| 1599 | } |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1600 | GrBackendSemaphore semaphore; |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 1601 | sk_sp<SkSurface> surface = SkSurface::MakeRenderTarget( |
| 1602 | context, SkBudgeted::kYes, SkImageInfo::MakeN32Premul(64, 64)); |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1603 | surface->flushAndSignalSemaphores(1, &semaphore); |
| 1604 | sk_sp<SkImage> image = surface->makeImageSnapshot(); |
Greg Daniel | 6d138bf | 2018-05-03 16:54:03 -0400 | [diff] [blame] | 1605 | GrBackendTexture backendTex = image->getBackendTexture(false); // unused |
| 1606 | SkASSERT(backendTex.isValid()); |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1607 | const SkImageInfo childImageInfo = SkImageInfo::Make(64, 64, |
| 1608 | kRGBA_8888_SkColorType, kPremul_SkAlphaType); |
| 1609 | sk_sp<SkSurface> childSurface(SkSurface::MakeRenderTarget(context, SkBudgeted::kNo, |
| 1610 | childImageInfo, 0, kTopLeft_GrSurfaceOrigin, nullptr)); |
| 1611 | GrBackendTexture backendTexture; |
| 1612 | sk_sp<SkImage> childImage = SkImage::MakeFromTexture(context, |
| 1613 | backendTexture, // undefined |
| 1614 | kTopLeft_GrSurfaceOrigin, kPremul_SkAlphaType, nullptr); |
| 1615 | SkCanvas* childCanvas = childSurface->getCanvas(); |
| 1616 | childCanvas->clear(SK_ColorRED); |
| 1617 | childSurface->wait(1, &semaphore); |
| 1618 | childCanvas->drawImage(childImage, 32, 0); |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 1619 | childSurface->draw(canvas, 0, 0, nullptr); |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1620 | ## |
| 1621 | |
| 1622 | #SeeAlso flushAndSignalSemaphores GrBackendSemaphore |
| 1623 | |
| 1624 | #Method ## |
| 1625 | |
| 1626 | # ------------------------------------------------------------------------------ |
| 1627 | |
| 1628 | #Method bool characterize(SkSurfaceCharacterization* characterization) const |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1629 | #In Utility |
| 1630 | #Line # sets Surface_Characterization for threaded GPU processing ## |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1631 | Initializes Surface_Characterization that can be used to perform GPU back-end |
Cary Clark | 4855f78 | 2018-02-06 09:41:53 -0500 | [diff] [blame] | 1632 | processing in a separate thread. Typically this is used to divide drawing |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1633 | into multiple tiles. DeferredDisplayListRecorder records the drawing commands |
| 1634 | for each tile. |
| 1635 | |
| 1636 | Return true if Surface supports characterization. Raster_Surface returns false. |
| 1637 | |
| 1638 | #Param characterization properties for parallel drawing ## |
| 1639 | |
| 1640 | #Return true if supported ## |
| 1641 | |
| 1642 | #Example |
| 1643 | #Platform gpu |
| 1644 | #Height 64 |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 1645 | SkPaint paint; |
| 1646 | paint.setTextSize(32); |
| 1647 | GrContext* context = canvas->getGrContext(); |
| 1648 | if (!context) { |
| 1649 | canvas->drawString("GPU only!", 20, 40, paint); |
| 1650 | return; |
| 1651 | } |
| 1652 | sk_sp<SkSurface> gpuSurface = SkSurface::MakeRenderTarget( |
| 1653 | context, SkBudgeted::kYes, SkImageInfo::MakeN32Premul(64, 64)); |
| 1654 | SkSurfaceCharacterization characterization; |
| 1655 | if (!gpuSurface->characterize(&characterization)) { |
| 1656 | canvas->drawString("characterization unsupported", 20, 40, paint); |
| 1657 | return; |
| 1658 | } |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1659 | // start of threadable work |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 1660 | SkDeferredDisplayListRecorder recorder(characterization); |
| 1661 | SkCanvas* subCanvas = recorder.getCanvas(); |
| 1662 | subCanvas->clear(SK_ColorGREEN); |
| 1663 | std::unique_ptr<SkDeferredDisplayList> displayList = recorder.detach(); |
| 1664 | // end of threadable work |
| 1665 | gpuSurface->draw(displayList.get()); |
| 1666 | sk_sp<SkImage> img = gpuSurface->makeImageSnapshot(); |
| 1667 | canvas->drawImage(std::move(img), 0, 0); |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1668 | ## |
| 1669 | |
| 1670 | #SeeAlso draw() SkSurfaceCharacterization SkDeferredDisplayList |
| 1671 | |
| 1672 | #Method ## |
| 1673 | |
| 1674 | # ------------------------------------------------------------------------------ |
| 1675 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 1676 | #Method bool draw(SkDeferredDisplayList* deferredDisplayList) |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1677 | |
| 1678 | Draws deferred display list created using SkDeferredDisplayListRecorder. |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 1679 | Has no effect and returns false if Surface_Characterization stored in |
| 1680 | deferredDisplayList is not compatible with Surface. |
| 1681 | |
| 1682 | Raster_Surface returns false. |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1683 | |
| 1684 | #Param deferredDisplayList drawing commands ## |
| 1685 | |
Cary Clark | 2f46624 | 2017-12-11 16:03:17 -0500 | [diff] [blame] | 1686 | #Return false if deferredDisplayList is not compatible ## |
| 1687 | |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1688 | #Example |
| 1689 | #Height 64 |
| 1690 | #Platform gpu cpu |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 1691 | SkPaint paint; |
| 1692 | paint.setTextSize(16); |
| 1693 | sk_sp<SkSurface> gpuSurface = SkSurface::MakeRasterN32Premul(64, 64); |
| 1694 | SkSurfaceCharacterization characterization; |
| 1695 | if (!gpuSurface->characterize(&characterization)) { |
| 1696 | canvas->drawString("characterization unsupported", 20, 40, paint); |
| 1697 | return; |
| 1698 | } |
Cary Clark | 682c58d | 2018-05-16 07:07:07 -0400 | [diff] [blame] | 1699 | // start of threadable work |
Cary Clark | 3cd22cc | 2017-12-01 11:49:58 -0500 | [diff] [blame] | 1700 | SkDeferredDisplayListRecorder recorder(characterization); |
| 1701 | SkCanvas* subCanvas = recorder.getCanvas(); |
| 1702 | subCanvas->clear(SK_ColorGREEN); |
| 1703 | std::unique_ptr<SkDeferredDisplayList> displayList = recorder.detach(); |
| 1704 | // end of threadable work |
| 1705 | gpuSurface->draw(displayList.get()); |
| 1706 | sk_sp<SkImage> img = gpuSurface->makeImageSnapshot(); |
| 1707 | canvas->drawImage(std::move(img), 0, 0); |
Cary Clark | a560c47 | 2017-11-27 10:44:06 -0500 | [diff] [blame] | 1708 | ## |
| 1709 | |
| 1710 | #SeeAlso characterize() SkSurfaceCharacterization SkDeferredDisplayList |
| 1711 | |
| 1712 | #Method ## |
| 1713 | |
| 1714 | #Class SkSurface ## |
| 1715 | |
| 1716 | #Topic Surface ## |