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

Issue 2288033003: Turned on SkSL->GLSL compiler (Closed)

Created:
4 years, 3 months ago by ethannicholas
Modified:
4 years, 2 months ago
Reviewers:
bsalomon, dogben, egdaniel
CC:
reviews_skia.org
Target Ref:
refs/heads/master
Project:
skia
Visibility:
Public.

Description

Patch Set 1 #

Patch Set 2 : various fixes #

Patch Set 3 : fixed GN build #

Patch Set 4 : fixed type error #

Patch Set 5 : aligned with mtklein's changes #

Patch Set 6 : switched over to sk_FragColor, added more tests #

Patch Set 7 : rebased #

Patch Set 8 : minor text cleanups #

Patch Set 9 : wording cleanup #

Total comments: 9

Patch Set 10 : min/abs fix now uses a temp var, moved compiler instance into GrGLContext #

Patch Set 11 : fixed unused variable error #

Total comments: 3

Patch Set 12 : added virtual destructor to GrGLContextInfo #

Patch Set 13 : fixed error reporting #

Patch Set 14 : I swear I wrote this once already... #

Patch Set 15 : added gl_LastFrag* name #

Patch Set 16 : I don't know how I lost this change... #

Patch Set 17 : fixed various Android issues #

Patch Set 18 : more android fixes #

Patch Set 19 : better error reporting #

Patch Set 20 : more betterer error reporting #

Patch Set 21 : even more betterer error reporting #

Patch Set 22 : added support for 0x constants, indexing of vectors #

Patch Set 23 : removed unnecessary 'u' after unsigned constant #

Patch Set 24 : fixed unsigned handling, #defines #

Patch Set 25 : fixed release build #

Patch Set 26 : more fixes #

Patch Set 27 : fixed samplerExternalOES #

Patch Set 28 : one more samplerExternalOES fix #

Patch Set 29 : fixed a couple of 'u's that slipped through the cracks #

Patch Set 30 : fixed array sizes, other minor fixes #

Patch Set 31 : fixed non-rectangular matrix indexing #

Patch Set 32 : added support for array constructors, override_coverage #

Patch Set 33 : re-fixed samplerExternalOES #

Patch Set 34 : added gl_SampleMask #

Patch Set 35 : removed extraneous assert #

Patch Set 36 : fixed Vulkan #

Patch Set 37 : (hopefully) fixed redefinition of builtins #

Patch Set 38 : fixed builtin handling (I think) #

Patch Set 39 : added support for '~' operator #

Patch Set 40 : improved precision support #

Patch Set 41 : fixed broken test #

Total comments: 19

Patch Set 42 : Ben's feedback #

Patch Set 43 : that approach won't work #

Patch Set 44 : added gl_SecondaryFragcolorEXT #

Patch Set 45 : couple more minor fixes #

Patch Set 46 : hopefully fixed iOS bench issue #

Patch Set 47 : that ought to do it #

Total comments: 1

Patch Set 48 : removed static initializers #

Patch Set 49 : changed <iostream> to <ostream> #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1417 lines, -521 lines) Patch
M bench/GLBench.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 1 chunk +2 lines, -2 lines 0 comments Download
M bench/GLBench.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 3 chunks +23 lines, -6 lines 0 comments Download
M bench/GLInstancedArraysBench.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 2 chunks +1 line, -3 lines 0 comments Download
M bench/GLVec4ScalarBench.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 2 chunks +1 line, -3 lines 0 comments Download
M bench/GLVertexAttributesBench.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 3 chunks +2 lines, -4 lines 0 comments Download
M gyp/sksl.gyp View 1 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M src/gpu/gl/GrGLContext.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 4 chunks +15 lines, -2 lines 0 comments Download
M src/gpu/gl/GrGLContext.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +12 lines, -0 lines 0 comments Download
M src/gpu/gl/GrGLGpu.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 45 4 chunks +9 lines, -35 lines 0 comments Download
M src/gpu/gl/builders/GrGLShaderStringBuilder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 1 chunk +3 lines, -0 lines 0 comments Download
M src/gpu/gl/builders/GrGLShaderStringBuilder.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 4 chunks +123 lines, -7 lines 0 comments Download
M src/gpu/glsl/GrGLSLFragmentShaderBuilder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M src/gpu/glsl/GrGLSLFragmentShaderBuilder.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +5 lines, -5 lines 0 comments Download
M src/gpu/glsl/GrGLSLShaderBuilder.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +14 lines, -10 lines 0 comments Download
M src/gpu/glsl/GrGLSLShaderVar.h View 1 2 3 4 5 1 chunk +3 lines, -7 lines 0 comments Download
M src/gpu/instanced/InstanceProcessor.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 8 chunks +17 lines, -17 lines 0 comments Download
A src/sksl/README View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +35 lines, -0 lines 0 comments Download
M src/sksl/SkSLCodeGenerator.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 1 chunk +1 line, -1 line 0 comments Download
M src/sksl/SkSLCompiler.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 3 chunks +5 lines, -0 lines 0 comments Download
M src/sksl/SkSLCompiler.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 8 chunks +29 lines, -9 lines 0 comments Download
M src/sksl/SkSLContext.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 2 chunks +2 lines, -0 lines 0 comments Download
M src/sksl/SkSLGLSLCodeGenerator.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 5 chunks +14 lines, -2 lines 0 comments Download
M src/sksl/SkSLGLSLCodeGenerator.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 11 chunks +184 lines, -22 lines 0 comments Download
M src/sksl/SkSLIRGenerator.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 chunks +4 lines, -0 lines 0 comments Download
M src/sksl/SkSLIRGenerator.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 13 chunks +65 lines, -17 lines 0 comments Download
M src/sksl/SkSLMain.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 2 chunks +43 lines, -9 lines 0 comments Download
M src/sksl/SkSLParser.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 2 chunks +2 lines, -1 line 0 comments Download
M src/sksl/SkSLParser.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 10 chunks +54 lines, -18 lines 0 comments Download
M src/sksl/SkSLSPIRVCodeGenerator.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 chunk +1 line, -1 line 0 comments Download
M src/sksl/SkSLSPIRVCodeGenerator.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 5 chunks +21 lines, -4 lines 0 comments Download
M src/sksl/SkSLToken.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 3 chunks +4 lines, -2 lines 0 comments Download
M src/sksl/SkSLUtil.h View 1 chunk +9 lines, -5 lines 0 comments Download
M src/sksl/SkSLUtil.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +47 lines, -0 lines 0 comments Download
M src/sksl/ast/SkSLASTDeclaration.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 1 chunk +3 lines, -1 line 0 comments Download
M src/sksl/ast/SkSLASTIndexSuffix.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +13 lines, -3 lines 0 comments Download
M src/sksl/ast/SkSLASTLayout.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 3 chunks +15 lines, -2 lines 0 comments Download
A src/sksl/ast/SkSLASTModifiersDeclaration.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +37 lines, -0 lines 0 comments Download
A src/sksl/ast/SkSLASTPrecision.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 1 chunk +45 lines, -0 lines 0 comments Download
M src/sksl/ir/SkSLIndexExpression.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 3 chunks +3 lines, -3 lines 0 comments Download
M src/sksl/ir/SkSLIntLiteral.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +2 lines, -2 lines 0 comments Download
M src/sksl/ir/SkSLLayout.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 4 chunks +26 lines, -8 lines 0 comments Download
A src/sksl/ir/SkSLModifiersDeclaration.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +37 lines, -0 lines 0 comments Download
M src/sksl/ir/SkSLProgram.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +7 lines, -2 lines 0 comments Download
M src/sksl/ir/SkSLProgramElement.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +2 lines, -1 line 0 comments Download
M src/sksl/lex.sksl.c View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 27 chunks +269 lines, -258 lines 0 comments Download
M src/sksl/sksl.flex View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +5 lines, -1 line 0 comments Download
M src/sksl/sksl.include View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 2 chunks +3 lines, -0 lines 0 comments Download
M src/sksl/sksl_frag.include View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 1 chunk +13 lines, -1 line 0 comments Download
M tests/SkSLErrorTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +2 lines, -2 lines 0 comments Download
M tests/SkSLGLSLTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 9 chunks +183 lines, -43 lines 0 comments Download

Messages

Total messages: 125 (92 generated)
ethannicholas
4 years, 3 months ago (2016-09-08 19:38:05 UTC) #15
bsalomon
https://codereview.chromium.org/2288033003/diff/160001/src/gpu/gl/builders/GrGLShaderStringBuilder.cpp File src/gpu/gl/builders/GrGLShaderStringBuilder.cpp (right): https://codereview.chromium.org/2288033003/diff/160001/src/gpu/gl/builders/GrGLShaderStringBuilder.cpp#newcode118 src/gpu/gl/builders/GrGLShaderStringBuilder.cpp:118: static SkSL::Compiler compiler; We only allow a single GrContext ...
4 years, 3 months ago (2016-09-08 19:51:37 UTC) #16
dogben
lgtm Reviewed src/sksl/* and tests/SkSLGLSLTest.cpp.
4 years, 3 months ago (2016-09-08 21:48:49 UTC) #17
ethannicholas
https://codereview.chromium.org/2288033003/diff/160001/src/gpu/gl/builders/GrGLShaderStringBuilder.cpp File src/gpu/gl/builders/GrGLShaderStringBuilder.cpp (right): https://codereview.chromium.org/2288033003/diff/160001/src/gpu/gl/builders/GrGLShaderStringBuilder.cpp#newcode118 src/gpu/gl/builders/GrGLShaderStringBuilder.cpp:118: static SkSL::Compiler compiler; On 2016/09/08 19:51:37, bsalomon wrote: > ...
4 years, 3 months ago (2016-09-09 16:34:54 UTC) #28
bsalomon
https://codereview.chromium.org/2288033003/diff/160001/src/gpu/gl/builders/GrGLShaderStringBuilder.cpp File src/gpu/gl/builders/GrGLShaderStringBuilder.cpp (right): https://codereview.chromium.org/2288033003/diff/160001/src/gpu/gl/builders/GrGLShaderStringBuilder.cpp#newcode118 src/gpu/gl/builders/GrGLShaderStringBuilder.cpp:118: static SkSL::Compiler compiler; On 2016/09/09 16:34:54, ethannicholas wrote: > ...
4 years, 3 months ago (2016-09-12 13:48:57 UTC) #29
ethannicholas
https://codereview.chromium.org/2288033003/diff/160001/src/gpu/gl/builders/GrGLShaderStringBuilder.cpp File src/gpu/gl/builders/GrGLShaderStringBuilder.cpp (right): https://codereview.chromium.org/2288033003/diff/160001/src/gpu/gl/builders/GrGLShaderStringBuilder.cpp#newcode118 src/gpu/gl/builders/GrGLShaderStringBuilder.cpp:118: static SkSL::Compiler compiler; On 2016/09/12 13:48:57, bsalomon wrote: > ...
4 years, 3 months ago (2016-09-12 14:53:26 UTC) #30
bsalomon
lgtm
4 years, 3 months ago (2016-09-12 14:58:43 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2288033003/220001
4 years, 3 months ago (2016-09-12 15:07:29 UTC) #34
commit-bot: I haz the power
Committed patchset #12 (id:220001) as https://skia.googlesource.com/skia/+/9b0fe3d125f237d9884732a48414fa85fc71b4e3
4 years, 3 months ago (2016-09-12 15:50:16 UTC) #36
ethannicholas
A revert of this CL (patchset #12 id:220001) has been created in https://codereview.chromium.org/2337553002/ by ethannicholas@google.com. ...
4 years, 3 months ago (2016-09-12 16:15:41 UTC) #37
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2288033003/760001
4 years, 2 months ago (2016-09-26 13:55:55 UTC) #54
commit-bot: I haz the power
Try jobs failed on following builders: Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-GN-Trybot on master.client.skia (JOB_FAILED, http://build.chromium.org/p/client.skia/builders/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-GN-Trybot/builds/1473)
4 years, 2 months ago (2016-09-26 14:02:31 UTC) #56
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2288033003/800001
4 years, 2 months ago (2016-09-26 18:36:14 UTC) #59
commit-bot: I haz the power
Committed patchset #37 (id:800001) as https://skia.googlesource.com/skia/+/b12b3c6908c62c908b3680be01e3b5bfd30de310
4 years, 2 months ago (2016-09-26 18:58:58 UTC) #61
ethannicholas
A revert of this CL (patchset #37 id:800001) has been created in https://codereview.chromium.org/2372773002/ by ethannicholas@google.com. ...
4 years, 2 months ago (2016-09-26 20:43:32 UTC) #62
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2288033003/880001
4 years, 2 months ago (2016-09-30 13:04:08 UTC) #70
commit-bot: I haz the power
Committed patchset #41 (id:880001) as https://skia.googlesource.com/skia/+/f008b0a59f45c0d4bea3e66faf3b01805009ec89
4 years, 2 months ago (2016-09-30 13:23:28 UTC) #72
dogben
https://codereview.chromium.org/2288033003/diff/880001/src/sksl/SkSLCompiler.cpp File src/sksl/SkSLCompiler.cpp (right): https://codereview.chromium.org/2288033003/diff/880001/src/sksl/SkSLCompiler.cpp#newcode137 src/sksl/SkSLCompiler.cpp:137: printf("%s", errorText().c_str()); Debugging? https://codereview.chromium.org/2288033003/diff/880001/src/sksl/SkSLGLSLCodeGenerator.cpp File src/sksl/SkSLGLSLCodeGenerator.cpp (right): https://codereview.chromium.org/2288033003/diff/880001/src/sksl/SkSLGLSLCodeGenerator.cpp#newcode146 src/sksl/SkSLGLSLCodeGenerator.cpp:146: ...
4 years, 2 months ago (2016-09-30 15:00:52 UTC) #73
fmalita_google_do_not_use
A revert of this CL (patchset #41 id:880001) has been created in https://codereview.chromium.org/2387643003/ by fmalita@google.com. ...
4 years, 2 months ago (2016-09-30 15:05:05 UTC) #74
ethannicholas
It's going to stick this time! :-) Just needs one last going-over before landing it ...
4 years, 2 months ago (2016-10-06 13:16:47 UTC) #98
dogben
lgtm src/sksl LGTM https://codereview.chromium.org/2288033003/diff/1200001/src/sksl/SkSLGLSLCodeGenerator.cpp File src/sksl/SkSLGLSLCodeGenerator.cpp (right): https://codereview.chromium.org/2288033003/diff/1200001/src/sksl/SkSLGLSLCodeGenerator.cpp#newcode146 src/sksl/SkSLGLSLCodeGenerator.cpp:146: this->writeExpression(absExpr, kTopLevel_Precedence); nit: kAssignment_Precedence
4 years, 2 months ago (2016-10-09 23:54:57 UTC) #99
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2288033003/1200001
4 years, 2 months ago (2016-10-10 13:20:05 UTC) #102
commit-bot: I haz the power
Committed patchset #47 (id:1200001) as https://skia.googlesource.com/skia/+/08b2ccf398e2b81bc05d2c105837e5419899469b
4 years, 2 months ago (2016-10-10 13:40:29 UTC) #104
jvanverth1
A revert of this CL (patchset #47 id:1200001) has been created in https://codereview.chromium.org/2403083002/ by jvanverth@google.com. ...
4 years, 2 months ago (2016-10-10 16:18:03 UTC) #105
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2288033003/1220001
4 years, 2 months ago (2016-10-10 16:46:37 UTC) #109
commit-bot: I haz the power
Committed patchset #48 (id:1220001) as https://skia.googlesource.com/skia/+/dcfe6dba4a335e50e86ff68e3252065d4197432c
4 years, 2 months ago (2016-10-10 17:09:07 UTC) #111
mtklein
A revert of this CL (patchset #48 id:1220001) has been created in https://codereview.chromium.org/2408053002/ by mtklein@google.com. ...
4 years, 2 months ago (2016-10-11 02:41:09 UTC) #112
ethannicholas
On 2016/10/11 02:41:09, mtklein wrote: > A revert of this CL (patchset #48 id:1220001) has ...
4 years, 2 months ago (2016-10-11 14:58:01 UTC) #114
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2288033003/1240001
4 years, 2 months ago (2016-10-11 14:58:31 UTC) #117
commit-bot: I haz the power
Committed patchset #49 (id:1240001) as https://skia.googlesource.com/skia/+/ccb1dd8f267f9d7fe7c9d0ce222ebc81b41853b3
4 years, 2 months ago (2016-10-11 15:47:10 UTC) #119
jvanverth1
A revert of this CL (patchset #49 id:1240001) has been created in https://codereview.chromium.org/2408193002/ by jvanverth@google.com. ...
4 years, 2 months ago (2016-10-11 17:03:30 UTC) #120
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2288033003/1240001
4 years, 2 months ago (2016-10-12 13:38:32 UTC) #123
commit-bot: I haz the power
4 years, 2 months ago (2016-10-12 13:40:01 UTC) #125
Message was sent while issue was closed.
Committed patchset #49 (id:1240001) as
https://skia.googlesource.com/skia/+/5961bc9278a00e56dacdd9408d0744b5a0a3b493

Powered by Google App Engine
This is Rietveld 408576698