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

Issue 1714883002: command_buffer_gles2: Implement EGL default Display as a global object (Closed)

Created:
4 years, 10 months ago by Kimmo Kinnunen
Modified:
4 years, 7 months ago
CC:
chromium-reviews, piman+watch_chromium.org, Sami Väisänen
Base URL:
https://chromium.googlesource.com/chromium/src.git@command_buffer_gles2-multiple-contexts
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

command_buffer_gles2: Implement EGL default Display as a global object Make EGL Display a global. eglGetDisplay(EGL_DEFAULT_DISPLAY) will return the same object. Store EGL state in a new thread-local object (ThreadState). One display, multiple surfaces, multiple contexts. Fix the currently implemented entry points to return specified errors and behave as specified. Notable changes: * eglGetDisplay() does not create new displays for each invocation * eglTerminate() invalidates the created egl objects but leaves the current context intact as specified * eglMakeCurrent() is implemented more correctly with refcount semantics * eglQueryStrings() works without display for some names * eglReleaseThread() is implemeted * Config are now separate for pbuffers and windows, so that contexts can be created separate from surfaces * Context can be made current with different surfaces * Catches errors related to context being set current to multiple threads * Tries to be thread-safe In the implementation, the Display contains a lock ensuring all thread accesses are consistent. All functions using or changing thread-local state have explicit egl::ThreadState parameter. BUG=581634 CQ_INCLUDE_TRYBOTS=tryserver.chromium.win:win_optional_gpu_tests_rel Committed: https://crrev.com/de9aa3be41bca094454babbd62907815fad7f5c2 Cr-Commit-Position: refs/heads/master@{#377535} Committed: https://crrev.com/7b01a0867be0895009b120f37fcd4166a84f404b Cr-Commit-Position: refs/heads/master@{#386613} Committed: https://crrev.com/f9d5c7e6fd53570c0decc63e8ec51d30e0701c89 Cr-Commit-Position: refs/heads/master@{#387871} Committed: https://crrev.com/2a8624e1d4f8a82a9a8ce6b55fa5a48be09b9e09 Cr-Commit-Position: refs/heads/master@{#388745} Committed: https://crrev.com/50a2353656f05e3ed1ee850ee7c326c6ca99cd77 Cr-Commit-Position: refs/heads/master@{#390358} Committed: https://crrev.com/4b0a5f72ec65e8a61647c65312fbe1250032001d Cr-Commit-Position: refs/heads/master@{#392902}

Patch Set 1 #

Total comments: 10

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : gles2_conform_support build files #

Patch Set 5 : win fixes #

Total comments: 36

Patch Set 6 : address review comments #

Patch Set 7 : workaround gtf #

Total comments: 2

Patch Set 8 : #

Total comments: 1

Patch Set 9 : fix win clang compile #

Patch Set 10 : rebase #

Patch Set 11 : add support for GTF #

Patch Set 12 : android compile fix in egl_tests.cc #

Patch Set 13 : #

Patch Set 14 : #

Patch Set 15 : win fixes #

Total comments: 2

Patch Set 16 : win link fix in .gyp #

Patch Set 17 : add nogncheck to egl_native_windowless.cc #

Total comments: 2

Patch Set 18 : rebase+add test_support.h to egl/BUILD.gn #

Patch Set 19 : fix gles2_conform_test assert and khronos_glcts_support compile failure #

Patch Set 20 : rebase #

Patch Set 21 : add a missing #include #

Patch Set 22 : use original makecurrent #

Patch Set 23 : remove redundant makecurrent from swapbuffers #

Patch Set 24 : passes once decoder is fixed #

Patch Set 25 : rebase #

Patch Set 26 : use correct egl object to fix compile on chromeos #

Patch Set 27 : rebase #

Patch Set 28 : rebase #

Patch Set 29 : add a hunk missing from the rebase #

Patch Set 30 : rebase #

Patch Set 31 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+2027 lines, -831 lines) Patch
M gpu/BUILD.gn 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 3 chunks +5 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder.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 1 chunk +3 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder.cc 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 3 chunks +14 lines, -1 line 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_mock.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 1 chunk +1 line, -0 lines 0 comments Download
M gpu/command_buffer/tests/command_buffer_gles2_tests_main.cc View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -1 line 0 comments Download
M gpu/command_buffer/tests/egl_test.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +601 lines, -11 lines 0 comments Download
M gpu/gles2_conform_support/egl/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 2 chunks +7 lines, -0 lines 0 comments Download
M gpu/gles2_conform_support/egl/config.h View 1 2 3 4 5 1 chunk +3 lines, -2 lines 0 comments Download
M gpu/gles2_conform_support/egl/config.cc View 1 2 3 4 5 6 7 3 chunks +72 lines, -2 lines 0 comments Download
A + gpu/gles2_conform_support/egl/context.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 3 chunks +51 lines, -67 lines 0 comments Download
A gpu/gles2_conform_support/egl/context.cc 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 1 chunk +396 lines, -0 lines 0 comments Download
M gpu/gles2_conform_support/egl/display.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 +68 lines, -96 lines 0 comments Download
M gpu/gles2_conform_support/egl/display.cc 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 3 chunks +336 lines, -335 lines 0 comments Download
M gpu/gles2_conform_support/egl/egl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 6 chunks +99 lines, -299 lines 0 comments Download
M gpu/gles2_conform_support/egl/surface.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +20 lines, -8 lines 0 comments Download
M gpu/gles2_conform_support/egl/surface.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +35 lines, -2 lines 0 comments Download
M gpu/gles2_conform_support/egl/test_support.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +13 lines, -0 lines 0 comments Download
M gpu/gles2_conform_support/egl/test_support.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 1 chunk +15 lines, -0 lines 0 comments Download
A gpu/gles2_conform_support/egl/thread_state.h View 1 2 1 chunk +70 lines, -0 lines 0 comments Download
A gpu/gles2_conform_support/egl/thread_state.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +198 lines, -0 lines 0 comments Download
M gpu/gles2_conform_support/gles2_conform_support.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 2 chunks +7 lines, -0 lines 0 comments Download
M gpu/gles2_conform_support/native/egl_native_windowless.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 17 2 chunks +3 lines, -3 lines 0 comments Download
M gpu/gpu.gyp 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 3 chunks +5 lines, -0 lines 0 comments Download
M gpu/khronos_glcts_support/native/egl_native_windowless.cc 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 2 chunks +4 lines, -4 lines 0 comments Download

Messages

Total messages: 181 (83 generated)
Sami Väisänen
https://codereview.chromium.org/1714883002/diff/1/gpu/command_buffer/service/vertex_array_manager.cc File gpu/command_buffer/service/vertex_array_manager.cc (right): https://codereview.chromium.org/1714883002/diff/1/gpu/command_buffer/service/vertex_array_manager.cc#newcode87 gpu/command_buffer/service/vertex_array_manager.cc:87: client_vertex_attrib_managers_.begin(); Could this simply use std::find_if ? https://codereview.chromium.org/1714883002/diff/1/gpu/gles2_conform_support/egl/display.cc File ...
4 years, 10 months ago (2016-02-19 14:10:15 UTC) #3
Kimmo Kinnunen
Thanks https://codereview.chromium.org/1714883002/diff/1/gpu/command_buffer/service/vertex_array_manager.cc File gpu/command_buffer/service/vertex_array_manager.cc (right): https://codereview.chromium.org/1714883002/diff/1/gpu/command_buffer/service/vertex_array_manager.cc#newcode87 gpu/command_buffer/service/vertex_array_manager.cc:87: client_vertex_attrib_managers_.begin(); On 2016/02/19 14:10:15, Sami Väisänen wrote: > ...
4 years, 10 months ago (2016-02-22 06:43:08 UTC) #4
Kimmo Kinnunen
4 years, 10 months ago (2016-02-23 12:51:32 UTC) #7
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/40001
4 years, 10 months ago (2016-02-23 12:55:48 UTC) #9
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_rel_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_rel_ng/builds/184199)
4 years, 10 months ago (2016-02-23 13:13:54 UTC) #11
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/60001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/60001
4 years, 10 months ago (2016-02-23 14:03:38 UTC) #13
commit-bot: I haz the power
This CL has an open dependency (Issue 1718183003 Patch 1). Please resolve the dependency and ...
4 years, 10 months ago (2016-02-23 14:13:14 UTC) #17
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/80001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/80001
4 years, 10 months ago (2016-02-23 14:13:50 UTC) #19
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_compile_dbg_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_compile_dbg_ng/builds/54011)
4 years, 10 months ago (2016-02-23 14:22:06 UTC) #21
piman
This is nice, especially with the extensive tests, thanks! I have mostly nits, and a ...
4 years, 10 months ago (2016-02-23 23:37:17 UTC) #22
Kimmo Kinnunen
https://codereview.chromium.org/1714883002/diff/80001/gpu/command_buffer/service/gles2_cmd_decoder.cc File gpu/command_buffer/service/gles2_cmd_decoder.cc (right): https://codereview.chromium.org/1714883002/diff/80001/gpu/command_buffer/service/gles2_cmd_decoder.cc#newcode3604 gpu/command_buffer/service/gles2_cmd_decoder.cc:3604: return false; On 2016/02/23 23:37:16, piman wrote: > nit: ...
4 years, 10 months ago (2016-02-24 07:33:27 UTC) #23
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/100001
4 years, 10 months ago (2016-02-24 07:34:57 UTC) #25
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_optional_gpu_tests_rel on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_optional_gpu_tests_rel/builds/161)
4 years, 10 months ago (2016-02-24 09:21:29 UTC) #27
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/120001
4 years, 10 months ago (2016-02-24 12:29:41 UTC) #29
Kimmo Kinnunen
https://codereview.chromium.org/1714883002/diff/120001/gpu/gles2_conform_support/native/egl_native_windowless.cc File gpu/gles2_conform_support/native/egl_native_windowless.cc (right): https://codereview.chromium.org/1714883002/diff/120001/gpu/gles2_conform_support/native/egl_native_windowless.cc#newcode27 gpu/gles2_conform_support/native/egl_native_windowless.cc:27: // GTF should use EGL pbuffer interface directly. Do ...
4 years, 10 months ago (2016-02-24 12:32:43 UTC) #30
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/140001
4 years, 10 months ago (2016-02-24 15:04:44 UTC) #32
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 10 months ago (2016-02-24 17:37:53 UTC) #34
piman
lgtm https://codereview.chromium.org/1714883002/diff/80001/gpu/gles2_conform_support/egl/context.cc File gpu/gles2_conform_support/egl/context.cc (right): https://codereview.chromium.org/1714883002/diff/80001/gpu/gles2_conform_support/egl/context.cc#newcode52 gpu/gles2_conform_support/egl/context.cc:52: // We might not have a surface, so ...
4 years, 10 months ago (2016-02-24 21:53:45 UTC) #35
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/140001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/140001
4 years, 10 months ago (2016-02-25 08:18:57 UTC) #38
commit-bot: I haz the power
Committed patchset #8 (id:140001)
4 years, 10 months ago (2016-02-25 08:27:03 UTC) #40
commit-bot: I haz the power
Patchset 8 (id:??) landed as https://crrev.com/de9aa3be41bca094454babbd62907815fad7f5c2 Cr-Commit-Position: refs/heads/master@{#377535}
4 years, 10 months ago (2016-02-25 08:28:05 UTC) #42
Nico
https://codereview.chromium.org/1714883002/diff/140001/gpu/command_buffer/tests/egl_test.cc File gpu/command_buffer/tests/egl_test.cc (right): https://codereview.chromium.org/1714883002/diff/140001/gpu/command_buffer/tests/egl_test.cc#newcode478 gpu/command_buffer/tests/egl_test.cc:478: typedef GL_APICALL void(GL_APIENTRY * glEnableProc)(GLenum); clang-cl thinks the GL_APICALL ...
4 years, 10 months ago (2016-02-25 17:09:05 UTC) #44
hans
On 2016/02/25 17:09:05, Nico wrote: > https://codereview.chromium.org/1714883002/diff/140001/gpu/command_buffer/tests/egl_test.cc > File gpu/command_buffer/tests/egl_test.cc (right): > > https://codereview.chromium.org/1714883002/diff/140001/gpu/command_buffer/tests/egl_test.cc#newcode478 > ...
4 years, 10 months ago (2016-02-25 18:32:12 UTC) #45
Zhenyao Mo
A revert of this CL (patchset #8 id:140001) has been created in https://codereview.chromium.org/1739033002/ by zmo@chromium.org. ...
4 years, 10 months ago (2016-02-25 19:14:46 UTC) #46
Kimmo Kinnunen
On 2016/02/25 19:14:46, Zhenyao Mo wrote: > Reason for reverting is: Broke gles2_conform on mac/linux ...
4 years, 10 months ago (2016-02-26 06:13:01 UTC) #47
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/200001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/200001
4 years, 8 months ago (2016-04-11 07:28:27 UTC) #50
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_clang_dbg_recipe on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_clang_dbg_recipe/builds/48379)
4 years, 8 months ago (2016-04-11 07:47:37 UTC) #52
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/220001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/220001
4 years, 8 months ago (2016-04-11 08:25:01 UTC) #54
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_compile_dbg_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_compile_dbg_ng/builds/76572)
4 years, 8 months ago (2016-04-11 08:45:47 UTC) #56
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/260001
4 years, 8 months ago (2016-04-11 11:56:00 UTC) #58
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: win_optional_gpu_tests_rel on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_optional_gpu_tests_rel/builds/753)
4 years, 8 months ago (2016-04-11 12:32:44 UTC) #60
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/280001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/280001
4 years, 8 months ago (2016-04-11 12:42:33 UTC) #62
Kimmo Kinnunen
piman, ptal if you have time. The problem was that GTF expected windowless platform window, ...
4 years, 8 months ago (2016-04-11 13:06:52 UTC) #63
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/194572)
4 years, 8 months ago (2016-04-11 13:20:44 UTC) #65
piman
LGTM. Even if not ideal, the benefits of the new code are worth it IMO.
4 years, 8 months ago (2016-04-11 23:18:58 UTC) #66
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/300001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/300001
4 years, 8 months ago (2016-04-12 06:33:59 UTC) #68
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-12 07:42:32 UTC) #70
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/300001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/300001
4 years, 8 months ago (2016-04-12 07:45:12 UTC) #73
commit-bot: I haz the power
Committed patchset #16 (id:300001)
4 years, 8 months ago (2016-04-12 07:52:29 UTC) #75
commit-bot: I haz the power
Patchset 16 (id:??) landed as https://crrev.com/7b01a0867be0895009b120f37fcd4166a84f404b Cr-Commit-Position: refs/heads/master@{#386613}
4 years, 8 months ago (2016-04-12 07:54:00 UTC) #77
vabr (Chromium)
A revert of this CL (patchset #16 id:300001) has been created in https://codereview.chromium.org/1878133003/ by vabr@chromium.org. ...
4 years, 8 months ago (2016-04-12 08:34:21 UTC) #78
Kimmo Kinnunen
piman, do you think it's ok to retry cq'ing by disabling the gn dependency check? ...
4 years, 8 months ago (2016-04-12 12:21:12 UTC) #79
vabr (Chromium)
Let me correct, > vabr says I have to find somebody to compile the code ...
4 years, 8 months ago (2016-04-12 12:32:01 UTC) #81
piman
I will take a look - apologies for the delay in replies I have been ...
4 years, 8 months ago (2016-04-14 03:13:12 UTC) #82
Kimmo Kinnunen
On 2016/04/14 03:13:12, piman wrote: > On Tue, Apr 12, 2016 at 5:32 AM, <mailto:vabr@chromium.org> ...
4 years, 8 months ago (2016-04-14 05:41:45 UTC) #84
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/340001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/340001
4 years, 8 months ago (2016-04-14 05:42:23 UTC) #86
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-14 06:34:41 UTC) #88
piman
I see, ok, LGTM. There's duplication of the source set which is what confuses me.
4 years, 8 months ago (2016-04-14 20:18:57 UTC) #89
vabr (Chromium)
Thank you for fixing the deps instead of the //nogncheck, I appreciate that! After patch ...
4 years, 8 months ago (2016-04-15 13:32:37 UTC) #90
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/340001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/340001
4 years, 8 months ago (2016-04-18 07:18:51 UTC) #92
commit-bot: I haz the power
Committed patchset #18 (id:340001)
4 years, 8 months ago (2016-04-18 08:26:04 UTC) #94
commit-bot: I haz the power
Patchset 18 (id:??) landed as https://crrev.com/f9d5c7e6fd53570c0decc63e8ec51d30e0701c89 Cr-Commit-Position: refs/heads/master@{#387871}
4 years, 8 months ago (2016-04-18 08:27:53 UTC) #96
stevenjb
On 2016/04/18 08:27:53, commit-bot: I haz the power wrote: > Patchset 18 (id:??) landed as ...
4 years, 8 months ago (2016-04-18 16:19:55 UTC) #97
stevenjb
On 2016/04/18 16:19:55, stevenjb wrote: > On 2016/04/18 08:27:53, commit-bot: I haz the power wrote: ...
4 years, 8 months ago (2016-04-18 16:24:30 UTC) #98
stevenjb
On 2016/04/18 16:24:30, stevenjb wrote: > On 2016/04/18 16:19:55, stevenjb wrote: > > On 2016/04/18 ...
4 years, 8 months ago (2016-04-18 16:26:47 UTC) #99
stevenjb
A revert of this CL (patchset #18 id:340001) has been created in https://codereview.chromium.org/1900703002/ by stevenjb@chromium.org. ...
4 years, 8 months ago (2016-04-18 16:27:53 UTC) #100
Zhenyao Mo
A revert of this CL (patchset #18 id:340001) has been created in https://codereview.chromium.org/1895153002/ by zmo@chromium.org. ...
4 years, 8 months ago (2016-04-18 17:19:09 UTC) #101
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/360001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/360001
4 years, 8 months ago (2016-04-19 06:21:07 UTC) #104
Kimmo Kinnunen
I fixed the runtime failure and added a test for the assert. I fixed the ...
4 years, 8 months ago (2016-04-19 06:25:25 UTC) #105
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-19 07:36:35 UTC) #107
piman
lgtm
4 years, 8 months ago (2016-04-19 14:49:06 UTC) #108
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/380001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/380001
4 years, 8 months ago (2016-04-20 09:18:24 UTC) #110
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-20 10:28:16 UTC) #112
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/380001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/380001
4 years, 8 months ago (2016-04-20 10:32:58 UTC) #115
commit-bot: I haz the power
Committed patchset #20 (id:380001)
4 years, 8 months ago (2016-04-20 10:37:14 UTC) #117
stevenjb
A revert of this CL (patchset #20 id:380001) has been created in https://codereview.chromium.org/1909573002/ by stevenjb@chromium.org. ...
4 years, 8 months ago (2016-04-20 17:04:41 UTC) #118
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/400001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/400001
4 years, 8 months ago (2016-04-21 07:42:18 UTC) #121
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 8 months ago (2016-04-21 08:45:45 UTC) #123
Kimmo Kinnunen
The previous compile failure was due to missing include. Changed that. Taking the liberty of ...
4 years, 8 months ago (2016-04-21 11:37:43 UTC) #124
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/400001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/400001
4 years, 8 months ago (2016-04-21 11:38:14 UTC) #127
commit-bot: I haz the power
Committed patchset #21 (id:400001)
4 years, 8 months ago (2016-04-21 11:42:29 UTC) #129
Jamie Madill
A revert of this CL (patchset #21 id:400001) has been created in https://codereview.chromium.org/1900563007/ by jmadill@chromium.org. ...
4 years, 8 months ago (2016-04-21 16:21:17 UTC) #130
Jamie Madill
On 2016/04/21 16:21:17, Jamie Madill wrote: > A revert of this CL (patchset #21 id:400001) ...
4 years, 8 months ago (2016-04-21 16:21:57 UTC) #131
Ken Russell (switch to Gerrit)
On 2016/04/21 16:21:57, Jamie Madill wrote: > On 2016/04/21 16:21:17, Jamie Madill wrote: > > ...
4 years, 8 months ago (2016-04-21 17:27:50 UTC) #132
commit-bot: I haz the power
Patchset 23 (id:??) landed as https://crrev.com/6ce03f87f6664043ab4adf6722847cf110567a31 Cr-Commit-Position: refs/heads/master@{#388461}
4 years, 8 months ago (2016-04-22 19:22:16 UTC) #135
commit-bot: I haz the power
Patchset 23 (id:??) landed as https://crrev.com/2a8624e1d4f8a82a9a8ce6b55fa5a48be09b9e09 Cr-Commit-Position: refs/heads/master@{#388745}
4 years, 8 months ago (2016-04-22 19:33:37 UTC) #137
Kimmo Kinnunen
piman@, kbr@: Would it be possible to commit the test framework and one test to ...
4 years, 8 months ago (2016-04-25 12:01:33 UTC) #140
Ken Russell (switch to Gerrit)
On 2016/04/25 12:01:33, Kimmo Kinnunen wrote: > piman@, kbr@: > Would it be possible to ...
4 years, 8 months ago (2016-04-25 12:14:43 UTC) #141
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/460001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/460001
4 years, 7 months ago (2016-04-27 13:09:46 UTC) #143
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 7 months ago (2016-04-27 14:20:26 UTC) #145
Kimmo Kinnunen
The optional gpu bots pass now. The last reviewed patch was #21, I think. After ...
4 years, 7 months ago (2016-04-28 11:51:35 UTC) #146
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/480001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/480001
4 years, 7 months ago (2016-04-28 11:52:01 UTC) #149
commit-bot: I haz the power
Committed patchset #25 (id:480001)
4 years, 7 months ago (2016-04-28 12:46:18 UTC) #151
stevenjb
A revert of this CL (patchset #25 id:480001) has been created in https://codereview.chromium.org/1929973003/ by stevenjb@chromium.org. ...
4 years, 7 months ago (2016-04-28 16:54:04 UTC) #152
stevenjb
On 2016/04/28 16:54:04, stevenjb wrote: > A revert of this CL (patchset #25 id:480001) has ...
4 years, 7 months ago (2016-04-28 17:05:17 UTC) #153
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/500001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/500001
4 years, 7 months ago (2016-04-29 06:57:07 UTC) #156
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 7 months ago (2016-04-29 08:05:09 UTC) #158
commit-bot: I haz the power
Patchset 26 (id:??) landed as https://crrev.com/50a2353656f05e3ed1ee850ee7c326c6ca99cd77 Cr-Commit-Position: refs/heads/master@{#390358}
4 years, 7 months ago (2016-04-30 17:17:51 UTC) #159
Kimmo Kinnunen
stevenjb@: I rebased the patch again, if you have time to submit a build for ...
4 years, 7 months ago (2016-05-03 07:48:42 UTC) #162
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/540001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/540001
4 years, 7 months ago (2016-05-06 10:33:45 UTC) #164
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: android_compile_dbg on tryserver.chromium.android (JOB_FAILED, https://build.chromium.org/p/tryserver.chromium.android/builders/android_compile_dbg/builds/62020)
4 years, 7 months ago (2016-05-06 10:43:51 UTC) #166
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/560001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/560001
4 years, 7 months ago (2016-05-06 11:29:18 UTC) #168
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 7 months ago (2016-05-06 12:32:46 UTC) #170
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/580001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/580001
4 years, 7 months ago (2016-05-10 12:44:14 UTC) #172
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 7 months ago (2016-05-10 13:38:44 UTC) #174
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1714883002/600001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1714883002/600001
4 years, 7 months ago (2016-05-11 11:31:58 UTC) #177
commit-bot: I haz the power
Committed patchset #31 (id:600001)
4 years, 7 months ago (2016-05-11 12:43:35 UTC) #179
commit-bot: I haz the power
4 years, 7 months ago (2016-05-11 12:44:41 UTC) #181
Message was sent while issue was closed.
Patchset 31 (id:??) landed as
https://crrev.com/4b0a5f72ec65e8a61647c65312fbe1250032001d
Cr-Commit-Position: refs/heads/master@{#392902}

Powered by Google App Engine
This is Rietveld 408576698