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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | gm/deferredtextureimage.cpp » ('j') | src/image/SkImage_Gpu.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 Google Inc. 1 # Copyright 2016 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 declare_args() { 6 declare_args() {
7 } 7 }
8 8
9 skia_public_includes = [ 9 skia_public_includes = [
10 "include/android", 10 "include/android",
(...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 ] 536 ]
537 } 537 }
538 538
539 if (!is_component_build) { # Our test tools use many non-SK_API APIs... 539 if (!is_component_build) { # Our test tools use many non-SK_API APIs...
540 executable("dm") { 540 executable("dm") {
541 sources = [ 541 sources = [
542 "dm/DM.cpp", 542 "dm/DM.cpp",
543 "dm/DMJsonWriter.cpp", 543 "dm/DMJsonWriter.cpp",
544 "dm/DMSrcSink.cpp", 544 "dm/DMSrcSink.cpp",
545 ] 545 ]
546 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
546 include_dirs = [ "tests" ] 547 include_dirs = [ "tests" ]
547 deps = [ 548 deps = [
548 ":experimental_svg_model", 549 ":experimental_svg_model",
549 ":flags", 550 ":flags",
550 ":gm", 551 ":gm",
551 ":gpu_tool_utils", 552 ":gpu_tool_utils",
552 ":skia", 553 ":skia",
553 ":tests", 554 ":tests",
554 ":tool_utils", 555 ":tool_utils",
555 "//third_party/jsoncpp", 556 "//third_party/jsoncpp",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 "tools/SkShaper_harfbuzz.cpp", 591 "tools/SkShaper_harfbuzz.cpp",
591 "tools/using_skia_and_harfbuzz.cpp", 592 "tools/using_skia_and_harfbuzz.cpp",
592 ] 593 ]
593 deps = [ 594 deps = [
594 ":skia", 595 ":skia",
595 "//third_party/harfbuzz", 596 "//third_party/harfbuzz",
596 ] 597 ]
597 testonly = true 598 testonly = true
598 } 599 }
599 } 600 }
OLDNEW
« 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