Merge 8 release notes into RELEASE_NOTES.md
Cherry pick change I2647fd2817041ebd02e686ec21f21e995d1924b7 from branch chrome/m130
to main.
Change-Id: I9f93b135c5f6cd7e346cd1991ada6005934ab520
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/900277
Reviewed-by: Heather Miller <hcm@google.com>
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index dad6985..5960101 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -2,6 +2,25 @@
This file includes a list of high level updates for each milestone release.
+Milestone 130
+-------------
+ * Add version of `SkAndroidCodec::getGainmapAndroidCodec` which returns an `SkAndroidCodec` instead
+ of an `SkStream`. Mark as deprecated the version that returns an `SkStream`.
+ * `SkColorFilter::filterColor` has been removed. Please use `SkColorFilter::filterColor4f` instead.
+ * SkFourByteTag has been moved to its own file: `include/core/SkFourByteTag.h`
+ * Ganesh files have been moved out of include/gpu/ into include/gpu/ganesh/. Shims have been left in place, but clients should migrate to the new paths.
+ * GR_GL_CUSTOM_SETUP_HEADER will be removed. Configuration in a client provided
+ SkUserConfig.h file (or defines set during compilation) are sufficient to affect
+ settings in GrGLConfig.h
+ * `GR_MAKE_BITFIELD_CLASS_OPS` and `GR_DECL_BITFIELD_CLASS_OPS_FRIENDS` have been removed
+ from the public API
+ * `SkMSec` has been removed from the public API, including `SkParse::FindMSec`
+ * A noop change to our SkSL runtime effect builder APIs. Moved make functions from subclasses
+ SkRuntimeShaderBuilder, SkRuntimeColorFilterBuilder, and SkRuntimeBlendBuilder to the base class
+ SkRuntimeEffectBuilder.
+
+* * *
+
Milestone 129
-------------
* The Dawn-specific constructors and methods on `skgpu::graphite::TextureInfo`,
diff --git a/relnotes/android-codec-gainmap.md b/relnotes/android-codec-gainmap.md
deleted file mode 100644
index 4149593..0000000
--- a/relnotes/android-codec-gainmap.md
+++ /dev/null
@@ -1,2 +0,0 @@
-Add version of `SkAndroidCodec::getGainmapAndroidCodec` which returns an `SkAndroidCodec` instead
-of an `SkStream`. Mark as deprecated the version that returns an `SkStream`.
diff --git a/relnotes/filter-color.md b/relnotes/filter-color.md
deleted file mode 100644
index 973d661..0000000
--- a/relnotes/filter-color.md
+++ /dev/null
@@ -1 +0,0 @@
-`SkColorFilter::filterColor` has been removed. Please use `SkColorFilter::filterColor4f` instead.
\ No newline at end of file
diff --git a/relnotes/fourbytetag.md b/relnotes/fourbytetag.md
deleted file mode 100644
index 8f71f3c..0000000
--- a/relnotes/fourbytetag.md
+++ /dev/null
@@ -1 +0,0 @@
-SkFourByteTag has been moved to its own file: `include/core/SkFourByteTag.h`
\ No newline at end of file
diff --git a/relnotes/ganesh-move.md b/relnotes/ganesh-move.md
deleted file mode 100644
index 9ed3059..0000000
--- a/relnotes/ganesh-move.md
+++ /dev/null
@@ -1 +0,0 @@
-Ganesh files have been moved out of include/gpu/ into include/gpu/ganesh/. Shims have been left in place, but clients should migrate to the new paths.
\ No newline at end of file
diff --git a/relnotes/grglconfig.md b/relnotes/grglconfig.md
deleted file mode 100644
index 88c4b32..0000000
--- a/relnotes/grglconfig.md
+++ /dev/null
@@ -1,3 +0,0 @@
-GR_GL_CUSTOM_SETUP_HEADER will be removed. Configuration in a client provided
-SkUserConfig.h file (or defines set during compilation) are sufficient to affect
-settings in GrGLConfig.h
\ No newline at end of file
diff --git a/relnotes/macro.md b/relnotes/macro.md
deleted file mode 100644
index 5c648d2..0000000
--- a/relnotes/macro.md
+++ /dev/null
@@ -1,2 +0,0 @@
-`GR_MAKE_BITFIELD_CLASS_OPS` and `GR_DECL_BITFIELD_CLASS_OPS_FRIENDS` have been removed
-from the public API
\ No newline at end of file
diff --git a/relnotes/skmsec.md b/relnotes/skmsec.md
deleted file mode 100644
index edcdaf0..0000000
--- a/relnotes/skmsec.md
+++ /dev/null
@@ -1 +0,0 @@
-`SkMSec` has been removed from the public API, including `SkParse::FindMSec`
\ No newline at end of file
diff --git a/relnotes/skslbuilders.md b/relnotes/skslbuilders.md
deleted file mode 100644
index 969b643..0000000
--- a/relnotes/skslbuilders.md
+++ /dev/null
@@ -1,3 +0,0 @@
-A noop change to our SkSL runtime effect builder APIs. Moved make functions from subclasses
-SkRuntimeShaderBuilder, SkRuntimeColorFilterBuilder, and SkRuntimeBlendBuilder to the base class
-SkRuntimeEffectBuilder.