robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2012 Google Inc. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
| 6 | */ |
| 7 | |
| 8 | #ifndef GrSWMaskHelper_DEFINED |
| 9 | #define GrSWMaskHelper_DEFINED |
| 10 | |
| 11 | #include "GrColor.h" |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 12 | #include "GrPipelineBuilder.h" |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 13 | #include "SkBitmap.h" |
| 14 | #include "SkDraw.h" |
commit-bot@chromium.org | a0b4028 | 2013-09-18 13:00:55 +0000 | [diff] [blame] | 15 | #include "SkMatrix.h" |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 16 | #include "SkRasterClip.h" |
| 17 | #include "SkRegion.h" |
krajcevski | 25a67bc | 2014-07-29 11:44:26 -0700 | [diff] [blame] | 18 | #include "SkTextureCompressor.h" |
commit-bot@chromium.org | a0b4028 | 2013-09-18 13:00:55 +0000 | [diff] [blame] | 19 | #include "SkTypes.h" |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 20 | |
joshualitt | 44701df | 2015-02-23 14:44:57 -0800 | [diff] [blame] | 21 | class GrClip; |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 22 | class GrContext; |
| 23 | class GrTexture; |
| 24 | class SkPath; |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 25 | class SkStrokeRec; |
robertphillips@google.com | 5dfb672 | 2012-07-09 16:32:28 +0000 | [diff] [blame] | 26 | class GrDrawTarget; |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 27 | |
| 28 | /** |
| 29 | * The GrSWMaskHelper helps generate clip masks using the software rendering |
robertphillips@google.com | 366f1c6 | 2012-06-29 21:38:47 +0000 | [diff] [blame] | 30 | * path. It is intended to be used as: |
| 31 | * |
| 32 | * GrSWMaskHelper helper(context); |
| 33 | * helper.init(...); |
| 34 | * |
| 35 | * draw one or more paths/rects specifying the required boolean ops |
| 36 | * |
| 37 | * toTexture(); // to get it from the internal bitmap to the GPU |
| 38 | * |
| 39 | * The result of this process will be the final mask (on the GPU) in the |
| 40 | * upper left hand corner of the texture. |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 41 | */ |
commit-bot@chromium.org | e3beb6b | 2014-04-07 19:34:38 +0000 | [diff] [blame] | 42 | class GrSWMaskHelper : SkNoncopyable { |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 43 | public: |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 44 | GrSWMaskHelper(GrContext* context) |
krajcevski | b8ccc2f | 2014-08-07 08:15:14 -0700 | [diff] [blame] | 45 | : fContext(context) |
| 46 | , fCompressionMode(kNone_CompressionMode) { |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 47 | } |
| 48 | |
robertphillips@google.com | 366f1c6 | 2012-06-29 21:38:47 +0000 | [diff] [blame] | 49 | // set up the internal state in preparation for draws. Since many masks |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 50 | // may be accumulated in the helper during creation, "resultBounds" |
| 51 | // allows the caller to specify the region of interest - to limit the |
krajcevski | 71614ac | 2014-08-13 10:36:18 -0700 | [diff] [blame] | 52 | // amount of work. allowCompression should be set to false if you plan on using |
| 53 | // your own texture to draw into, and not a scratch texture via getTexture(). |
| 54 | bool init(const SkIRect& resultBounds, const SkMatrix* matrix, bool allowCompression = true); |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 55 | |
robertphillips@google.com | 366f1c6 | 2012-06-29 21:38:47 +0000 | [diff] [blame] | 56 | // Draw a single rect into the accumulation bitmap using the specified op |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 57 | void draw(const SkRect& rect, SkRegion::Op op, |
robertphillips@google.com | 366f1c6 | 2012-06-29 21:38:47 +0000 | [diff] [blame] | 58 | bool antiAlias, uint8_t alpha); |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 59 | |
robertphillips@google.com | 366f1c6 | 2012-06-29 21:38:47 +0000 | [diff] [blame] | 60 | // Draw a single path into the accumuation bitmap using the specified op |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 61 | void draw(const SkPath& path, const SkStrokeRec& stroke, SkRegion::Op op, |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 62 | bool antiAlias, uint8_t alpha); |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 63 | |
robertphillips@google.com | 366f1c6 | 2012-06-29 21:38:47 +0000 | [diff] [blame] | 64 | // Move the mask generation results from the internal bitmap to the gpu. |
robertphillips@google.com | d92cf2e | 2013-07-19 18:13:02 +0000 | [diff] [blame] | 65 | void toTexture(GrTexture* texture); |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 66 | |
jvanverth | fa38a30 | 2014-10-06 05:59:05 -0700 | [diff] [blame] | 67 | // Convert mask generation results to a signed distance field |
| 68 | void toSDF(unsigned char* sdf); |
| 69 | |
robertphillips@google.com | 366f1c6 | 2012-06-29 21:38:47 +0000 | [diff] [blame] | 70 | // Reset the internal bitmap |
| 71 | void clear(uint8_t alpha) { |
reed | 41e010c | 2015-06-09 12:16:53 -0700 | [diff] [blame] | 72 | fPixels.erase(SkColorSetARGB(alpha, 0xFF, 0xFF, 0xFF)); |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 73 | } |
| 74 | |
robertphillips@google.com | 366f1c6 | 2012-06-29 21:38:47 +0000 | [diff] [blame] | 75 | // Canonical usage utility that draws a single path and uploads it |
jvanverth | fa38a30 | 2014-10-06 05:59:05 -0700 | [diff] [blame] | 76 | // to the GPU. The result is returned. |
robertphillips@google.com | 5dfb672 | 2012-07-09 16:32:28 +0000 | [diff] [blame] | 77 | static GrTexture* DrawPathMaskToTexture(GrContext* context, |
| 78 | const SkPath& path, |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 79 | const SkStrokeRec& stroke, |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 80 | const SkIRect& resultBounds, |
robertphillips@google.com | 5dfb672 | 2012-07-09 16:32:28 +0000 | [diff] [blame] | 81 | bool antiAlias, |
joshualitt | 8059eb9 | 2014-12-29 15:10:07 -0800 | [diff] [blame] | 82 | const SkMatrix* matrix); |
robertphillips@google.com | 5dfb672 | 2012-07-09 16:32:28 +0000 | [diff] [blame] | 83 | |
| 84 | // This utility routine is used to add a path's mask to some other draw. |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 85 | // The ClipMaskManager uses it to accumulate clip masks while the |
robertphillips@google.com | 5dfb672 | 2012-07-09 16:32:28 +0000 | [diff] [blame] | 86 | // GrSoftwarePathRenderer uses it to fulfill a drawPath call. |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 87 | // It draws with "texture" as a path mask into "target" using "rect" as |
robertphillips@google.com | 5dfb672 | 2012-07-09 16:32:28 +0000 | [diff] [blame] | 88 | // geometry and the current drawState. The current drawState is altered to |
| 89 | // accommodate the mask. |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 90 | // Note that this method assumes that the GrPaint::kTotalStages slot in |
robertphillips@google.com | 5dfb672 | 2012-07-09 16:32:28 +0000 | [diff] [blame] | 91 | // the draw state can be used to hold the mask texture stage. |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 92 | // This method is really only intended to be used with the |
robertphillips@google.com | 5dfb672 | 2012-07-09 16:32:28 +0000 | [diff] [blame] | 93 | // output of DrawPathMaskToTexture. |
| 94 | static void DrawToTargetWithPathMask(GrTexture* texture, |
| 95 | GrDrawTarget* target, |
egdaniel | 8dd688b | 2015-01-22 10:16:09 -0800 | [diff] [blame] | 96 | GrPipelineBuilder* pipelineBuilder, |
joshualitt | 2e3b3e3 | 2014-12-09 13:31:14 -0800 | [diff] [blame] | 97 | GrColor, |
joshualitt | 8059eb9 | 2014-12-29 15:10:07 -0800 | [diff] [blame] | 98 | const SkMatrix& viewMatrix, |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 99 | const SkIRect& rect); |
robertphillips@google.com | 366f1c6 | 2012-06-29 21:38:47 +0000 | [diff] [blame] | 100 | |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 101 | private: |
bsalomon | e305973 | 2014-10-14 11:47:22 -0700 | [diff] [blame] | 102 | // Helper function to get a scratch texture suitable for capturing the |
| 103 | // result (i.e., right size & format) |
| 104 | GrTexture* createTexture(); |
| 105 | |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 106 | GrContext* fContext; |
bsalomon@google.com | b9086a0 | 2012-11-01 18:02:54 +0000 | [diff] [blame] | 107 | SkMatrix fMatrix; |
reed | 41e010c | 2015-06-09 12:16:53 -0700 | [diff] [blame] | 108 | SkAutoPixmapStorage fPixels; |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 109 | SkDraw fDraw; |
| 110 | SkRasterClip fRasterClip; |
| 111 | |
krajcevski | b8ccc2f | 2014-08-07 08:15:14 -0700 | [diff] [blame] | 112 | // This enum says whether or not we should compress the mask: |
| 113 | // kNone_CompressionMode: compression is not supported on this device. |
| 114 | // kCompress_CompressionMode: compress the bitmap before it gets sent to the gpu |
| 115 | // kBlitter_CompressionMode: write to the bitmap using a special compressed blitter. |
| 116 | enum CompressionMode { |
| 117 | kNone_CompressionMode, |
| 118 | kCompress_CompressionMode, |
| 119 | kBlitter_CompressionMode, |
| 120 | } fCompressionMode; |
| 121 | |
| 122 | // This is the buffer into which we store our compressed data. This buffer is |
| 123 | // only allocated (non-null) if fCompressionMode is kBlitter_CompressionMode |
| 124 | SkAutoMalloc fCompressedBuffer; |
krajcevski | b3abe90 | 2014-07-30 13:08:11 -0700 | [diff] [blame] | 125 | |
| 126 | // This is the desired format within which to compress the |
krajcevski | b8ccc2f | 2014-08-07 08:15:14 -0700 | [diff] [blame] | 127 | // texture. This value is only valid if fCompressionMode is not kNone_CompressionMode. |
krajcevski | 25a67bc | 2014-07-29 11:44:26 -0700 | [diff] [blame] | 128 | SkTextureCompressor::Format fCompressedFormat; |
krajcevski | 25a67bc | 2014-07-29 11:44:26 -0700 | [diff] [blame] | 129 | |
krajcevski | fb4f5cb | 2014-06-12 09:20:38 -0700 | [diff] [blame] | 130 | // Actually sends the texture data to the GPU. This is called from |
| 131 | // toTexture with the data filled in depending on the texture config. |
bsalomon | f2703d8 | 2014-10-28 14:33:06 -0700 | [diff] [blame] | 132 | void sendTextureData(GrTexture *texture, const GrSurfaceDesc& desc, |
bsalomon | ef3fcd8 | 2014-12-12 08:51:38 -0800 | [diff] [blame] | 133 | const void *data, size_t rowbytes); |
krajcevski | fb4f5cb | 2014-06-12 09:20:38 -0700 | [diff] [blame] | 134 | |
krajcevski | b577c55 | 2014-07-16 13:26:43 -0700 | [diff] [blame] | 135 | // Compresses the bitmap stored in fBM and sends the compressed data |
| 136 | // to the GPU to be stored in 'texture' using sendTextureData. |
bsalomon | f2703d8 | 2014-10-28 14:33:06 -0700 | [diff] [blame] | 137 | void compressTextureData(GrTexture *texture, const GrSurfaceDesc& desc); |
krajcevski | b577c55 | 2014-07-16 13:26:43 -0700 | [diff] [blame] | 138 | |
commit-bot@chromium.org | a0b4028 | 2013-09-18 13:00:55 +0000 | [diff] [blame] | 139 | typedef SkNoncopyable INHERITED; |
robertphillips@google.com | 58b2021 | 2012-06-27 20:44:52 +0000 | [diff] [blame] | 140 | }; |
| 141 | |
robertphillips@google.com | fe65943 | 2012-06-28 01:01:53 +0000 | [diff] [blame] | 142 | #endif // GrSWMaskHelper_DEFINED |