RELEASE_NOTES: note change to SkMallocPixelRef

No-Try: true
Change-Id: I04b5193bab1524debb5a9ad2baf655ddd4209288
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/235857
Reviewed-by: Heather Miller <hcm@google.com>
Commit-Queue: Hal Canary <halcanary@google.com>
This commit is contained in:
Hal Canary 2019-08-20 11:28:37 -04:00 committed by Skia Commit-Bot
parent 1b9040fc6b
commit 2af5db7273

View File

@ -6,35 +6,38 @@ This file includes a list of high level updates for each milestone release.
Milestone 78 Milestone 78
* Added RELEASE_NOTES.txt file * Added RELEASE_NOTES.txt file
* SkDrawLooper is no longer supported in SkPaint or SkCanvas. * SkDrawLooper is no longer supported in SkPaint or SkCanvas.
* SkPath::Iter::next() now ignores its consumDegenerates bools. Those will so go away entirely * SkPath::Iter::next() now ignores its consumDegenerates bools. Those will so go away entirely
* SkImage: new factories: DecodeToRaster, DecodeToTexture * SkImage: new factories: DecodeToRaster, DecodeToTexture
* SkImageFilter API refactor started: * SkImageFilter API refactor started:
- Provide new factory API in include/effects/SkImageFilters - Provide new factory API in include/effects/SkImageFilters
- Consolidated enum types to use SkTileMode and SkColorChannel - Consolidated enum types to use SkTileMode and SkColorChannel
- Hide filter implementation classes - Hide filter implementation classes
- Hide previously public functions on SkImageFilter that were intended for internal use only - Hide previously public functions on SkImageFilter that were intended for internal use only
* SkColorFilters::HSLAMatrix - new matrix color filter operating in HSLA space. * SkColorFilters::HSLAMatrix - new matrix color filter operating in HSLA space.
* Modify GrBackendFormat getters to not return internal pointers. Use an enum class for GL formats. * Modify GrBackendFormat getters to not return internal pointers. Use an enum class for GL formats.
* Expose GrContext::dump() when SK_ENABLE_DUMP_GPU is defined. * Expose GrContext::dump() when SK_ENABLE_DUMP_GPU is defined.
* Vulkan backend now supports YCbCr sampler for I420 Vulkan images that are not * Vulkan backend now supports YCbCr sampler for I420 Vulkan images that are not
backed by external images. backed by external images.
* Add SkCodec::SelectionPolicy for distinguishing between decoding a still image * Add SkCodec::SelectionPolicy for distinguishing between decoding a still image
or an image sequence for a container format that has both (e.g. HEIF). or an image sequence for a container format that has both (e.g. HEIF).
* SkImage::makeTextureImage and SkImage::MakeCrossContextFromPixmap no longer take an * SkImage::makeTextureImage and SkImage::MakeCrossContextFromPixmap no longer take an
SkColorSpace parameter. It was unused. SkColorSpace parameter. It was unused.
* SkImage::reinterpretColorSpace - to reinterpret image contents in a new color space. * SkImage::reinterpretColorSpace - to reinterpret image contents in a new color space.
* Removed SkImage::MakeCrossContextFromEncoded. * Removed SkImage::MakeCrossContextFromEncoded.
* SkMallocPixelRef: remove MakeDirect and MakeWithProc from API.
https://review.skia.org/234660