Brian Salomon | 3416969 | 2017-08-28 15:32:01 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2017 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 | */ |
Hal Canary | 30e4bdf | 2019-07-02 10:31:45 -0400 | [diff] [blame] | 7 | #ifndef GrTextureOp_DEFINED |
| 8 | #define GrTextureOp_DEFINED |
Brian Salomon | 3416969 | 2017-08-28 15:32:01 -0400 | [diff] [blame] | 9 | |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 10 | #include "include/core/SkCanvas.h" |
| 11 | #include "include/core/SkRefCnt.h" |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 12 | #include "include/private/GrTypesPriv.h" |
Greg Daniel | f91aeb2 | 2019-06-18 09:58:02 -0400 | [diff] [blame] | 13 | #include "src/gpu/GrColor.h" |
Brian Salomon | 201cdbb | 2019-08-14 17:00:30 -0400 | [diff] [blame] | 14 | #include "src/gpu/GrSamplerState.h" |
Robert Phillips | e40495d | 2021-07-20 09:40:13 -0400 | [diff] [blame^] | 15 | #include "src/gpu/ops/GrOp.h" |
Brian Salomon | 3416969 | 2017-08-28 15:32:01 -0400 | [diff] [blame] | 16 | |
Robert Phillips | e40495d | 2021-07-20 09:40:13 -0400 | [diff] [blame^] | 17 | struct DrawQuad; |
| 18 | class GrClip; |
Brian Osman | d49e946 | 2017-10-16 13:17:48 -0400 | [diff] [blame] | 19 | class GrColorSpaceXform; |
Brian Salomon | 3416969 | 2017-08-28 15:32:01 -0400 | [diff] [blame] | 20 | class GrDrawOp; |
Robert Phillips | e40495d | 2021-07-20 09:40:13 -0400 | [diff] [blame^] | 21 | class GrSurfaceDrawContext; |
Brian Salomon | 3416969 | 2017-08-28 15:32:01 -0400 | [diff] [blame] | 22 | class GrTextureProxy; |
Robert Phillips | e40495d | 2021-07-20 09:40:13 -0400 | [diff] [blame^] | 23 | struct GrTextureSetEntry; |
Brian Salomon | 3416969 | 2017-08-28 15:32:01 -0400 | [diff] [blame] | 24 | struct SkRect; |
| 25 | class SkMatrix; |
| 26 | |
Robert Phillips | e837e61 | 2019-11-15 11:02:50 -0500 | [diff] [blame] | 27 | class GrTextureOp { |
| 28 | public: |
Brian Salomon | b80ffee | 2018-05-23 16:39:39 -0400 | [diff] [blame] | 29 | |
Robert Phillips | e837e61 | 2019-11-15 11:02:50 -0500 | [diff] [blame] | 30 | /** |
| 31 | * Controls whether saturate() is called after the texture is color-converted to ensure all |
| 32 | * color values are in 0..1 range. |
| 33 | */ |
| 34 | enum class Saturate : bool { kNo = false, kYes = true }; |
Brian Salomon | f19f9ca | 2019-09-18 15:54:26 -0400 | [diff] [blame] | 35 | |
Robert Phillips | e837e61 | 2019-11-15 11:02:50 -0500 | [diff] [blame] | 36 | /** |
| 37 | * Creates an op that draws a sub-quadrilateral of a texture. The passed color is modulated by |
| 38 | * the texture's color. 'deviceQuad' specifies the device-space coordinates to draw, using |
Brian Salomon | 2432d06 | 2020-04-16 20:48:09 -0400 | [diff] [blame] | 39 | * 'localQuad' to map into the proxy's texture space. If non-null, 'subset' represents the |
Robert Phillips | e837e61 | 2019-11-15 11:02:50 -0500 | [diff] [blame] | 40 | * boundary for the strict src rect constraint. If GrAAType is kCoverage then AA is applied to |
| 41 | * the edges indicated by GrQuadAAFlags. Otherwise, GrQuadAAFlags is ignored. |
| 42 | * |
| 43 | * This is functionally very similar to GrFillRectOp::Make, except that the GrPaint has been |
| 44 | * deconstructed into the texture, filter, modulating color, and blend mode. When blend mode is |
| 45 | * src over, this will return a GrFillRectOp with a paint that samples the proxy. |
| 46 | */ |
Herb Derby | c76d409 | 2020-10-07 16:46:15 -0400 | [diff] [blame] | 47 | static GrOp::Owner Make(GrRecordingContext*, |
| 48 | GrSurfaceProxyView, |
| 49 | SkAlphaType srcAlphaType, |
| 50 | sk_sp<GrColorSpaceXform>, |
| 51 | GrSamplerState::Filter, |
| 52 | GrSamplerState::MipmapMode, |
| 53 | const SkPMColor4f&, |
| 54 | Saturate, |
| 55 | SkBlendMode, |
| 56 | GrAAType, |
| 57 | DrawQuad*, |
| 58 | const SkRect* subset = nullptr); |
Michael Ludwig | 009b92e | 2019-02-15 16:03:53 -0500 | [diff] [blame] | 59 | |
Michael Ludwig | fe13ca3 | 2019-11-21 10:26:41 -0500 | [diff] [blame] | 60 | // Automatically falls back to using one GrFillRectOp per entry if dynamic states are not |
Michael Ludwig | 379e496 | 2019-12-06 13:21:26 -0500 | [diff] [blame] | 61 | // supported, or if the blend mode is not src-over. 'cnt' is the size of the entry array. |
| 62 | // 'proxyCnt' <= 'cnt' and represents the number of proxy switches within the array. |
Brian Salomon | eebe735 | 2020-12-09 16:37:04 -0500 | [diff] [blame] | 63 | static void AddTextureSetOps(GrSurfaceDrawContext*, |
Michael Ludwig | 7c12e28 | 2020-05-29 09:54:07 -0400 | [diff] [blame] | 64 | const GrClip* clip, |
Michael Ludwig | fe13ca3 | 2019-11-21 10:26:41 -0500 | [diff] [blame] | 65 | GrRecordingContext*, |
Robert Phillips | e40495d | 2021-07-20 09:40:13 -0400 | [diff] [blame^] | 66 | GrTextureSetEntry[], |
Michael Ludwig | fe13ca3 | 2019-11-21 10:26:41 -0500 | [diff] [blame] | 67 | int cnt, |
Michael Ludwig | 379e496 | 2019-12-06 13:21:26 -0500 | [diff] [blame] | 68 | int proxyRunCnt, |
Michael Ludwig | fe13ca3 | 2019-11-21 10:26:41 -0500 | [diff] [blame] | 69 | GrSamplerState::Filter, |
Brian Salomon | e69b9ef | 2020-07-22 11:18:06 -0400 | [diff] [blame] | 70 | GrSamplerState::MipmapMode, |
Michael Ludwig | fe13ca3 | 2019-11-21 10:26:41 -0500 | [diff] [blame] | 71 | Saturate, |
| 72 | SkBlendMode, |
| 73 | GrAAType, |
| 74 | SkCanvas::SrcRectConstraint, |
| 75 | const SkMatrix& viewMatrix, |
| 76 | sk_sp<GrColorSpaceXform> textureXform); |
Michael Ludwig | a3c45c7 | 2019-01-17 17:26:48 -0500 | [diff] [blame] | 77 | |
Robert Phillips | e837e61 | 2019-11-15 11:02:50 -0500 | [diff] [blame] | 78 | #if GR_TEST_UTILS |
| 79 | static uint32_t ClassID(); |
| 80 | #endif |
| 81 | |
| 82 | private: |
| 83 | class BatchSizeLimiter; |
| 84 | }; |
| 85 | |
Hal Canary | 30e4bdf | 2019-07-02 10:31:45 -0400 | [diff] [blame] | 86 | #endif // GrTextureOp_DEFINED |