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