blob: af2be25c16266f50913122285df49be5e8fb3db0 [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
Hal Canary9e514a12019-10-01 15:15:36 -04005* * *
Mike Reed430470d2019-09-12 17:09:12 -04006
Heather Millercc13acb2019-10-22 15:45:45 -04007Milestone 80
Heather Millerd5153bb2019-10-17 00:03:36 -04008
Heather Millercc13acb2019-10-22 15:45:45 -04009<Insert new notes here- top is most recent.>
10
11* * *
12
13Milestone 79
Heather Millerd5153bb2019-10-17 00:03:36 -040014
Mike Reeda32654c2019-10-04 10:18:34 -040015 * SkTextBlob::Iter to discover the glyph indices and typefaces in each run
16 https://skia-review.googlesource.com/246296
17
Brian Osman11e6aa82019-10-16 13:58:42 -040018 * Added support for PQ and HLG transfer functions to SkColorSpace.
Heather Millerd5153bb2019-10-17 00:03:36 -040019 https://skia-review.googlesource.com/c/skia/+/249000
Brian Osman11e6aa82019-10-16 13:58:42 -040020
Greg Daniel8b666172019-10-09 12:38:22 -040021 * Added new api on GrContext ComputeImageSize. This replaces the hold static helper
22 ComputeTextureSize.
Heather Millerd5153bb2019-10-17 00:03:36 -040023 https://skia-review.googlesource.com/c/skia/+/247337
Hal Canary9e514a12019-10-01 15:15:36 -040024
Brian Salomon9241a6d2019-10-03 13:26:54 -040025 * New versions of SkSurface async-rescale-and read APIs that allow client to extend
26 the lifetime of the result data. Old versions are deprecated.
27 https://review.skia.org/245457
28
Hal Canary9e514a12019-10-01 15:15:36 -040029 * Add SkColorInfo. It's dimensionless SkImageInfo.
30 https://review.skia.org/245261
31
32 * Added SkPixmap-based createBackendTexture method to GrContext. This allows clients to create
33 backend resources (initialized with texture data) that Skia/Ganesh doesn't know about/track.
34 https://review.skia.org/244676
35
36 * Add explicit src and dst colorspace parameters to SkColorFilter::filterColor4f()
37 https://review.skia.org/244882
38
39 * Remove Vulkan/Metal float32 RGBA texture support
40 https://review.skia.org/244881
41
42 * Add SkSurface::MakeFromCAMetalLayer
43 https://review.skia.org/242563
44
45 * Added kAlpha_F16_SkColorType, kRG_F16_SkColorType and kRGBA_16161616_SkColorType.
46 This is intended to help support HDR YUV uses case (e.g., P010 and P016). As such,
47 the addition is focused on allowing creation of SkPixmaps and SkImages and not
48 SkSurfaces (i.e., who wants to render to render to these?)
49 https://review.skia.org/241357
50
51 * Start to move nested SkPath types (e.g. Direction, Verb) up to root level in SkPathTypes.h
52 https://review.skia.org/241079
53
54 * Remove isRectContour and ksNestedFillRects from public
55 https://review.skia.org/241078
56
57 * Added kRG_88_SkColorType. This is intended to help support YUV uses case (e.g., NV12).
58 As such, the addition is focused on allowing creation of SkPixmaps and SkImages and not
59 SkSurfaces (i.e., who wants to render to RG?)
60 https://review.skia.org/239930
61 https://review.skia.org/235797
62
Brian Osman172bb442019-09-06 10:16:02 -040063 * Make the size of program/pipeline caches configurable via
64 GrContextOptions::fRuntimeProgramCacheSize
65 https://review.skia.org/239756
66
Hal Canary9e514a12019-10-01 15:15:36 -040067 * Added kAlpha_16_SkColorType and kRG_1616_SkColorType. This is intended to help support HDR YUV
68 uses case (e.g., P010 and P016). As such, the addition is focused on allowing creation of
69 SkPixmaps and SkImages and not SkSurfaces (i.e., who wants to render to render to these?)
70 https://review.skia.org/239930
71
72 * Add GrContext::precompileShader to allow up-front compilation of previously-cached shaders.
73 https://review.skia.org/239438
74
75* * *
76
Heather Miller118a4072019-07-25 11:33:30 -040077Milestone 78
78
Hal Canary2af5db72019-08-20 11:28:37 -040079 * SkDrawLooper is no longer supported in SkPaint or SkCanvas.
Hal Canary3b0e7f62019-08-20 14:52:02 -040080 https://review.skia.org/230579
81 https://review.skia.org/231736
Mike Reed9dc0b9e2019-07-29 17:52:48 -040082
Hal Canary3b0e7f62019-08-20 14:52:02 -040083 * SkPath::Iter::next() now ignores its consumDegenerates bools. Those will so
84 go away entirely
85 https://review.skia.org/235104
Mike Reedba7e9a62019-08-16 13:30:34 -040086
Hal Canary2af5db72019-08-20 11:28:37 -040087 * SkImage: new factories: DecodeToRaster, DecodeToTexture
Hal Canary3b0e7f62019-08-20 14:52:02 -040088 https://review.skia.org/234476
Mike Reeda5acbf92019-08-14 11:08:41 -040089
Hal Canary2af5db72019-08-20 11:28:37 -040090 * SkImageFilter API refactor started:
91 - Provide new factory API in include/effects/SkImageFilters
92 - Consolidated enum types to use SkTileMode and SkColorChannel
93 - Hide filter implementation classes
Hal Canary3b0e7f62019-08-20 14:52:02 -040094 - Hide previously public functions on SkImageFilter that were intended for
95 internal use only
96 https://review.skia.org/230198
97 https://review.skia.org/230876
98 https://review.skia.org/231256
Florin Malita48009492019-08-01 17:20:19 -040099
Hal Canary3b0e7f62019-08-20 14:52:02 -0400100 * SkColorFilters::HSLAMatrix - new matrix color filter operating in HSLA
101 space.
102 https://review.skia.org/231736
Brian Salomond4764a12019-08-08 12:08:24 -0400103
Hal Canary3b0e7f62019-08-20 14:52:02 -0400104 * Modify GrBackendFormat getters to not return internal pointers. Use an enum
105 class for GL formats.
106 https://review.skia.org/233160
Brian Salomonec22b1a2019-08-09 09:41:48 -0400107
Hal Canary2af5db72019-08-20 11:28:37 -0400108 * Expose GrContext::dump() when SK_ENABLE_DUMP_GPU is defined.
Hal Canary3b0e7f62019-08-20 14:52:02 -0400109 https://review.skia.org/233557
Sergey Ulanov2739fd22019-08-11 22:46:33 -0700110
Hal Canary3b0e7f62019-08-20 14:52:02 -0400111 * Vulkan backend now supports YCbCr sampler for I420 Vulkan images that are
112 not backed by external images.
113 https://review.skia.org/233776
Leon Scroggins III6154ac42019-08-14 11:29:29 -0400114
Hal Canary3b0e7f62019-08-20 14:52:02 -0400115 * Add SkCodec::SelectionPolicy for distinguishing between decoding a still
116 image or an image sequence for a container format that has both (e.g. HEIF).
117 https://review.skia.org/232839
Brian Osmand566e2e2019-08-14 13:19:04 -0400118
Hal Canary3b0e7f62019-08-20 14:52:02 -0400119 * SkImage::makeTextureImage and SkImage::MakeCrossContextFromPixmap no longer
120 take an SkColorSpace parameter. It was unused.
121 https://review.skia.org/234579
122 https://review.skia.org/234912
Brian Osmand5148372019-08-14 16:14:51 -0400123
Hal Canary3b0e7f62019-08-20 14:52:02 -0400124 * SkImage::reinterpretColorSpace - to reinterpret image contents in a new
125 color space.
126 https://review.skia.org/234328
Brian Osman4c3fd342019-08-15 12:13:53 -0400127
Hal Canary2af5db72019-08-20 11:28:37 -0400128 * Removed SkImage::MakeCrossContextFromEncoded.
Hal Canary3b0e7f62019-08-20 14:52:02 -0400129 https://review.skia.org/234912
Hal Canary2af5db72019-08-20 11:28:37 -0400130
Jim Van Verth066ceb12019-08-28 14:35:55 -0400131 * Add Metal support for GrFence, GrSemaphore, and GrBackendSemaphore
132 https://review.skia.org/233416
133
Hal Canary2af5db72019-08-20 11:28:37 -0400134 * SkMallocPixelRef: remove MakeDirect and MakeWithProc from API.
135 https://review.skia.org/234660
Mike Klein334a6422019-08-27 08:12:15 -0500136
Michael Ludwiga595f862019-08-27 15:25:49 -0400137 * Remove 4-parameter variant of SkRect::join() and intersect(), and
138 noemptycheck variants of intersect().
139 https://review.skia.org/235832
140 https://review.skia.org/237142
141
Mike Klein334a6422019-08-27 08:12:15 -0500142 * Remove unused sk_sp comparison operators.
143 https://review.skia.org/236942
Michael Ludwiga595f862019-08-27 15:25:49 -0400144
145 * Add SkColor4f variant to experimental_DrawEdgeAAQuad for SkiaRenderer.
146 https://review.skia.org/237492
Robert Phillipscf39f372019-09-03 10:29:20 -0400147
148 * Deprecated maxCount resource cache limit for Ganesh.
149 This hasn't been relevant for a long time.
150
Brian Osmana66081d2019-09-03 14:59:26 -0400151 * Changed GrContextOptions' fDisallowGLSLBinaryCaching to fShaderCacheStrategy,
152 and allow caching SkSL.
153 https://review.skia.org/238856
Chris Dalton38f0a492019-10-07 11:51:07 -0600154
155 * Use GL_QCOM_TILED_RENDERING to explicitly discard stencil
Heather Millercc13acb2019-10-22 15:45:45 -0400156
157 * Added RELEASE_NOTES.txt file
158 https://review.skia.org/229760