Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: BUILD.gn

Issue 2242883004: Store mipmap levels in deferred texture image (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Adding no strict aliasing and some asserts. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gm/deferredtextureimage.cpp » ('j') | src/image/SkImage_Gpu.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index ff3c492ffde7e72d7f8d4df9fa836e172e42ec04..0ffa543e44081ef61e1fce6fc59f4c31668eb7bd 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -543,6 +543,7 @@ if (!is_component_build) { # Our test tools use many non-SK_API APIs...
"dm/DMJsonWriter.cpp",
"dm/DMSrcSink.cpp",
]
+ cflags = [ "-fno-strict-aliasing" ]
cblume 2016/08/12 22:25:35 I believe the problem as pointer aliasing. This so
mtklein 2016/08/14 14:06:24 Right, we turn on -fstrict-aliasing in our test bo
cblume 2016/08/15 23:39:47 Oh huh. Maybe the bot runs passed just by chance t
mtklein 2016/08/16 02:22:22 Yes, I agree the proximal problem here is that vst
mtklein 2016/08/16 02:22:22 So glad to have you on board, but I don't think th
cblume 2016/08/16 03:47:19 Mmmm I think C and C++ differ in their union behav
cblume 2016/08/16 03:47:19 I have no idea if it is used. I was running into t
include_dirs = [ "tests" ]
deps = [
":experimental_svg_model",
« no previous file with comments | « no previous file | gm/deferredtextureimage.cpp » ('j') | src/image/SkImage_Gpu.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698