aboutsummaryrefslogtreecommitdiffhomepage
path: root/AUTHORS
diff options
context:
space:
mode:
authorGravatar Yong-Hwan Baek <meisterdevhwan@gmail.com>2018-04-20 21:44:43 +0900
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-04-22 14:42:01 +0000
commit701a3ca157c85935988e82cd630828babc46b460 (patch)
tree7228991a45a183349cfeaf1d38613e36b33a21ff /AUTHORS
parent20f8bd7711196a83789c8e5286501b4711b845c4 (diff)
Fixed SkVertices crashing on Windows DLL builds
SkVertices::Builder uses custom new operator but not exposed to dll. While delete operator in SkVertices.h could be inlined, it causes crash on Windows DLL builds. This patch fixes this issue. Change-Id: I8b635ad3aa4a3f496a392ce7840417947999e4b0 Reviewed-on: https://skia-review.googlesource.com/122480 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'AUTHORS')
-rw-r--r--AUTHORS3
1 files changed, 2 insertions, 1 deletions
diff --git a/AUTHORS b/AUTHORS
index 0d33ce12e4..016e05a93b 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -49,4 +49,5 @@ Christian Plesner Hansen <plesner@t.undra.org>
Marco Alesiani <marco.diiga@gmail.com>
Adobe Systems Incorporated <*@adobe.com>
Yandex LLC <*@yandex-team.ru>
-Kaloyan Donev <kdonev@gmail.com> \ No newline at end of file
+Kaloyan Donev <kdonev@gmail.com>
+Yong-Hwan Baek <meisterdevhwan@gmail.com>