blob: 9bd12d085580813b6ddb6a92389874c5546731f7 [file] [log] [blame]
Heather Miller118a4072019-07-25 11:33:30 -04001Skia Graphics Release Notes
2
3This file includes a list of high level updates for each milestone release.
4
Kevin Lubick7b426f52021-11-05 09:41:03 -04005Milestone 98
6------------
7 * The following functions and methods are not defined in SkSurface when SK_SUPPORT_GPU is 0:
8 MakeFromBackendTexture, MakeFromBackendRenderTarget, MakeRenderTarget,
9 getBackendTexture, getBackendRenderTarget, replaceBackendTexture. flush() with parameters
10 was removed as well. These were all no-ops anyway when just the CPU backend was compiled in
11 (noting that flush() and flushAndSubmit() are still no-ops on the CPU backend).
12 * GrBackendSemaphore only includes methods that match the GPU backend that Skia was compiled for.
13 For example, initVulkan and vkSemaphore are not defined unless the Vulkan backend is compiled
14 into Skia.
Brian Osmane262e682021-11-15 15:25:37 -050015 * Surfaces and images are now limited to just under 2GB of total size. Previously, larger images
16 could be created, but the CPU backend would fail to index them correctly.
Brian Salomon90ef83a2021-11-18 10:14:06 -050017 * SkCanvas::drawVertices and SkCanvas::drawPatch variants that did not take SkBlendMode are
18 removed.
Derek Sollenbergerad9d7742021-11-22 14:57:40 -050019 * SkImageFilters::RuntimeShader is a new public API that enables adding RuntimeShaderEffects into
20 image filter graph.
21
22* * *
Kevin Lubick7b426f52021-11-05 09:41:03 -040023
Greg Daniele82c1c12021-10-20 12:03:54 -040024Milestone 97
25------------
26 * Added basic support for vulkan DRM modifiers. All of these are treated as read only textures
27 internally (versus querying specific modifier support). Clients can either pass a flag to Vulkan
28 GrBackendFormat to say it uses modifiers or pass the VK_IMAGE_TILING_DRM_FORMAT_MODIFIER_EXT
29 to a GrBackendTexture via the GrVkImageInfo struct.
Kevin Lubick146cfcc2021-10-28 07:31:32 -040030 * The following functions and methods are not defined in SkImage when SK_SUPPORT_GPU is 0:
31 MakeTextureFromCompressed, MakeFromTexture, MakeFromCompressedTexture,
32 MakeCrossContextFromPixmap, MakeFromAdoptedTexture, MakeFromYUVATextures,
33 MakeFromYUVAPixmaps, MakePromiseTexture, MakePromiseYUVATexture, MakeBackendTextureFromSkImage,
34 flush, flushAndSubmit, getBackendTexture, makeTextureImage.
35 These were all no-ops anyway when just the CPU backend was compiled in.
Kevin Lubick7b426f52021-11-05 09:41:03 -040036
37* * *
Greg Daniele82c1c12021-10-20 12:03:54 -040038
John Stiles2f7c3f52021-10-08 09:53:43 -040039Milestone 96
40------------
41 * SkRuntimeEffect no longer clamps the RGB values of an effect's output to the range 0..A.
42 This makes it easier to use a hierarchy of SkSL shaders where intermediate values do not
43 represent colors but are, for example, non-color inputs to a lighting model.
44 http://review.skia.org/452558
45
Greg Daniele82c1c12021-10-20 12:03:54 -040046* * *
47
Ben Wagnerd532a9e2021-09-10 14:03:46 -040048Milestone 95
49------------
50 * Minimum supported iOS raised from 8 to 11. Skia may build back to iOS 9 but versions older
51 than 11 are not tested. Community contributions to support versions 9 and 10 of iOS may be
52 considered, but they may not be complex as they cannot be tested.
53
Heather Miller44cd93f2021-07-16 11:00:59 -040054* * *
55
56Milestone 94
57------------
Jim Van Verth076be662021-08-11 10:37:22 -040058 * Metal backend has been changed to track command buffer resources manually
59 rather than using retained resources.
60 https://review.skia.org/432878
61
Michael Ludwigcfd204a2021-07-23 11:48:34 -040062 * Added virtual onResetClip() to SkCanvas for Android Framework, to emulate the soon-to-be-removed
63 expanding clip ops guarded by SK_SUPPORT_DEPRECATED_CLIPOPS.
64 https://review.skia.org/430897
Mike Reed9f745d92021-06-23 11:27:19 -040065
Michael Ludwiga0438e62021-08-06 11:19:26 -040066 * Removed SK_SUPPORT_DEPRECATED_CLIPOPS build flag. Clips can only be intersect and difference.
67 https://review.skia.org/436565
68
Brian Osmaneb0f29d2021-08-04 11:34:16 -040069 * There is a new syntax for invoking (sampling) child effects in SkSL. Previously, children
70 (shaders, colorFilters, blenders) were invoked using different overloads of `sample`. That
Brian Osmancbfa34a2021-09-02 09:26:27 -040071 syntax is deprecated (but still supported). Now, the child behaves like an object, with a method
72 name `eval`. The arguments to these `eval` methods are the same as the arguments in the old
73 `sample` intrinsics. For example:
74 // Old syntax:
75 sample(shader, xy)
76 sample(colorFilter, color)
77 sample(blender, srcColor, dstColor)
78 // New syntax:
79 shader.eval(xy)
80 colorFilter.eval(color)
81 blender.eval(srcColor, dstColor)
82 https://review.skia.org/444735
Brian Osmaneb0f29d2021-08-04 11:34:16 -040083
Hal Canary9e514a12019-10-01 15:15:36 -040084* * *
Mike Reed430470d2019-09-12 17:09:12 -040085
Heather Miller0ea0e752021-05-21 13:20:02 -040086Milestone 93
87------------
Brian Osmancc2d0732021-06-17 09:36:58 -040088 * Removed SkPaint::getHash
89 https://review.skia.org/419336
Heather Miller0ea0e752021-05-21 13:20:02 -040090
Brian Osmanf62632c2021-06-18 10:41:23 -040091 * Removed SkShaders::Lerp. It was unused (and easy to replicate with SkRuntimeEffect).
92 https://review.skia.org/419796
93
Adlai Holler4ff60722021-06-21 11:11:44 -040094 * The default value of GrContextOptions::fReduceOpsTaskSplitting is now enabled.
95 https://review.skia.org/419836
96
Heather Miller44cd93f2021-07-16 11:00:59 -040097 * Removed SkMatrix44
98
Heather Miller0ea0e752021-05-21 13:20:02 -040099* * *
100
Heather Miller55718652021-04-09 14:35:53 -0400101Milestone 92
102------------
Michael Ludwig4e1c1a72021-05-11 11:39:36 -0400103 * Hides SkPathEffect::computeFastBounds() from public API; external subclasses of SkPathEffect
104 must implement onComputeFastBounds() but can return false to signal it's not computable.
105 https://review.skia.org/406140
106
Michael Ludwigdaa9b8e2021-05-05 09:05:10 -0400107 * Add SkM44::RectToRect constructor (SkM44's equivalent to SkMatrix::RectToRect)
108 https://review.skia.org/402957
109
Jim Van Verth38162b52021-04-27 12:23:53 -0400110 * Metal support has been removed for versions of iOS older than 10.0 and MacOS older than 10.14.
111 https://review.skia.org/401816
112
Brian Osmane49703f2021-04-19 11:15:24 -0400113 * Removed custom attributes from SkVertices and the corresponding `varying` feature from
114 SkRuntimeEffect.
115 https://review.skia.org/398222
Heather Miller55718652021-04-09 14:35:53 -0400116
Chris Dalton57ab06c2021-04-22 12:57:28 -0600117 * Dropped support for mixed samples. Mixed samples is no longer relevant for Ganesh. DMSAA and the
118 new Ganesh architecture both rely on full MSAA, and any platform where mixed samples is
119 supported will ultimately not use the old architecture.
120
Brian Osman4f009822021-04-28 09:41:06 -0400121 * SkRuntimeEffect::Make has been removed. It is replaced by MakeForShader and MakeForColorFilter.
122 These functions do stricter error checking on the SkSL, to ensure it is valid for a particular
123 stage of the Skia pipeline.
124 https://review.skia.org/402156
125
Heather Miller55718652021-04-09 14:35:53 -0400126* * *
127
Heather Miller4add8b32021-02-26 16:10:28 -0500128Milestone 91
129------------
Ethan Nicholasdaed2592021-03-04 14:30:25 -0500130 * The SkSL DSL API has been moved into public headers, although it is still under active
131 development and isn't quite ready for prime time yet.
132 https://review.skia.org/378496
Heather Miller4add8b32021-02-26 16:10:28 -0500133
Robert Phillips31798c22021-03-18 13:32:56 -0400134 * Skia's GPU backend no longer supports NVPR. Our more recent path renderers are more
135 performant and are not limited to nVidia hardware.
Brian Osmand18967c2021-04-01 09:56:07 -0400136
137 * SkRuntimeEffect now supports uniforms of type int, int2, int3, and int4. Per the OpenGL ES
138 Shading Language Version 1.00 specification, there are few guarantees about the representation
139 or range of integral types, and operations that assume integral representation (eg, bitwise),
140 are not supported.
141 https://review.skia.org/391856
142
Brian Osman5c625822021-04-06 14:28:07 -0400143 * SkRuntimeEffect requires that 'shader' variables be declared as 'uniform'. The deprecated
144 syntax of 'in shader' is no longer supported.
145 https://review.skia.org/393081
146
Heather Miller4add8b32021-02-26 16:10:28 -0500147* * *
148
Heather Millerd5412d92021-01-15 14:19:53 -0500149Milestone 90
150------------
Jim Van Verth2db4ba12021-02-22 09:41:27 -0500151 * Renamed use of sk_cf_obj in external Metal types to sk_cfp.
152 https://review.skia.org/372556
153
Brian Salomonbde1eb62021-02-18 09:02:14 -0500154 * GrDirectContext::ComputeImageSize() is removed. Use SkImage::textureSize() instead.
Brian Salomon441b33f2021-02-10 17:09:02 -0500155 https://review.skia.org/368621
Brian Salomonbde1eb62021-02-18 09:02:14 -0500156 https://review.skia.org/369317
157 https://review.skia.org/371958
Heather Millerd5412d92021-01-15 14:19:53 -0500158
Michael Ludwig7c6abf82021-02-04 12:32:33 -0500159 * Remove SkImageFilter::MakeMatrixFilter as it was unused and replaced with
160 SkImageFilters::MatrixTransform.
161 https://review.skia.org/366318
162
Brian Osman38316892021-01-29 14:32:09 -0500163 * Refactored particle system to use a single code string containing both Effect and Particle code.
164 Uniform APIs are now shared for all program entry points, and no longer prefixed with 'Effect'
165 or 'Particle'. For example, instead of `SkParticleEffect::effectUniformInfo` and
166 `SkParticleEffect::particleUniformInfo`, there is just `SkParticleEffect::uniformInfo`.
167
Michael Ludwig747c31e2021-01-28 13:20:16 -0500168 * Remove SkImageFilter::CropRect from the public API as it's no longer usable. All factories
169 work with 'SkRect', 'SkIRect', or nullable pointers to 'Sk[I]Rect'.
170 https://review.skia.org/361496
171
Michael Ludwiged552f82021-01-22 13:01:26 -0500172 * Remove deprecated SkImageFilter factory functions and supporting types. All default-provided
173 SkImageFilters are now only constructed via 'include/effects/SkImageFilters.h'
174 https://review.skia.org/357285
175
Brian Salomon04aef102021-01-23 11:41:54 -0500176 * Added SkRuntimeEffect::makeImage() to capture the output of an SkRuntimeEffect in an SkImage.
177 https://review.skia.org/357284
178
John Stiles20e92f72021-02-03 11:15:20 -0500179 * Updated SkRuntimeEffect::Make() to take an Options struct. It also now returns a Results struct
180 instead of a tuple.
181 https://review.skia.org/363785
John Stiles1f19ce22021-02-11 17:40:03 -0500182 https://review.skia.org/367060
John Stiles20e92f72021-02-03 11:15:20 -0500183
Brian Osmanf8637212021-02-03 14:30:27 -0500184 * Changed SkRuntimeEffect::Varying to have lower-case member names, with no 'f' prefix.
185 https://review.skia.org/365656
186
Brian Osmand76d1862021-02-03 14:48:41 -0500187 * Changed SkRuntimeEffect::Uniform to have lower-case member names, with no 'f' prefix.
188 https://review.skia.org/365696
189
Leon Scroggins IIIadd35d92020-12-15 15:58:53 -0500190 * Deprecate (and ignore) SkAndroidCodec::ExifOrientation
191 https://review.skia.org/344763
192
Michael Ludwigf5774272021-01-21 18:43:58 -0500193 * Fix several minor issues in lighting image filters:
194 - The spotlight falloff exponent is no longer clamped to [1, 128]. SVG 1.1 requires the specular
195 lighting effect's exponent (shininess) to be clamped; not the spotlight's falloff. Any such
196 parameter clamping is the client's responisibility, which makes Skia's lighting effect easily
197 adaptable to SVG 1.1 (clamp exponent) or SVG 2 (no clamp).
198 - Fix spotlight incorrectly scaling light within the cone angle.
199 - Move saturation of RGBA to after multiplying lighting intensity with the lighting color, which
200 improves rendering when diffuse and specular constants are greater than 1.
201 https://review.skia.org/355496
Heather Millerd5412d92021-01-15 14:19:53 -0500202
Adlai Hollerc44e21f2021-02-22 14:08:07 -0500203 * SkDeferredDisplayListRecorder::makePromiseTexture has moved to SkImage::MakePromiseTexture.
204 New code should use the new entry point – migration CLs will be coming soon.
205 https://review.skia.org/373716
206
Jim Van Verth351c9b52020-11-12 15:21:11 -0500207Milestone 89
208------------
Brian Salomon0c0b5a62021-01-11 14:40:44 -0500209 * Removed SkYUVAIndex and SkYUVASizeInfo. These were no longer used in any
210 public APIs.
211 https://review.skia.org/352497
212
Brian Osman7ff897a2021-01-11 13:10:59 -0500213 * Numerous changes to SkRuntimeEffect, aligning the capabilities and restrictions with
214 The OpenGL ES Shading Language 1.00 (aka, the shading language of OpenGL ES2 and WebGL 1.0).
215 All built-in functions from sections 8.1 through 8.6 implemented & tested on all backends.
216 Removed types and features that require newer versions of GLSL:
217 https://review.skia.org/346657 [Non-square matrices]
218 https://review.skia.org/347046 [uint, short, ushort, byte, ubyte]
219 https://review.skia.org/349056 [while and do-while loops]
220 https://review.skia.org/350030 [Bitwise operators and integer remainder]
221
Jim Van Verthea4aa392021-01-11 11:01:09 -0500222 * Add SkShadowUtils::GetLocalBounds. Generates bounding box for shadows
223 relative to path.
224 https://review.skia.org/351922
225
Brian Salomon4878b3e2021-01-08 18:11:33 -0500226 * Removed SkPerlinNoiseShader::MakeImprovedNoise.
227 https://review.skia.org/352057
228
Jim Van Verthea4aa392021-01-11 11:01:09 -0500229 * Removed deprecated version of MakeFromYUVATextures. Use the version
Brian Salomond12c91b2020-12-23 20:28:53 -0500230 that takes GrYUVABackendTextures instead.
231 https://review.skia.org/345174
Leon Scroggins IIIe4271602020-12-15 15:52:39 -0500232
233 * SkAnimatedImage: Always respect exif orientation
234 Replace SkPixmapPriv::ShouldSwapWidthHeight with
235 SkEncodedOriginSwapsWidthHeight.
236 https://review.skia.org/344762
237
Jim Van Verth63f03542020-12-16 11:56:11 -0500238 * Add kDirectionalLight_ShadowFlag support. If enabled, light position represents
239 a vector pointing towards the light, and light radius is blur radius at elevation 1.
240 https://review.skia.org/321792
Brian Salomonb5f880a2020-12-07 11:30:16 -0500241
Brian Salomon01ff5382020-12-15 16:06:26 -0500242 * Support GL_LUMINANCE8_ALPHA8 textures. These can be used with GrBackendTexture APIs
243 on GrDirectContext and as planes of YUVA images via GrYUVABackendTextures.
244 https://review.skia.org/344761
245
Brian Salomon8670c982020-12-08 16:39:32 -0500246 * Removed previously deprecated SkImage::MakeFromYUVATexturesCopyToExternal.
247 https://review.skia.org/342077
248
Brian Salomonb5f880a2020-12-07 11:30:16 -0500249 * Add versions of GrDirectContext::createBackendTexture and updateBackendTexture
250 that take a GrSurfaceOrigin. The previous versions are deprecated.
251 https://review.skia.org/341005
252
Michael Ludwige0dee012020-12-04 12:59:39 -0500253 * Remove support for deprecated kDontClipToLayer_SaveLayerFlag in SkCanvas::SaveLayerRec
254 https://review.skia.org/339988
255
Leon Scroggins III469d67e2020-11-11 12:45:40 -0500256 * Expose more info in SkCodec::FrameInfo
257 https://review.skia.org/339857
258
Michael Ludwiga2c40202020-11-24 13:14:04 -0500259 * Added dither control to the SkImageFilters::Shader factory.
260 https://review.skia.org/338156
Jim Van Verth351c9b52020-11-12 15:21:11 -0500261
Jim Van Verth9e640472020-11-19 12:59:06 -0500262 * Add MTLBinaryArchive parameter to GrMtlBackendContext. This allows
263 Skia to cache PipelineStates in the given archive for faster
264 shader compiles on future runs. The client must handle loading and
265 saving of the archive.
266 https://review.skia.org/333758
267
Brian Salomonfcc4e852020-11-18 08:46:44 -0500268 * Deprecated enum SkYUVAInfo::PlanarConfig has been removed.
269 https://review.skia.org/334161
270
Brian Salomon98e17bf2020-11-16 10:31:49 -0500271 * Deprecated SkImage factories have been removed from
272 SkDeferredDisplayListRecorder.
273
Brian Salomona29ed262020-11-12 16:34:28 -0500274 * The following YUV image factories have been removed:
275 SkImage::MakeFromYUVTexturesCopyWithExternalBackend
276 SkImage::MakeFromNV12TexturesCopyWithExternalBackend
277 Replacement pattern outlined below.
278 1) Make image using MakeFromYUVATextures
279 2) Make a SkSurface around result texture using SkSurface::MakeFromBackendTexture
280 3) surface->getCanvas()->drawImage(image, 0, 0);
281 4) surface->flushAndSubmit()
282 5) Optional: SkImage::MakeFromBackendTexture() to use as SkImage.
283 https://review.skia.org/334596
284
Jim Van Verth351c9b52020-11-12 15:21:11 -0500285 * Added a new interface for GrDirectContext creation in Metal, using
286 a new struct called GrMtlBackendContext. The previous interface taking
287 a MTLDevice and MTLCommandQueue is deprecated.
288 https://review.skia.org/334426
289
Robert Phillipsca924242020-11-30 08:32:38 -0500290 * SkCanvas::flush has been deprecated.
291
Jim Van Verth351c9b52020-11-12 15:21:11 -0500292* * *
293
Heather Miller93f22bc2020-10-02 08:44:30 -0400294Milestone 88
Heather Miller481ff132020-08-20 15:59:08 -0400295------------
Heather Miller481ff132020-08-20 15:59:08 -0400296
Brian Salomone4387382020-11-11 16:34:19 -0500297 * SkYUVAInfo now has separate enums for division of channels among planes and
298 the subsampling. The previous combined enum, PlanarConfig, is deprecated.
299 https://review.skia.org/334102
300
Brian Salomonf1432742020-11-09 15:40:27 -0500301 * Simplified SkDeferredDisplayListRecorder promise image API. Removed "release"
302 callback and renamed "done" callback to "release". The new "release" proc can
Brian Salomonbd3792d2020-11-10 14:17:58 -0500303 be null. Added a new SkYUVAInfo-based factory for YUVA promise texture images
304 and deprecated the old SkYUVAIndex-based one.
Brian Salomonf1432742020-11-09 15:40:27 -0500305 https://review.skia.org/331836
Brian Salomonbd3792d2020-11-10 14:17:58 -0500306 https://review.skia.org/333519
Brian Salomonfea12232020-10-16 16:11:27 -0400307
Brian Osmanb06301e2020-11-06 11:45:36 -0500308 * Limit the types and intrinsics supported in SkRuntimeEffect to GLSL ES 1.00
309 https://review.skia.org/332597
310
Vignesh Venkatasubramanianeb7f9602020-11-04 14:13:39 -0800311 * Add AVIF support to SkHeifCodec.
312
Greg Daniel007d97d2020-11-04 10:50:39 -0500313 * Add support for creating SkSurfaceCharacterizations directly for use by a
314 GrVkSecondaryCBDrawContext.
315 https://review.skia.org/331877
316
Ben Wagner9abf7192020-10-23 11:29:03 -0400317 * Removed SkSurfaceProps::kLegacyFontHost_InitType, SkFontLCDConfig, and related code.
318 The default pixel geometry for SkSurfaceProps is now kUnknown instead of kRGB_H.
319 The removal was guarded by the SK_LEGACY_SURFACE_PROPS build flag which was later removed.
320 https://review.skia.org/322490
321 https://review.skia.org/329364
322
Brian Salomon9f8ee0d2020-10-19 13:31:49 -0400323 * Legacy 8-bit YUV interface removed from SkImageGenerator. Use more flexible SkYUVAPixmaps-
324 based interface instead.
325 https://review.skia.org/327917
326
Brian Salomonc1a249d2020-10-19 10:55:45 -0400327 * New variant of SkImage::MakeFromYUVATextures. Takes a new type GrYUVATextures
328 which wraps an SkYUVAInfo and compatible set of GrBackendTextures. The provides
329 a more complete and structured specification of the planar configuration. Previous
330 version is deprecated.
Brian Salomon694ff172020-11-04 16:54:28 -0500331 Already deprecated MakeFromYUVATexturesCopyToExternal added to replace other deprecated
332 APIs. It's not recommended that clients use this and instead use the pattern described
333 in the API comment.
Brian Salomon9f8ee0d2020-10-19 13:31:49 -0400334 https://review.skia.org/317762
Brian Salomon694ff172020-11-04 16:54:28 -0500335 https://review.skia.org/329956
Brian Salomonc1a249d2020-10-19 10:55:45 -0400336
kylechar97a1e672020-10-19 10:07:48 -0400337 * Add field to GrContextOptions to disable mipmap support even if the backend
338 supports it.
339
Mike Klein8aa0edf2020-10-16 11:04:18 -0500340 * SkTPin() removed from public API.
341
Michael Ludwig01b93ea2020-10-09 10:45:07 -0400342 * Add new SkImageFilters::Blend factory function, in place of the now deprecated
343 SkImageFilters::Xfermode factory function. Behavior is identical, but name better matches
344 conventions in SkShader and SkColorFilter.
345 https://review.skia.org/324623
346
Michael Ludwigc98d5b62020-10-09 10:31:28 -0400347 * SkImageFilters::Foo() factory functions now accept SkIRect, SkRect, and optional SkIRect* or
348 SkRect*, instead of previously just the optional SkIRect*. Internally, the crop rects are stored
349 as floats to allow for fractional crops to be defined in the local coordinate system (before
350 transformation by the canvas matrix).
351 https://review.skia.org/324622
352
Michael Ludwig7d0f8532020-10-07 15:27:20 -0400353 * Add new SkImageFilters::Shader factory and deprecate SkImageFilters::Paint factory. All
354 supported/valid Paint() filters can be represented more cleanly as a Shader image filter.
355 https://review.skia.org/323680
356
Adlai Holler0ce2c542020-10-06 14:04:35 -0400357 * GrContext has been replaced by two separate classes: GrDirectContext which is
358 the traditional notion of GrContext, and GrRecordingContext which is a context
359 that is recording an SkDeferredDisplayList and therefore has reduced functionality.
360 Unless you are using SkDeferredDisplayList, migrate directly to GrDirectContext in
361 all cases.
362
Brian Salomon72c7b982020-10-06 10:07:38 -0400363 * CPU sync bool added to SkSurface::flushAndSubmit() and GrContext::flushAndSubmit()
364
Brian Salomonf165f792020-10-05 13:25:05 -0400365 * Removed legacy variant of SkImage::MakeFromYUVAPixmaps. Use the version that
366 takes SkYUVAPixmaps instead. It has a more structured description of the
367 planar configuration.
368 https://review.skia.org/322480
369
Brian Salomon86d07fd2020-10-02 14:37:57 -0400370 * Some SkImage YUV image factories have been removed. Replacement patterns
371 outlined below.
372 SkImage::MakeFromYUVATexturesCopy
373 1) Make SkImage from YUVA planes using SkImage::MakeFromYUVATextures
374 2) Use Skia to allocate a surface using SkSurface::MakeRenderTarget
375 3) surface->getCanvas()->drawImage(image, 0, 0);
376 4) surface->makeImageSnapShot() produces RGBA image.
377 SkImage::MakeFromYUVATexturesCopyWithExternalBackend
378 1) Make image using MakeFromYUVATextures
379 2) Make a SkSurface around result texture using SkSurface::MakeFromBackendTexture
380 3) surface->getCanvas()->drawImage(image, 0, 0);
381 4) surface->flushAndSubmit()
382 5) Optional: SkImage::MakeFromBackendTexture() to use as SkImage.
383 SkImage::MakeFromNV12TexturesCopy
384 Same as SkImage::MakeFromYUVATexturesCopy
385 https://review.skia.org/321537
386
Greg Daniel36366202020-10-02 11:13:33 -0400387 * GrBackendRenderTargets which are created with a stencilBits param, now require
388 the stencilBits to be 0, 8, or 16.
389 https://review.skia.org/321545
390
Heather Miller93f22bc2020-10-02 08:44:30 -0400391* * *
392
393Milestone 87
394------------
395
Brian Salomon57fd9232020-09-28 17:02:49 -0400396 * GrVkImageInfo now has a field for sample count. GrBackendRenderTarget constructor
397 that took both a GrVkImageInfo and separate sample count is deprecated. Use the
Brian Salomon718ae762020-09-29 16:52:49 -0400398 version without sample count instead. Similarly, GrD3DTextureResourceInfo now
399 has a sample count field and GrBackendRenderTarget no longer takes a separate
Brian Salomon8e0aa442020-09-30 13:50:18 -0400400 sample count for Direct3D. The sample count for GrBackendRenderTarget is now
401 directly queried from MtlTexture rather than passed separately. The version that
402 takes a separate sample count is deprecated and the parameter is ignored.
Brian Salomon718ae762020-09-29 16:52:49 -0400403 https://review.skia.org/320262
404 https://review.skia.org/320757
Brian Salomon8e0aa442020-09-30 13:50:18 -0400405 https://review.skia.org/320956
Brian Salomon57fd9232020-09-28 17:02:49 -0400406
Jim Van Verthc2d10ef2020-09-28 15:36:00 -0400407 * Added deprecation warning for Metal support on MacOS 10.13, iOS 8.3, and older.
408 https://review.skia.org/320260
409
Brian Salomon57fd9232020-09-28 17:02:49 -0400410 * GrVkImageInfo now has a field for sample count. GrBackendRenderTarget constructor
411 that took both a GrVkImageInfo and separate sample count is deprecated. Use the
412 version without sample count instead.
413
Michael Ludwige5d5eed2020-09-28 10:33:42 -0400414 * Update SkClipOp::kMax_EnumValue to include only intersect and difference when
415 SK_SUPPORT_DEPRECATED_CLIPOPS is not defined.
416 https://review.skia.org/320064
417
Jim Van Verth1b89eb72020-09-23 16:29:51 -0400418 * Add support for external allocator for Direct3D 12 backend.
419 Defines base classes for an allocation associated with a backend texture and a
420 a memory allocator to create such allocations.
421 Adds memory allocator to backend context.
422 https://review.skia.org/317243
423
Greg Daniel1d3c8c12020-09-23 14:23:36 -0400424 * Add new optional parameter to GrContext::setBackend[Texture/RenderTarget]State which can
425 be used to return the previous GrBackendSurfaceMutableState before the requested change.
426 https://review.skia.org/318698
427
Michael Ludwig395ddc32020-09-16 18:41:38 +0000428 * New optimized clip stack for GPU backends. Enabled by default but old behavior based on
429 SkClipStack can be restored by defining SK_DISABLE_NEW_GR_CLIP_STACK when building. It is not
430 compatible with SK_SUPPORT_DEPRECATED_CLIPOPS and we are targeting the removal of support for
431 the deprecated, expanding clip ops.
432 https://review.skia.org/317209
433
John Stilesf2f9b0d2020-08-25 13:33:45 -0400434 * GPU backends now properly honor the SkFilterQuality when calling drawAtlas.
435 https://review.skia.org/313081
436
Brian Osman767f4442020-08-13 16:59:48 -0400437 * The signature of 'main' used with SkRuntimeEffect SkSL has changed. There is no longer an
438 'inout half4 color' parameter, effects must return their color instead.
439 Valid signatures are now 'half4 main()' or 'half4 main(float2 coord)'.
440 https://review.skia.org/310756
441
Brian Salomon94f65d72020-09-18 14:09:51 -0400442 * New YUVA planar specifications for SkCodec, SkImageGenerator, SkImage::MakeFromYUVAPixmaps.
443 Chroma subsampling is specified in more structured way. SkCodec and SkImageGenerator
444 don't assume 3 planes with 8bit planar values. Old APIs are deprecated.
Brian Salomon87d42e52020-08-24 09:18:16 -0400445 https://review.skia.org/309658
Brian Salomonbe0e42c2020-08-27 11:00:04 -0400446 https://review.skia.org/312886
Brian Salomon59c60b02020-09-01 15:01:15 -0400447 https://review.skia.org/314276
Brian Salomon94f65d72020-09-18 14:09:51 -0400448 https://review.skia.org/316837
449 https://review.skia.org/317097
Brian Salomon87d42e52020-08-24 09:18:16 -0400450
Greg Daniel7b62dca2020-08-21 11:26:12 -0400451 * Added VkImageUsageFlags to GrVkImageInfo struct.
452
Heather Miller481ff132020-08-20 15:59:08 -0400453* * *
454
Jim Van Verthc1a67b52020-06-25 13:10:29 -0400455Milestone 86
456------------
Greg Danielce9f0162020-06-30 13:42:46 -0400457
Brian Osmana4b91692020-08-10 14:26:16 -0400458 * Remove support for 'in' variables from SkRuntimeEffect. API now exclusively refers to inputs
459 as 'uniforms'.
460 https://review.skia.org/309050
461
Leon Scroggins III326b9892020-08-05 16:51:10 -0400462 * Add SkImageGeneratorNDK and SkEncodeImageWithNDK for using Android's NDK APIs to decode and
463 encode.
464 https://review.skia.org/308185
465 https://review.skia.org/308800
Leon Scroggins IIIf21d6b92020-08-05 10:44:17 -0400466
Mike Reed3a608e52020-07-28 17:24:21 -0400467 * SkImage:remove DecodeToRaster, DecodeToTexture
468 https://review.skia.org/306331
469
Greg Daniel95afafb2020-07-22 12:09:26 -0400470 * Add GrContext api to update compressed backend textures.
471 https://review.skia.org/302265
472
Brian Salomon7e67dca2020-07-21 09:27:25 -0400473 * Rename GrMipMapped to GrMipmapped for consistency with new APIs.
Brian Salomon40a40622020-07-21 10:32:07 -0400474 Also rename GrBackendTexture::hasMipMaps() to GrBackendTexture::hasMipmaps()
Brian Salomon7e67dca2020-07-21 09:27:25 -0400475 https://review.skia.org/304576
Brian Salomon40a40622020-07-21 10:32:07 -0400476 https://review.skia.org/304598
Brian Salomon7e67dca2020-07-21 09:27:25 -0400477
Greg Daniel414418d2020-07-08 11:44:25 -0400478 * Add option for clients to own semaphores after wait calls.
479 https://review.skia.org/301216
480
Greg Danielce9f0162020-06-30 13:42:46 -0400481 * Remove obsolete GrFlushFlags.
482 https://review.skia.org/298818
483
Greg Danielc72d7a52020-06-25 21:00:17 -0400484 * Adds default flush() calls to SkSurface, SkImage, and GrContext. These calls do
Greg Danielce9f0162020-06-30 13:42:46 -0400485 a basic flush without a submit. If you haven't updated Skia in a couple releases
Greg Danielc72d7a52020-06-25 21:00:17 -0400486 and still have flush() calls in your code that you expect to do a flush and
487 submit, you should update all those to the previously added flushAndSubmit() calls
488 instead.
489 https://review.skia.org/299141
490
Jim Van Verthc1a67b52020-06-25 13:10:29 -0400491 * Enable BackendSemaphores for the Direct3D backend.
492 https://review.skia.org/298752
493
Brian Salomon63a0a752020-06-26 13:32:09 -0400494 * Added SkImage:asyncRescaleAndReadPixels and SkImage::asyncRescaleAndReadPixelsYUV420
495 https://review.skia.org/299281
496
Robert Phillips2a4acf32020-07-06 15:50:15 -0400497 * Ganesh is moving towards replacing GrContext with the GrDirectContext/GrRecordingContext
498 pair. GrDirectContexts have _direct_ access to the GPU and are very similar to the old
499 GrContext. GrRecordingContexts are less powerful contexts that lack GPU access but provided
500 context-like utilities during DDL recording. SkSurfaces and SkCanvas will now only return
501 GrRecordingContexts. Clients requiring context features that need GPU access can then
502 check (via GrRecordingContext::asDirectContext) if the available recording context is actually
503 a direct context.
504
John Stiles91196252020-07-28 09:23:54 -0400505 * Replace #defined values in SkString with equivalent constexprs.
506 http://review.skia.org/306160
507
Jim Van Verthc1a67b52020-06-25 13:10:29 -0400508* * *
509
Heather Millerb88892f2020-05-15 10:53:49 -0400510Milestone 85
511------------
512
Brian Salomon24069eb2020-06-24 10:19:52 -0400513 * Added GrContext::oomed() which reports whether Skia has seen a GL_OUT_OF_MEMORY
514 error from Open GL [ES] or VK_ERROR_OUT_OF_*_MEMORY from Vulkan.
515 https://review.skia.org/298216
Greg Daniel1db8e792020-06-09 17:29:32 -0400516
Greg Daniel9efe3862020-06-11 11:51:06 -0400517 * Add option on SkSurface::flush to pass in a GrBackendSurfaceMutableState which
518 we will set the gpu backend surface to be at the end of the flush.
519 https://review.skia.org/295567
520
Greg Daniel1db8e792020-06-09 17:29:32 -0400521 * Add GrContext function to set mutable state on a backend surface. Currently this
522 is only used for setting vulkan VkImage layout and queue family.
523 https://review.skia.org/293844
524
Brian Salomon3fdc49f2020-06-02 22:01:39 -0400525 * SkSurface factores that take GrBackendTexture or GrBackendRenderTarget now always
Greg Daniel1db8e792020-06-09 17:29:32 -0400526 call the release proc (if provided) on failure. SkSurface::replaceBackendTexture
Brian Salomon3fdc49f2020-06-02 22:01:39 -0400527 also calls the release proc on failure.
528 https://review.skia.org/293762
529
Brian Salomon39278022020-06-02 11:47:26 -0400530 * SkSurface::asyncRescaleAndReadPixels and SkSurfaceasyncRescaleAndReadPixelsYUV420
531 now require explicit GrContext submit to guarantee finite time before callback
532 is invoked.
533 https://review.skia.org/292840
Heather Millerb88892f2020-05-15 10:53:49 -0400534
Greg Danielaa9d99f2020-06-02 11:10:41 -0400535 * Add VkSharingMode field to GrVkImageInfo.
536 https://review.skia.org/293559
537
Leon Scroggins III43182bc2020-05-21 11:14:31 -0400538 * Move SkBitmapRegionDecoder into client_utils/android.
539
Kevin Lubick23620222020-06-03 11:19:49 -0400540 * SkCanvas.clear and SkCanvas.drawColor now accept SkColor4f in addition to SkColor.
541
Brian Salomonc0d88a12020-05-28 17:44:05 -0400542 * Remove SkSurface::MakeFromBackendTextureAsRenderTarget.
543 This factory existed to work around issues with GL_TEXTURE_RECTANGLE that existed
544 in Chrome's command buffer. Those issues have since been resolved. Use
545 SkSurface::MakeFromBackendTexutre or SkSurface::MakeFromBackendRenderTarget instead.
546 https://review.skia.org/292719
547
Greg Daniel55822f12020-05-26 11:26:45 -0400548 * Adds submittedProc callback to GrFlushInfo which will be called when the work
549 from the flush call is submitted to the GPU. This is specifically useful for knowing
550 when semahpores sent with the flush have been submitted and can be waiting on.
551 https://review.skia.org/291078
552
Greg Daniel04283f32020-05-20 13:16:00 -0400553 * GrContext submit is now required to be called in order to send GPU work to the
554 actual GPU. The flush calls simply produces 3D API specific objects that are ready
555 to be submitted (e.g. command buffers). For the GL backend, the flush will still
556 send commands to the driver. However, clients should still assume the must call
557 submit which is where any glFlush that is need for sync objects will be called. There,
558 are flushAndSubmit() functions of GrContext, SkSurface, and SkImage that will act
559 like the previous flush() functions. This will flush the work and immediately call
560 submit.
561 https://review.skia.org/289033
562
Greg Daniel49de1032020-05-19 18:06:26 -0400563 * Remove deprecated version of flush calls on GrContext and SkSurface.
564 https://review.skia.org/2290540
565
Brian Osman8219e912020-05-15 13:04:48 -0400566 * SkCanvas::drawVertices and drawPatch now support mapping an SkShader without explicit
567 texture coordinates. If they're not supplied, the local positions (vertex position or
568 patch cubic positions) will be directly used to sample the SkShader.
569 https://review.skia.org/290130
570
Heather Millerb88892f2020-05-15 10:53:49 -0400571* * *
572
Heather Millere4bcbf82020-04-03 12:01:51 -0400573Milestone 84
Heather Millerb88892f2020-05-15 10:53:49 -0400574------------
Greg Daniel5ab94e12020-05-13 14:11:40 -0400575
Greg Danielb2365d82020-05-13 15:32:04 -0400576 * Add api on GrContext, updateBackendTexture that will upload new data to a
577 GrBackendTexture.
578 https://review.skia.org/288909
579
Greg Daniel5ab94e12020-05-13 14:11:40 -0400580 * Add GrContext getter to SkSurface.
581 https://review.skia.org/289479
582
Greg Danielda50cb82020-05-13 14:07:40 -0400583 * Deprecate GrContext and SkSurface flush() call and replace ith with flushAndSubmit().
584 This only effects the default flush call that takes no parameters.
585 https://review.skia.org/289478
Heather Millere4bcbf82020-04-03 12:01:51 -0400586
Greg Danielc1ad77c2020-05-06 11:40:03 -0400587 * GrContext::createBackendTexture functions that initialize the texture no longer
588 guarantee that all the data has been uploaded and the gpu is done with the texture.
589 Instead the client can assume the upload work has been submitted to the gpu and they
590 must wait for that work to finish before deleting the texture. This can be done via
591 their own synchronization or by passing in a finish proc into the create calls which
592 will be called when it is safe to delete the texture (at least in terms of work
593 done during the create).
594 https://review.skia.org/286517
Heather Millere4bcbf82020-04-03 12:01:51 -0400595
Mike Reed52653732020-05-05 14:40:42 -0400596 * Remove unused SkMaskFilter helpers: compbine, compose
597 Note: shadermaskfilter will likely be removed next (clipShader should serve)
598
Xianzhu Wanga91e4782020-05-01 09:34:57 -0700599 * Add back SkCanvas::kPreserveLCDText_SaveLayerFlag to indicate that saveLayer()
600 will preserve LCD-text. All text in the layer must be drawn on opaque background
601 to ensure correct rendering.
602
Leon Scroggins III63cfb362020-04-24 13:00:48 -0400603 * Add the new directory client_utils/ for code that is specific to a single client and
604 should be considered separate from Skia proper. Move SkFrontBufferedStream into the
605 subdir android/.
606
Mike Kleind5cba9d2020-04-24 07:44:50 -0500607 * SkBitmap and SkPixmap's erase() methods now treat their color parameters
608 consistently with the rest of Skia, with all SkColors and any untagged
609 SkColor4fs interpreted as sRGB, not as a color in the bitmap's color space.
610 SkPixmap::erase(SkColor4f) now takes an SkColorSpace, so you can pass
611 pixmap.colorSpace() if you want the old behavior.
612
Mike Reedd276e3f2020-04-14 15:44:21 -0400613 * SkCamera.h and SkMatrix44.h are DEPRECATED.
Mike Reed14f62de2020-04-14 11:35:40 -0400614 Use SkM44 if you want to have 3d transformations.
615
Ben Wagnercc81e202020-04-09 13:00:44 -0400616 * Changed Dilate and Erode image filters to take SkScalar for radius instead of int. While
617 the image filters themselves are defined in terms of discrete pixels, the radii provided by
618 the user are mapped through the CTM so taking ints forced over discretization. After mapping
619 through the CTM the radii are now rounded to pixels.
620 https://review.skia.org/281731
621 https://review.skia.org/282636
622
Greg Daniel8561fc22020-04-08 12:52:51 -0400623 * Updated the contract of GrContext and SkSurface flush calls in regards to semaphores. Made it
624 clear that the caller is responsible for deleting any initialized semaphores after the flush
625 call regardless if we were able to submit them or not. Also, allows skia to only submit a
626 subset of the requested semaphores if we failed to create some.
627 https://review.skia.org/282265
628
629
Brian Osman62a0fb22020-04-07 13:48:15 -0400630 * SkCanvas::drawVertices will now always fill the triangles specified by the vertices. Previously,
631 vertices with no colors and no (texture coordinates or shader) would be drawn in wireframe.
632 https://review.skia.org/282043
633
Heather Millere4bcbf82020-04-03 12:01:51 -0400634* * *
635
Heather Miller6c138712020-03-16 10:50:49 -0400636Milestone 83
Heather Millerb88892f2020-05-15 10:53:49 -0400637------------
Heather Millerd5153bb2019-10-17 00:03:36 -0400638
Kevin Lubick988ce042020-03-25 13:13:20 -0400639 * Remove localmatrix option from SkShaders::[Blend, Lerp]
640
Jim Van Verth05d09192020-03-20 11:23:39 -0400641 * Fill out Direct3D parameters for backend textures and backend rendertargets.
642
Brian Salomonbc074a62020-03-18 10:06:13 -0400643 * SkImage::makeTextureImage() takes an optional SkBudgeted param
Michael Ludwigb0cee9b2020-03-12 10:52:15 -0400644
Brian Salomonf4ba4ec2020-03-19 15:54:28 -0400645 * Made non-GL builds of GPU backend more robust.
646 https://review.skia.org/277456
647
648 * MoltenVK support removed. Use Metal backend instead.
649 https://review.skia.org/277612
Heather Miller6c138712020-03-16 10:50:49 -0400650
651* * *
652
653Milestone 82
Heather Millerb88892f2020-05-15 10:53:49 -0400654------------
Heather Miller6c138712020-03-16 10:50:49 -0400655
Michael Ludwigb0cee9b2020-03-12 10:52:15 -0400656 * Removed drawBitmap and related functions from SkDevice; all public drawBitmap functions on
657 SkCanvas automatically wrap the bitmap in an SkImage and call the equivalent drawImage function.
658 Drawing mutable SkBitmaps will now incur a mandatory copy. Switch to using SkImage directly or
659 mark the bitmap as immutable before drawing.
660
Brian Osmandafbf122020-03-11 12:26:56 -0400661 * Removed "volatile" flag from SkVertices. All SkVertices objects are assumed to be
662 volatile (the previous default behavior).
663
Michael Ludwigb0cee9b2020-03-12 10:52:15 -0400664 * Removed exotic legacy bitmap functions from SkCanvas (drawBitmapLattic, drawBitmapNine); the
665 exotic SkImage functions still exist.
666
Leon Scroggins IIIa77f30c2020-03-09 14:23:30 -0400667 * Make it possible to selectively turn on/off individual encoders/decoders,
668 using skia_use_(libpng/libjpeg_turbo/libwebp)(decode/encode).
669
Greg Daniel456f9b52020-03-05 19:14:18 +0000670 * Removed GrGpuResource, GrSurface, and GrTexture from public api. These were not
Greg Daniel7c902112020-03-06 13:07:10 -0500671 meant to be public, and we now can move them into src. Also removed getTexture
672 function from SkImage.h
Greg Daniel456f9b52020-03-05 19:14:18 +0000673
Mike Reed5caf9352020-03-02 14:57:09 -0500674 * Removed Bones from SkVertices
675
Brian Salomond8575452020-02-25 12:13:29 -0500676 * Added a field to GrContextOptions that controls whether GL errors are checked after
677 GL calls that allocate textures, etc. It also controls checking for shader compile
678 success, and program linking success.
679
Robert Phillips1cec4d52020-02-24 08:38:34 -0500680 * Made SkDeferredDisplayList.h officially part of the public API (i.e., moved it to
681 include/core). Also added a ProgramIterator to SkDeferredDisplayList which allows
682 clients to pre-compile some of the shaders the DDL requires.
683
Robert Phillipsb3c061a2020-02-13 13:24:47 -0500684 * Added two new helper methods to SkSurfaceCharacterization: createBackendFormat and
685 createFBO0. These make it easier for clients to create new surface characterizations that
686 differ only a little from an existing surface characterization.
687
Brian Osman788b9162020-02-07 10:36:46 -0500688 * Removed SkTMax and SkTMin.
Brian Osman5f3d9f72020-02-06 14:51:46 -0500689 * Removed SkTClamp and SkClampMax.
Brian Osmanaba642c2020-02-06 12:52:25 -0500690 * Removed SkScalarClampMax and SkScalarPin.
Brian Osman7f364052020-02-06 11:25:43 -0500691 * Removed SkMax32 and SkMin32.
Brian Osman116b33e2020-02-05 13:34:09 -0500692 * Removed SkMaxScalar and SkMinScalar.
693
Allen Bauera428c7b2020-02-04 14:27:22 -0800694 * SkColorSetA now warns if the result is unused.
695
Leon Scroggins III196f3192020-02-03 12:39:54 -0500696 * An SkImageInfo with a null SkColorSpace passed to SkCodec::getPixels() and
697 related calls is treated as a request to do no color correction at decode
698 time.
Dominik Röttschesc9b06ca2020-01-31 18:13:37 +0200699
Dominic Mazzoni7dfb46e2020-02-19 10:59:29 -0800700 * Add new APIs to add attributes to document structure node when
701 creating a tagged PDF.
702
Dominik Röttschesc9b06ca2020-01-31 18:13:37 +0200703 * Remove CGFontRef parameter from SkCreateTypefaceFromCTFont.
704 Use CTFontManagerCreateFontDescriptorFromData instead of
705 CGFontCreateWithDataProvider to create CTFonts to avoid memory use issues.
706
Leon Scroggins III42a604f2020-02-06 15:47:58 -0500707 * Added SkCodec:: and SkAndroidCodec::getICCProfile for reporting the native
708 ICC profile of an encoded image, even if it doesn't map to an SkColorSpace.
Heather Millerebc4d622020-01-30 13:57:13 -0500709
Yi Xu55bca412020-02-14 18:10:40 -0500710 * SkSurface::ReplaceBackendTexture takes ContentChangeMode as a parameter,
711 which allow callers to specify whether retain a copy of the current content.
Michael Ludwigb0cee9b2020-03-12 10:52:15 -0400712
713 * Enforce the existing documentation in SkCanvas::saveLayer that it ignores
714 any mask filter on the restore SkPaint. The 'coverage' of a layer is
Michael Ludwigeced98b2020-03-03 10:39:41 -0500715 ill-defined, and masking should be handled by pre-clipping or using the
716 auxiliary clip mask image of the SaveLayerRec.
Yi Xu55bca412020-02-14 18:10:40 -0500717
Heather Millerebc4d622020-01-30 13:57:13 -0500718* * *
719
720Milestone 81
Heather Millerb88892f2020-05-15 10:53:49 -0400721------------
Heather Millerebc4d622020-01-30 13:57:13 -0500722
Brian Salomon87c31422020-01-22 09:59:56 -0500723 * Added support for GL_NV_fence extension.
Heather Miller2e046a22019-12-05 15:27:42 -0500724
Leon Scroggins III3eedc972020-01-22 10:44:00 -0500725 * Make SkImageInfo::validRowBytes require rowBytes to be pixel aligned. This
726 makes SkBitmap match the behavior of raster SkSurfaces in rejecting
727 non-aligned rowBytes.
728
Robert Phillips99dead92020-01-27 16:11:57 -0500729 * Added an SkImage::MakeRasterFromCompressed entry point. Also updated
730 SkImage::MakeFromCompressed to decompress the compressed image data if
731 the GPU doesn't support the specified compression type (i.e., macOS Metal
732 doesn't support BC1_RGB8_UNORM so such compressed images will always be
733 decompressed on that platform).
734
Robert Phillipsb0855272020-01-15 12:56:52 -0500735 * Added support for BC1 RGBA compressed textures
736
Brian Osmana88cab12020-01-09 10:21:44 -0500737 * Added CachingHint to SkImage::makeRasterImage
738
Kevin Lubickf5bc8fb2020-01-08 13:29:31 -0500739 * Added SkAnimatedImage::getCurrentFrame()
740
Jim Van Verthe2767012020-01-08 12:15:44 -0500741 * Add support to create an SkSurface from an MTKView, with delayed acquisition of
742 the MTLDrawable.
743 Entry point: SkSurface::MakeFromMTKView
744
Brian Salomon44207f32020-01-06 15:20:18 -0500745 * Removed SkIRect::EmptyIRect(). Use SkIRect::MakeEmpty() instead.
746 https://review.skia.org/262382/
747
Heather Millerebc4d622020-01-30 13:57:13 -0500748 * Moved SkRuntimeEffect to public API. This is the new (experimental) interface to custom SkSL
749 shaders and color filters.
Brian Osmanee426f22020-01-02 11:55:24 -0500750
Heather Millerebc4d622020-01-30 13:57:13 -0500751 * Added BC1 compressed format support. Metal and Vulkan seem to only support the BC
752 formats on desktop machines.
Robert Phillips8f259a02019-12-20 11:32:27 -0500753
Heather Millerebc4d622020-01-30 13:57:13 -0500754 * Added compressed format support for backend texture creation API.
755 This adds the following new entry points:
756 GrContext::compressedBackendFormat
757 GrContext::createCompressedBackendTexture
758 The latter method comes in variants that allow color-initialized and
759 compressed texture data initialized.
Robert Phillipsb915c942019-12-17 14:44:37 -0500760
Brian Salomona6069a12019-12-13 10:48:33 -0500761 * Added SkMatrix::MakeTrans(SkIVector)
762 https://review.skia.org/259804
Heather Miller2e046a22019-12-05 15:27:42 -0500763
Heather Millerebc4d622020-01-30 13:57:13 -0500764* * *
765
Heather Miller2e046a22019-12-05 15:27:42 -0500766Milestone 80
Heather Millerb88892f2020-05-15 10:53:49 -0400767------------
Heather Miller2e046a22019-12-05 15:27:42 -0500768
Greg Danielf0e04f02019-12-04 15:17:54 -0500769 * For Vulkan backend, we now require that the VkDevice, Queue, and Instance outlive
770 either the destruction or abandoning of the GrContext. Additionally, all
771 GrBackendTextures created via GrContext::createBackendTexture calls must be deleted
772 before destroying or abandoning the GrContext.
773 https://review.skia.org/257921
774
Brian Salomon4e1066f2019-12-04 10:33:52 -0500775 * Removed SkSize& SkSize::operator=(const SkISize&)
776 https://review.skia.org/257880
777
Brian Salomon8a99a412019-12-04 11:05:35 -0500778 * SkISize width() and height() now constexpr
779 https://review.skia.org/257680
780
Brian Salomone21af502019-11-22 16:56:36 -0500781 * Added SkMatrix::MakeTrans(SkVector) and SkRect::makeOffset(SkVector).
782 https://review.skia.org/255782
783
Brian Salomonc75bc032019-11-11 13:47:25 -0500784 * Added SkImageInfo::MakeA8(SkISize) and added optional color space parameter to
785 SkImageInfo::MakeN32Premul(SkISize).
Heather Millercc13acb2019-10-22 15:45:45 -0400786
Kevin Lubick47bd9f12019-11-08 06:55:15 -0800787 * Added dimensions() and getFrameCount() to SkAnimatedImage
788 https://review.skia.org/253542
789
Brian Osman09ee1122019-11-05 11:41:16 -0500790 * Removed SkMatrix44 version of toXYZD50 from SkColorSpace. Switched to skcms types in
791 transferFn, invTrasnferFn, and gamutTransformTo functions.
792 https://review.skia.org/252596
793
Brian Osmane36d0302019-11-01 17:10:28 -0400794 * Removed rotation and YUV support from SkColorMatrix
795 https://review.skia.org/252188
796
Brian Osman2b73e662019-11-01 10:02:24 -0400797 * Added kBT2020_SkYUVColorSpace. This is BT.2020's YCbCr conversion (non-constant-luminance).
798 https://review.skia.org/252160
799
Brian Salomon3683a4f2019-10-28 09:16:47 -0400800 * Remove old async read pixels APIs
801 https://review.skia.org/251198
802
Michael Ludwigcc836872019-11-04 15:01:52 -0500803 * Expose SkBlendModeCoeff and SkBlendMode_AsCoeff for Porter-Duff blend modes.
804 https://review.skia.org/252600
805
Heather Millercc13acb2019-10-22 15:45:45 -0400806* * *
807
808Milestone 79
Heather Millerb88892f2020-05-15 10:53:49 -0400809------------
Heather Millerd5153bb2019-10-17 00:03:36 -0400810
Mike Reeda32654c2019-10-04 10:18:34 -0400811 * SkTextBlob::Iter to discover the glyph indices and typefaces in each run
812 https://skia-review.googlesource.com/246296
813
Brian Osman11e6aa82019-10-16 13:58:42 -0400814 * Added support for PQ and HLG transfer functions to SkColorSpace.
Heather Millerd5153bb2019-10-17 00:03:36 -0400815 https://skia-review.googlesource.com/c/skia/+/249000
Brian Osman11e6aa82019-10-16 13:58:42 -0400816
Greg Daniel8b666172019-10-09 12:38:22 -0400817 * Added new api on GrContext ComputeImageSize. This replaces the hold static helper
818 ComputeTextureSize.
Heather Millerd5153bb2019-10-17 00:03:36 -0400819 https://skia-review.googlesource.com/c/skia/+/247337
Hal Canary9e514a12019-10-01 15:15:36 -0400820
Brian Salomon9241a6d2019-10-03 13:26:54 -0400821 * New versions of SkSurface async-rescale-and read APIs that allow client to extend
822 the lifetime of the result data. Old versions are deprecated.
823 https://review.skia.org/245457
824
Hal Canary9e514a12019-10-01 15:15:36 -0400825 * Add SkColorInfo. It's dimensionless SkImageInfo.
826 https://review.skia.org/245261
827
828 * Added SkPixmap-based createBackendTexture method to GrContext. This allows clients to create
829 backend resources (initialized with texture data) that Skia/Ganesh doesn't know about/track.
830 https://review.skia.org/244676
831
832 * Add explicit src and dst colorspace parameters to SkColorFilter::filterColor4f()
833 https://review.skia.org/244882
834
835 * Remove Vulkan/Metal float32 RGBA texture support
836 https://review.skia.org/244881
837
838 * Add SkSurface::MakeFromCAMetalLayer
839 https://review.skia.org/242563
840
841 * Added kAlpha_F16_SkColorType, kRG_F16_SkColorType and kRGBA_16161616_SkColorType.
842 This is intended to help support HDR YUV uses case (e.g., P010 and P016). As such,
843 the addition is focused on allowing creation of SkPixmaps and SkImages and not
844 SkSurfaces (i.e., who wants to render to render to these?)
845 https://review.skia.org/241357
846
847 * Start to move nested SkPath types (e.g. Direction, Verb) up to root level in SkPathTypes.h
848 https://review.skia.org/241079
849
850 * Remove isRectContour and ksNestedFillRects from public
851 https://review.skia.org/241078
852
853 * Added kRG_88_SkColorType. This is intended to help support YUV uses case (e.g., NV12).
854 As such, the addition is focused on allowing creation of SkPixmaps and SkImages and not
855 SkSurfaces (i.e., who wants to render to RG?)
856 https://review.skia.org/239930
857 https://review.skia.org/235797
858
Brian Osman172bb442019-09-06 10:16:02 -0400859 * Make the size of program/pipeline caches configurable via
860 GrContextOptions::fRuntimeProgramCacheSize
861 https://review.skia.org/239756
862
Hal Canary9e514a12019-10-01 15:15:36 -0400863 * Added kAlpha_16_SkColorType and kRG_1616_SkColorType. This is intended to help support HDR YUV
864 uses case (e.g., P010 and P016). As such, the addition is focused on allowing creation of
865 SkPixmaps and SkImages and not SkSurfaces (i.e., who wants to render to render to these?)
866 https://review.skia.org/239930
867
868 * Add GrContext::precompileShader to allow up-front compilation of previously-cached shaders.
869 https://review.skia.org/239438
870
871* * *
872
Heather Miller118a4072019-07-25 11:33:30 -0400873Milestone 78
Heather Millerb88892f2020-05-15 10:53:49 -0400874------------
Heather Miller118a4072019-07-25 11:33:30 -0400875
Hal Canary2af5db72019-08-20 11:28:37 -0400876 * SkDrawLooper is no longer supported in SkPaint or SkCanvas.
Hal Canary3b0e7f62019-08-20 14:52:02 -0400877 https://review.skia.org/230579
878 https://review.skia.org/231736
Mike Reed9dc0b9e2019-07-29 17:52:48 -0400879
Hal Canary3b0e7f62019-08-20 14:52:02 -0400880 * SkPath::Iter::next() now ignores its consumDegenerates bools. Those will so
881 go away entirely
882 https://review.skia.org/235104
Mike Reedba7e9a62019-08-16 13:30:34 -0400883
Hal Canary2af5db72019-08-20 11:28:37 -0400884 * SkImage: new factories: DecodeToRaster, DecodeToTexture
Hal Canary3b0e7f62019-08-20 14:52:02 -0400885 https://review.skia.org/234476
Mike Reeda5acbf92019-08-14 11:08:41 -0400886
Hal Canary2af5db72019-08-20 11:28:37 -0400887 * SkImageFilter API refactor started:
888 - Provide new factory API in include/effects/SkImageFilters
889 - Consolidated enum types to use SkTileMode and SkColorChannel
890 - Hide filter implementation classes
Hal Canary3b0e7f62019-08-20 14:52:02 -0400891 - Hide previously public functions on SkImageFilter that were intended for
892 internal use only
893 https://review.skia.org/230198
894 https://review.skia.org/230876
895 https://review.skia.org/231256
Florin Malita48009492019-08-01 17:20:19 -0400896
Hal Canary3b0e7f62019-08-20 14:52:02 -0400897 * SkColorFilters::HSLAMatrix - new matrix color filter operating in HSLA
898 space.
899 https://review.skia.org/231736
Brian Salomond4764a12019-08-08 12:08:24 -0400900
Hal Canary3b0e7f62019-08-20 14:52:02 -0400901 * Modify GrBackendFormat getters to not return internal pointers. Use an enum
902 class for GL formats.
903 https://review.skia.org/233160
Brian Salomonec22b1a2019-08-09 09:41:48 -0400904
Hal Canary2af5db72019-08-20 11:28:37 -0400905 * Expose GrContext::dump() when SK_ENABLE_DUMP_GPU is defined.
Hal Canary3b0e7f62019-08-20 14:52:02 -0400906 https://review.skia.org/233557
Sergey Ulanov2739fd22019-08-11 22:46:33 -0700907
Hal Canary3b0e7f62019-08-20 14:52:02 -0400908 * Vulkan backend now supports YCbCr sampler for I420 Vulkan images that are
909 not backed by external images.
910 https://review.skia.org/233776
Leon Scroggins III6154ac42019-08-14 11:29:29 -0400911
Hal Canary3b0e7f62019-08-20 14:52:02 -0400912 * Add SkCodec::SelectionPolicy for distinguishing between decoding a still
913 image or an image sequence for a container format that has both (e.g. HEIF).
914 https://review.skia.org/232839
Brian Osmand566e2e2019-08-14 13:19:04 -0400915
Hal Canary3b0e7f62019-08-20 14:52:02 -0400916 * SkImage::makeTextureImage and SkImage::MakeCrossContextFromPixmap no longer
917 take an SkColorSpace parameter. It was unused.
918 https://review.skia.org/234579
919 https://review.skia.org/234912
Brian Osmand5148372019-08-14 16:14:51 -0400920
Hal Canary3b0e7f62019-08-20 14:52:02 -0400921 * SkImage::reinterpretColorSpace - to reinterpret image contents in a new
922 color space.
923 https://review.skia.org/234328
Brian Osman4c3fd342019-08-15 12:13:53 -0400924
Hal Canary2af5db72019-08-20 11:28:37 -0400925 * Removed SkImage::MakeCrossContextFromEncoded.
Hal Canary3b0e7f62019-08-20 14:52:02 -0400926 https://review.skia.org/234912
Hal Canary2af5db72019-08-20 11:28:37 -0400927
Jim Van Verth066ceb12019-08-28 14:35:55 -0400928 * Add Metal support for GrFence, GrSemaphore, and GrBackendSemaphore
929 https://review.skia.org/233416
930
Hal Canary2af5db72019-08-20 11:28:37 -0400931 * SkMallocPixelRef: remove MakeDirect and MakeWithProc from API.
932 https://review.skia.org/234660
Mike Klein334a6422019-08-27 08:12:15 -0500933
Michael Ludwiga595f862019-08-27 15:25:49 -0400934 * Remove 4-parameter variant of SkRect::join() and intersect(), and
935 noemptycheck variants of intersect().
936 https://review.skia.org/235832
937 https://review.skia.org/237142
938
Mike Klein334a6422019-08-27 08:12:15 -0500939 * Remove unused sk_sp comparison operators.
940 https://review.skia.org/236942
Michael Ludwiga595f862019-08-27 15:25:49 -0400941
942 * Add SkColor4f variant to experimental_DrawEdgeAAQuad for SkiaRenderer.
943 https://review.skia.org/237492
Robert Phillipscf39f372019-09-03 10:29:20 -0400944
945 * Deprecated maxCount resource cache limit for Ganesh.
946 This hasn't been relevant for a long time.
947
Brian Osmana66081d2019-09-03 14:59:26 -0400948 * Changed GrContextOptions' fDisallowGLSLBinaryCaching to fShaderCacheStrategy,
949 and allow caching SkSL.
950 https://review.skia.org/238856
Chris Dalton38f0a492019-10-07 11:51:07 -0600951
952 * Use GL_QCOM_TILED_RENDERING to explicitly discard stencil
Heather Millercc13acb2019-10-22 15:45:45 -0400953
954 * Added RELEASE_NOTES.txt file
955 https://review.skia.org/229760
Chris Dalton5a2f9622019-12-27 14:56:38 -0700956
957 * Implemented internal support for OpenGL tessellation.