Heather Miller | 118a407 | 2019-07-25 11:33:30 -0400 | [diff] [blame] | 1 | Skia Graphics Release Notes |
| 2 | |
| 3 | This file includes a list of high level updates for each milestone release. |
| 4 | |
Hal Canary | 9e514a1 | 2019-10-01 15:15:36 -0400 | [diff] [blame] | 5 | * * * |
Mike Reed | 430470d | 2019-09-12 17:09:12 -0400 | [diff] [blame] | 6 | |
Heather Miller | e4bcbf8 | 2020-04-03 12:01:51 -0400 | [diff] [blame] | 7 | Milestone 84 |
| 8 | |
Greg Daniel | c1ad77c | 2020-05-06 11:40:03 -0400 | [diff] [blame] | 9 | * GrContext::createBackendTexture functions that initialize the texture no longer |
| 10 | guarantee that all the data has been uploaded and the gpu is done with the texture. |
| 11 | Instead the client can assume the upload work has been submitted to the gpu and they |
| 12 | must wait for that work to finish before deleting the texture. This can be done via |
| 13 | their own synchronization or by passing in a finish proc into the create calls which |
| 14 | will be called when it is safe to delete the texture (at least in terms of work |
| 15 | done during the create). |
| 16 | https://review.skia.org/286517 |
Heather Miller | e4bcbf8 | 2020-04-03 12:01:51 -0400 | [diff] [blame] | 17 | |
Mike Reed | 5265373 | 2020-05-05 14:40:42 -0400 | [diff] [blame] | 18 | * Remove unused SkMaskFilter helpers: compbine, compose |
| 19 | Note: shadermaskfilter will likely be removed next (clipShader should serve) |
| 20 | |
Xianzhu Wang | a91e478 | 2020-05-01 09:34:57 -0700 | [diff] [blame] | 21 | * Add back SkCanvas::kPreserveLCDText_SaveLayerFlag to indicate that saveLayer() |
| 22 | will preserve LCD-text. All text in the layer must be drawn on opaque background |
| 23 | to ensure correct rendering. |
| 24 | |
Leon Scroggins III | 63cfb36 | 2020-04-24 13:00:48 -0400 | [diff] [blame] | 25 | * Add the new directory client_utils/ for code that is specific to a single client and |
| 26 | should be considered separate from Skia proper. Move SkFrontBufferedStream into the |
| 27 | subdir android/. |
| 28 | |
Mike Klein | d5cba9d | 2020-04-24 07:44:50 -0500 | [diff] [blame] | 29 | * SkBitmap and SkPixmap's erase() methods now treat their color parameters |
| 30 | consistently with the rest of Skia, with all SkColors and any untagged |
| 31 | SkColor4fs interpreted as sRGB, not as a color in the bitmap's color space. |
| 32 | SkPixmap::erase(SkColor4f) now takes an SkColorSpace, so you can pass |
| 33 | pixmap.colorSpace() if you want the old behavior. |
| 34 | |
Mike Reed | d276e3f | 2020-04-14 15:44:21 -0400 | [diff] [blame] | 35 | * SkCamera.h and SkMatrix44.h are DEPRECATED. |
Mike Reed | 14f62de | 2020-04-14 11:35:40 -0400 | [diff] [blame] | 36 | Use SkM44 if you want to have 3d transformations. |
| 37 | |
Ben Wagner | cc81e20 | 2020-04-09 13:00:44 -0400 | [diff] [blame] | 38 | * Changed Dilate and Erode image filters to take SkScalar for radius instead of int. While |
| 39 | the image filters themselves are defined in terms of discrete pixels, the radii provided by |
| 40 | the user are mapped through the CTM so taking ints forced over discretization. After mapping |
| 41 | through the CTM the radii are now rounded to pixels. |
| 42 | https://review.skia.org/281731 |
| 43 | https://review.skia.org/282636 |
| 44 | |
Greg Daniel | 8561fc2 | 2020-04-08 12:52:51 -0400 | [diff] [blame] | 45 | * Updated the contract of GrContext and SkSurface flush calls in regards to semaphores. Made it |
| 46 | clear that the caller is responsible for deleting any initialized semaphores after the flush |
| 47 | call regardless if we were able to submit them or not. Also, allows skia to only submit a |
| 48 | subset of the requested semaphores if we failed to create some. |
| 49 | https://review.skia.org/282265 |
| 50 | |
| 51 | |
Brian Osman | 62a0fb2 | 2020-04-07 13:48:15 -0400 | [diff] [blame] | 52 | * SkCanvas::drawVertices will now always fill the triangles specified by the vertices. Previously, |
| 53 | vertices with no colors and no (texture coordinates or shader) would be drawn in wireframe. |
| 54 | https://review.skia.org/282043 |
| 55 | |
Heather Miller | e4bcbf8 | 2020-04-03 12:01:51 -0400 | [diff] [blame] | 56 | * * * |
| 57 | |
Heather Miller | 6c13871 | 2020-03-16 10:50:49 -0400 | [diff] [blame] | 58 | Milestone 83 |
Heather Miller | d5153bb | 2019-10-17 00:03:36 -0400 | [diff] [blame] | 59 | |
Kevin Lubick | 988ce04 | 2020-03-25 13:13:20 -0400 | [diff] [blame] | 60 | * Remove localmatrix option from SkShaders::[Blend, Lerp] |
| 61 | |
Jim Van Verth | 05d0919 | 2020-03-20 11:23:39 -0400 | [diff] [blame] | 62 | * Fill out Direct3D parameters for backend textures and backend rendertargets. |
| 63 | |
Brian Salomon | bc074a6 | 2020-03-18 10:06:13 -0400 | [diff] [blame] | 64 | * SkImage::makeTextureImage() takes an optional SkBudgeted param |
Michael Ludwig | b0cee9b | 2020-03-12 10:52:15 -0400 | [diff] [blame] | 65 | |
Brian Salomon | f4ba4ec | 2020-03-19 15:54:28 -0400 | [diff] [blame] | 66 | * Made non-GL builds of GPU backend more robust. |
| 67 | https://review.skia.org/277456 |
| 68 | |
| 69 | * MoltenVK support removed. Use Metal backend instead. |
| 70 | https://review.skia.org/277612 |
Heather Miller | 6c13871 | 2020-03-16 10:50:49 -0400 | [diff] [blame] | 71 | |
| 72 | * * * |
| 73 | |
| 74 | Milestone 82 |
| 75 | |
Michael Ludwig | b0cee9b | 2020-03-12 10:52:15 -0400 | [diff] [blame] | 76 | * Removed drawBitmap and related functions from SkDevice; all public drawBitmap functions on |
| 77 | SkCanvas automatically wrap the bitmap in an SkImage and call the equivalent drawImage function. |
| 78 | Drawing mutable SkBitmaps will now incur a mandatory copy. Switch to using SkImage directly or |
| 79 | mark the bitmap as immutable before drawing. |
| 80 | |
Brian Osman | dafbf12 | 2020-03-11 12:26:56 -0400 | [diff] [blame] | 81 | * Removed "volatile" flag from SkVertices. All SkVertices objects are assumed to be |
| 82 | volatile (the previous default behavior). |
| 83 | |
Michael Ludwig | b0cee9b | 2020-03-12 10:52:15 -0400 | [diff] [blame] | 84 | * Removed exotic legacy bitmap functions from SkCanvas (drawBitmapLattic, drawBitmapNine); the |
| 85 | exotic SkImage functions still exist. |
| 86 | |
Leon Scroggins III | a77f30c | 2020-03-09 14:23:30 -0400 | [diff] [blame] | 87 | * Make it possible to selectively turn on/off individual encoders/decoders, |
| 88 | using skia_use_(libpng/libjpeg_turbo/libwebp)(decode/encode). |
| 89 | |
Greg Daniel | 456f9b5 | 2020-03-05 19:14:18 +0000 | [diff] [blame] | 90 | * Removed GrGpuResource, GrSurface, and GrTexture from public api. These were not |
Greg Daniel | 7c90211 | 2020-03-06 13:07:10 -0500 | [diff] [blame] | 91 | meant to be public, and we now can move them into src. Also removed getTexture |
| 92 | function from SkImage.h |
Greg Daniel | 456f9b5 | 2020-03-05 19:14:18 +0000 | [diff] [blame] | 93 | |
Mike Reed | 5caf935 | 2020-03-02 14:57:09 -0500 | [diff] [blame] | 94 | * Removed Bones from SkVertices |
| 95 | |
Brian Salomon | d857545 | 2020-02-25 12:13:29 -0500 | [diff] [blame] | 96 | * Added a field to GrContextOptions that controls whether GL errors are checked after |
| 97 | GL calls that allocate textures, etc. It also controls checking for shader compile |
| 98 | success, and program linking success. |
| 99 | |
Robert Phillips | 1cec4d5 | 2020-02-24 08:38:34 -0500 | [diff] [blame] | 100 | * Made SkDeferredDisplayList.h officially part of the public API (i.e., moved it to |
| 101 | include/core). Also added a ProgramIterator to SkDeferredDisplayList which allows |
| 102 | clients to pre-compile some of the shaders the DDL requires. |
| 103 | |
Robert Phillips | b3c061a | 2020-02-13 13:24:47 -0500 | [diff] [blame] | 104 | * Added two new helper methods to SkSurfaceCharacterization: createBackendFormat and |
| 105 | createFBO0. These make it easier for clients to create new surface characterizations that |
| 106 | differ only a little from an existing surface characterization. |
| 107 | |
Brian Osman | 788b916 | 2020-02-07 10:36:46 -0500 | [diff] [blame] | 108 | * Removed SkTMax and SkTMin. |
Brian Osman | 5f3d9f7 | 2020-02-06 14:51:46 -0500 | [diff] [blame] | 109 | * Removed SkTClamp and SkClampMax. |
Brian Osman | aba642c | 2020-02-06 12:52:25 -0500 | [diff] [blame] | 110 | * Removed SkScalarClampMax and SkScalarPin. |
Brian Osman | 7f36405 | 2020-02-06 11:25:43 -0500 | [diff] [blame] | 111 | * Removed SkMax32 and SkMin32. |
Brian Osman | 116b33e | 2020-02-05 13:34:09 -0500 | [diff] [blame] | 112 | * Removed SkMaxScalar and SkMinScalar. |
| 113 | |
Allen Bauer | a428c7b | 2020-02-04 14:27:22 -0800 | [diff] [blame] | 114 | * SkColorSetA now warns if the result is unused. |
| 115 | |
Leon Scroggins III | 196f319 | 2020-02-03 12:39:54 -0500 | [diff] [blame] | 116 | * An SkImageInfo with a null SkColorSpace passed to SkCodec::getPixels() and |
| 117 | related calls is treated as a request to do no color correction at decode |
| 118 | time. |
Dominik Röttsches | c9b06ca | 2020-01-31 18:13:37 +0200 | [diff] [blame] | 119 | |
Dominic Mazzoni | 7dfb46e | 2020-02-19 10:59:29 -0800 | [diff] [blame] | 120 | * Add new APIs to add attributes to document structure node when |
| 121 | creating a tagged PDF. |
| 122 | |
Dominik Röttsches | c9b06ca | 2020-01-31 18:13:37 +0200 | [diff] [blame] | 123 | * Remove CGFontRef parameter from SkCreateTypefaceFromCTFont. |
| 124 | Use CTFontManagerCreateFontDescriptorFromData instead of |
| 125 | CGFontCreateWithDataProvider to create CTFonts to avoid memory use issues. |
| 126 | |
Leon Scroggins III | 42a604f | 2020-02-06 15:47:58 -0500 | [diff] [blame] | 127 | * Added SkCodec:: and SkAndroidCodec::getICCProfile for reporting the native |
| 128 | ICC profile of an encoded image, even if it doesn't map to an SkColorSpace. |
Heather Miller | ebc4d62 | 2020-01-30 13:57:13 -0500 | [diff] [blame] | 129 | |
Yi Xu | 55bca41 | 2020-02-14 18:10:40 -0500 | [diff] [blame] | 130 | * SkSurface::ReplaceBackendTexture takes ContentChangeMode as a parameter, |
| 131 | which allow callers to specify whether retain a copy of the current content. |
Michael Ludwig | b0cee9b | 2020-03-12 10:52:15 -0400 | [diff] [blame] | 132 | |
| 133 | * Enforce the existing documentation in SkCanvas::saveLayer that it ignores |
| 134 | any mask filter on the restore SkPaint. The 'coverage' of a layer is |
Michael Ludwig | eced98b | 2020-03-03 10:39:41 -0500 | [diff] [blame] | 135 | ill-defined, and masking should be handled by pre-clipping or using the |
| 136 | auxiliary clip mask image of the SaveLayerRec. |
Yi Xu | 55bca41 | 2020-02-14 18:10:40 -0500 | [diff] [blame] | 137 | |
Heather Miller | ebc4d62 | 2020-01-30 13:57:13 -0500 | [diff] [blame] | 138 | * * * |
| 139 | |
| 140 | Milestone 81 |
| 141 | |
Brian Salomon | 87c3142 | 2020-01-22 09:59:56 -0500 | [diff] [blame] | 142 | * Added support for GL_NV_fence extension. |
Heather Miller | 2e046a2 | 2019-12-05 15:27:42 -0500 | [diff] [blame] | 143 | |
Leon Scroggins III | 3eedc97 | 2020-01-22 10:44:00 -0500 | [diff] [blame] | 144 | * Make SkImageInfo::validRowBytes require rowBytes to be pixel aligned. This |
| 145 | makes SkBitmap match the behavior of raster SkSurfaces in rejecting |
| 146 | non-aligned rowBytes. |
| 147 | |
Robert Phillips | 99dead9 | 2020-01-27 16:11:57 -0500 | [diff] [blame] | 148 | * Added an SkImage::MakeRasterFromCompressed entry point. Also updated |
| 149 | SkImage::MakeFromCompressed to decompress the compressed image data if |
| 150 | the GPU doesn't support the specified compression type (i.e., macOS Metal |
| 151 | doesn't support BC1_RGB8_UNORM so such compressed images will always be |
| 152 | decompressed on that platform). |
| 153 | |
Robert Phillips | b085527 | 2020-01-15 12:56:52 -0500 | [diff] [blame] | 154 | * Added support for BC1 RGBA compressed textures |
| 155 | |
Brian Osman | a88cab1 | 2020-01-09 10:21:44 -0500 | [diff] [blame] | 156 | * Added CachingHint to SkImage::makeRasterImage |
| 157 | |
Kevin Lubick | f5bc8fb | 2020-01-08 13:29:31 -0500 | [diff] [blame] | 158 | * Added SkAnimatedImage::getCurrentFrame() |
| 159 | |
Jim Van Verth | e276701 | 2020-01-08 12:15:44 -0500 | [diff] [blame] | 160 | * Add support to create an SkSurface from an MTKView, with delayed acquisition of |
| 161 | the MTLDrawable. |
| 162 | Entry point: SkSurface::MakeFromMTKView |
| 163 | |
Brian Salomon | 44207f3 | 2020-01-06 15:20:18 -0500 | [diff] [blame] | 164 | * Removed SkIRect::EmptyIRect(). Use SkIRect::MakeEmpty() instead. |
| 165 | https://review.skia.org/262382/ |
| 166 | |
Heather Miller | ebc4d62 | 2020-01-30 13:57:13 -0500 | [diff] [blame] | 167 | * Moved SkRuntimeEffect to public API. This is the new (experimental) interface to custom SkSL |
| 168 | shaders and color filters. |
Brian Osman | ee426f2 | 2020-01-02 11:55:24 -0500 | [diff] [blame] | 169 | |
Heather Miller | ebc4d62 | 2020-01-30 13:57:13 -0500 | [diff] [blame] | 170 | * Added BC1 compressed format support. Metal and Vulkan seem to only support the BC |
| 171 | formats on desktop machines. |
Robert Phillips | 8f259a0 | 2019-12-20 11:32:27 -0500 | [diff] [blame] | 172 | |
Heather Miller | ebc4d62 | 2020-01-30 13:57:13 -0500 | [diff] [blame] | 173 | * Added compressed format support for backend texture creation API. |
| 174 | This adds the following new entry points: |
| 175 | GrContext::compressedBackendFormat |
| 176 | GrContext::createCompressedBackendTexture |
| 177 | The latter method comes in variants that allow color-initialized and |
| 178 | compressed texture data initialized. |
Robert Phillips | b915c94 | 2019-12-17 14:44:37 -0500 | [diff] [blame] | 179 | |
Brian Salomon | a6069a1 | 2019-12-13 10:48:33 -0500 | [diff] [blame] | 180 | * Added SkMatrix::MakeTrans(SkIVector) |
| 181 | https://review.skia.org/259804 |
Heather Miller | 2e046a2 | 2019-12-05 15:27:42 -0500 | [diff] [blame] | 182 | |
Heather Miller | ebc4d62 | 2020-01-30 13:57:13 -0500 | [diff] [blame] | 183 | * * * |
| 184 | |
Heather Miller | 2e046a2 | 2019-12-05 15:27:42 -0500 | [diff] [blame] | 185 | Milestone 80 |
| 186 | |
Greg Daniel | f0e04f0 | 2019-12-04 15:17:54 -0500 | [diff] [blame] | 187 | * For Vulkan backend, we now require that the VkDevice, Queue, and Instance outlive |
| 188 | either the destruction or abandoning of the GrContext. Additionally, all |
| 189 | GrBackendTextures created via GrContext::createBackendTexture calls must be deleted |
| 190 | before destroying or abandoning the GrContext. |
| 191 | https://review.skia.org/257921 |
| 192 | |
Brian Salomon | 4e1066f | 2019-12-04 10:33:52 -0500 | [diff] [blame] | 193 | * Removed SkSize& SkSize::operator=(const SkISize&) |
| 194 | https://review.skia.org/257880 |
| 195 | |
Brian Salomon | 8a99a41 | 2019-12-04 11:05:35 -0500 | [diff] [blame] | 196 | * SkISize width() and height() now constexpr |
| 197 | https://review.skia.org/257680 |
| 198 | |
Brian Salomon | e21af50 | 2019-11-22 16:56:36 -0500 | [diff] [blame] | 199 | * Added SkMatrix::MakeTrans(SkVector) and SkRect::makeOffset(SkVector). |
| 200 | https://review.skia.org/255782 |
| 201 | |
Brian Salomon | c75bc03 | 2019-11-11 13:47:25 -0500 | [diff] [blame] | 202 | * Added SkImageInfo::MakeA8(SkISize) and added optional color space parameter to |
| 203 | SkImageInfo::MakeN32Premul(SkISize). |
Heather Miller | cc13acb | 2019-10-22 15:45:45 -0400 | [diff] [blame] | 204 | |
Kevin Lubick | 47bd9f1 | 2019-11-08 06:55:15 -0800 | [diff] [blame] | 205 | * Added dimensions() and getFrameCount() to SkAnimatedImage |
| 206 | https://review.skia.org/253542 |
| 207 | |
Brian Osman | 09ee112 | 2019-11-05 11:41:16 -0500 | [diff] [blame] | 208 | * Removed SkMatrix44 version of toXYZD50 from SkColorSpace. Switched to skcms types in |
| 209 | transferFn, invTrasnferFn, and gamutTransformTo functions. |
| 210 | https://review.skia.org/252596 |
| 211 | |
Brian Osman | e36d030 | 2019-11-01 17:10:28 -0400 | [diff] [blame] | 212 | * Removed rotation and YUV support from SkColorMatrix |
| 213 | https://review.skia.org/252188 |
| 214 | |
Brian Osman | 2b73e66 | 2019-11-01 10:02:24 -0400 | [diff] [blame] | 215 | * Added kBT2020_SkYUVColorSpace. This is BT.2020's YCbCr conversion (non-constant-luminance). |
| 216 | https://review.skia.org/252160 |
| 217 | |
Brian Salomon | 3683a4f | 2019-10-28 09:16:47 -0400 | [diff] [blame] | 218 | * Remove old async read pixels APIs |
| 219 | https://review.skia.org/251198 |
| 220 | |
Michael Ludwig | cc83687 | 2019-11-04 15:01:52 -0500 | [diff] [blame] | 221 | * Expose SkBlendModeCoeff and SkBlendMode_AsCoeff for Porter-Duff blend modes. |
| 222 | https://review.skia.org/252600 |
| 223 | |
Heather Miller | cc13acb | 2019-10-22 15:45:45 -0400 | [diff] [blame] | 224 | * * * |
| 225 | |
| 226 | Milestone 79 |
Heather Miller | d5153bb | 2019-10-17 00:03:36 -0400 | [diff] [blame] | 227 | |
Mike Reed | a32654c | 2019-10-04 10:18:34 -0400 | [diff] [blame] | 228 | * SkTextBlob::Iter to discover the glyph indices and typefaces in each run |
| 229 | https://skia-review.googlesource.com/246296 |
| 230 | |
Brian Osman | 11e6aa8 | 2019-10-16 13:58:42 -0400 | [diff] [blame] | 231 | * Added support for PQ and HLG transfer functions to SkColorSpace. |
Heather Miller | d5153bb | 2019-10-17 00:03:36 -0400 | [diff] [blame] | 232 | https://skia-review.googlesource.com/c/skia/+/249000 |
Brian Osman | 11e6aa8 | 2019-10-16 13:58:42 -0400 | [diff] [blame] | 233 | |
Greg Daniel | 8b66617 | 2019-10-09 12:38:22 -0400 | [diff] [blame] | 234 | * Added new api on GrContext ComputeImageSize. This replaces the hold static helper |
| 235 | ComputeTextureSize. |
Heather Miller | d5153bb | 2019-10-17 00:03:36 -0400 | [diff] [blame] | 236 | https://skia-review.googlesource.com/c/skia/+/247337 |
Hal Canary | 9e514a1 | 2019-10-01 15:15:36 -0400 | [diff] [blame] | 237 | |
Brian Salomon | 9241a6d | 2019-10-03 13:26:54 -0400 | [diff] [blame] | 238 | * New versions of SkSurface async-rescale-and read APIs that allow client to extend |
| 239 | the lifetime of the result data. Old versions are deprecated. |
| 240 | https://review.skia.org/245457 |
| 241 | |
Hal Canary | 9e514a1 | 2019-10-01 15:15:36 -0400 | [diff] [blame] | 242 | * Add SkColorInfo. It's dimensionless SkImageInfo. |
| 243 | https://review.skia.org/245261 |
| 244 | |
| 245 | * Added SkPixmap-based createBackendTexture method to GrContext. This allows clients to create |
| 246 | backend resources (initialized with texture data) that Skia/Ganesh doesn't know about/track. |
| 247 | https://review.skia.org/244676 |
| 248 | |
| 249 | * Add explicit src and dst colorspace parameters to SkColorFilter::filterColor4f() |
| 250 | https://review.skia.org/244882 |
| 251 | |
| 252 | * Remove Vulkan/Metal float32 RGBA texture support |
| 253 | https://review.skia.org/244881 |
| 254 | |
| 255 | * Add SkSurface::MakeFromCAMetalLayer |
| 256 | https://review.skia.org/242563 |
| 257 | |
| 258 | * Added kAlpha_F16_SkColorType, kRG_F16_SkColorType and kRGBA_16161616_SkColorType. |
| 259 | This is intended to help support HDR YUV uses case (e.g., P010 and P016). As such, |
| 260 | the addition is focused on allowing creation of SkPixmaps and SkImages and not |
| 261 | SkSurfaces (i.e., who wants to render to render to these?) |
| 262 | https://review.skia.org/241357 |
| 263 | |
| 264 | * Start to move nested SkPath types (e.g. Direction, Verb) up to root level in SkPathTypes.h |
| 265 | https://review.skia.org/241079 |
| 266 | |
| 267 | * Remove isRectContour and ksNestedFillRects from public |
| 268 | https://review.skia.org/241078 |
| 269 | |
| 270 | * Added kRG_88_SkColorType. This is intended to help support YUV uses case (e.g., NV12). |
| 271 | As such, the addition is focused on allowing creation of SkPixmaps and SkImages and not |
| 272 | SkSurfaces (i.e., who wants to render to RG?) |
| 273 | https://review.skia.org/239930 |
| 274 | https://review.skia.org/235797 |
| 275 | |
Brian Osman | 172bb44 | 2019-09-06 10:16:02 -0400 | [diff] [blame] | 276 | * Make the size of program/pipeline caches configurable via |
| 277 | GrContextOptions::fRuntimeProgramCacheSize |
| 278 | https://review.skia.org/239756 |
| 279 | |
Hal Canary | 9e514a1 | 2019-10-01 15:15:36 -0400 | [diff] [blame] | 280 | * Added kAlpha_16_SkColorType and kRG_1616_SkColorType. This is intended to help support HDR YUV |
| 281 | uses case (e.g., P010 and P016). As such, the addition is focused on allowing creation of |
| 282 | SkPixmaps and SkImages and not SkSurfaces (i.e., who wants to render to render to these?) |
| 283 | https://review.skia.org/239930 |
| 284 | |
| 285 | * Add GrContext::precompileShader to allow up-front compilation of previously-cached shaders. |
| 286 | https://review.skia.org/239438 |
| 287 | |
| 288 | * * * |
| 289 | |
Heather Miller | 118a407 | 2019-07-25 11:33:30 -0400 | [diff] [blame] | 290 | Milestone 78 |
| 291 | |
Hal Canary | 2af5db7 | 2019-08-20 11:28:37 -0400 | [diff] [blame] | 292 | * SkDrawLooper is no longer supported in SkPaint or SkCanvas. |
Hal Canary | 3b0e7f6 | 2019-08-20 14:52:02 -0400 | [diff] [blame] | 293 | https://review.skia.org/230579 |
| 294 | https://review.skia.org/231736 |
Mike Reed | 9dc0b9e | 2019-07-29 17:52:48 -0400 | [diff] [blame] | 295 | |
Hal Canary | 3b0e7f6 | 2019-08-20 14:52:02 -0400 | [diff] [blame] | 296 | * SkPath::Iter::next() now ignores its consumDegenerates bools. Those will so |
| 297 | go away entirely |
| 298 | https://review.skia.org/235104 |
Mike Reed | ba7e9a6 | 2019-08-16 13:30:34 -0400 | [diff] [blame] | 299 | |
Hal Canary | 2af5db7 | 2019-08-20 11:28:37 -0400 | [diff] [blame] | 300 | * SkImage: new factories: DecodeToRaster, DecodeToTexture |
Hal Canary | 3b0e7f6 | 2019-08-20 14:52:02 -0400 | [diff] [blame] | 301 | https://review.skia.org/234476 |
Mike Reed | a5acbf9 | 2019-08-14 11:08:41 -0400 | [diff] [blame] | 302 | |
Hal Canary | 2af5db7 | 2019-08-20 11:28:37 -0400 | [diff] [blame] | 303 | * SkImageFilter API refactor started: |
| 304 | - Provide new factory API in include/effects/SkImageFilters |
| 305 | - Consolidated enum types to use SkTileMode and SkColorChannel |
| 306 | - Hide filter implementation classes |
Hal Canary | 3b0e7f6 | 2019-08-20 14:52:02 -0400 | [diff] [blame] | 307 | - Hide previously public functions on SkImageFilter that were intended for |
| 308 | internal use only |
| 309 | https://review.skia.org/230198 |
| 310 | https://review.skia.org/230876 |
| 311 | https://review.skia.org/231256 |
Florin Malita | 4800949 | 2019-08-01 17:20:19 -0400 | [diff] [blame] | 312 | |
Hal Canary | 3b0e7f6 | 2019-08-20 14:52:02 -0400 | [diff] [blame] | 313 | * SkColorFilters::HSLAMatrix - new matrix color filter operating in HSLA |
| 314 | space. |
| 315 | https://review.skia.org/231736 |
Brian Salomon | d4764a1 | 2019-08-08 12:08:24 -0400 | [diff] [blame] | 316 | |
Hal Canary | 3b0e7f6 | 2019-08-20 14:52:02 -0400 | [diff] [blame] | 317 | * Modify GrBackendFormat getters to not return internal pointers. Use an enum |
| 318 | class for GL formats. |
| 319 | https://review.skia.org/233160 |
Brian Salomon | ec22b1a | 2019-08-09 09:41:48 -0400 | [diff] [blame] | 320 | |
Hal Canary | 2af5db7 | 2019-08-20 11:28:37 -0400 | [diff] [blame] | 321 | * Expose GrContext::dump() when SK_ENABLE_DUMP_GPU is defined. |
Hal Canary | 3b0e7f6 | 2019-08-20 14:52:02 -0400 | [diff] [blame] | 322 | https://review.skia.org/233557 |
Sergey Ulanov | 2739fd2 | 2019-08-11 22:46:33 -0700 | [diff] [blame] | 323 | |
Hal Canary | 3b0e7f6 | 2019-08-20 14:52:02 -0400 | [diff] [blame] | 324 | * Vulkan backend now supports YCbCr sampler for I420 Vulkan images that are |
| 325 | not backed by external images. |
| 326 | https://review.skia.org/233776 |
Leon Scroggins III | 6154ac4 | 2019-08-14 11:29:29 -0400 | [diff] [blame] | 327 | |
Hal Canary | 3b0e7f6 | 2019-08-20 14:52:02 -0400 | [diff] [blame] | 328 | * Add SkCodec::SelectionPolicy for distinguishing between decoding a still |
| 329 | image or an image sequence for a container format that has both (e.g. HEIF). |
| 330 | https://review.skia.org/232839 |
Brian Osman | d566e2e | 2019-08-14 13:19:04 -0400 | [diff] [blame] | 331 | |
Hal Canary | 3b0e7f6 | 2019-08-20 14:52:02 -0400 | [diff] [blame] | 332 | * SkImage::makeTextureImage and SkImage::MakeCrossContextFromPixmap no longer |
| 333 | take an SkColorSpace parameter. It was unused. |
| 334 | https://review.skia.org/234579 |
| 335 | https://review.skia.org/234912 |
Brian Osman | d514837 | 2019-08-14 16:14:51 -0400 | [diff] [blame] | 336 | |
Hal Canary | 3b0e7f6 | 2019-08-20 14:52:02 -0400 | [diff] [blame] | 337 | * SkImage::reinterpretColorSpace - to reinterpret image contents in a new |
| 338 | color space. |
| 339 | https://review.skia.org/234328 |
Brian Osman | 4c3fd34 | 2019-08-15 12:13:53 -0400 | [diff] [blame] | 340 | |
Hal Canary | 2af5db7 | 2019-08-20 11:28:37 -0400 | [diff] [blame] | 341 | * Removed SkImage::MakeCrossContextFromEncoded. |
Hal Canary | 3b0e7f6 | 2019-08-20 14:52:02 -0400 | [diff] [blame] | 342 | https://review.skia.org/234912 |
Hal Canary | 2af5db7 | 2019-08-20 11:28:37 -0400 | [diff] [blame] | 343 | |
Jim Van Verth | 066ceb1 | 2019-08-28 14:35:55 -0400 | [diff] [blame] | 344 | * Add Metal support for GrFence, GrSemaphore, and GrBackendSemaphore |
| 345 | https://review.skia.org/233416 |
| 346 | |
Hal Canary | 2af5db7 | 2019-08-20 11:28:37 -0400 | [diff] [blame] | 347 | * SkMallocPixelRef: remove MakeDirect and MakeWithProc from API. |
| 348 | https://review.skia.org/234660 |
Mike Klein | 334a642 | 2019-08-27 08:12:15 -0500 | [diff] [blame] | 349 | |
Michael Ludwig | a595f86 | 2019-08-27 15:25:49 -0400 | [diff] [blame] | 350 | * Remove 4-parameter variant of SkRect::join() and intersect(), and |
| 351 | noemptycheck variants of intersect(). |
| 352 | https://review.skia.org/235832 |
| 353 | https://review.skia.org/237142 |
| 354 | |
Mike Klein | 334a642 | 2019-08-27 08:12:15 -0500 | [diff] [blame] | 355 | * Remove unused sk_sp comparison operators. |
| 356 | https://review.skia.org/236942 |
Michael Ludwig | a595f86 | 2019-08-27 15:25:49 -0400 | [diff] [blame] | 357 | |
| 358 | * Add SkColor4f variant to experimental_DrawEdgeAAQuad for SkiaRenderer. |
| 359 | https://review.skia.org/237492 |
Robert Phillips | cf39f37 | 2019-09-03 10:29:20 -0400 | [diff] [blame] | 360 | |
| 361 | * Deprecated maxCount resource cache limit for Ganesh. |
| 362 | This hasn't been relevant for a long time. |
| 363 | |
Brian Osman | a66081d | 2019-09-03 14:59:26 -0400 | [diff] [blame] | 364 | * Changed GrContextOptions' fDisallowGLSLBinaryCaching to fShaderCacheStrategy, |
| 365 | and allow caching SkSL. |
| 366 | https://review.skia.org/238856 |
Chris Dalton | 38f0a49 | 2019-10-07 11:51:07 -0600 | [diff] [blame] | 367 | |
| 368 | * Use GL_QCOM_TILED_RENDERING to explicitly discard stencil |
Heather Miller | cc13acb | 2019-10-22 15:45:45 -0400 | [diff] [blame] | 369 | |
| 370 | * Added RELEASE_NOTES.txt file |
| 371 | https://review.skia.org/229760 |
Chris Dalton | 5a2f962 | 2019-12-27 14:56:38 -0700 | [diff] [blame] | 372 | |
| 373 | * Implemented internal support for OpenGL tessellation. |