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

Issue 11275120: Virtual GL (Closed)

Created:
8 years, 1 month ago by greggman
Modified:
8 years, 1 month ago
CC:
chromium-reviews, apatrick_chromium
Visibility:
Public.

Description

Patch Set 1 #

Patch Set 2 : #

Total comments: 6

Patch Set 3 : #

Patch Set 4 : #

Total comments: 3

Patch Set 5 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1658 lines, -63 lines) Patch
M gpu/command_buffer/build_gles2_cmd_buffer.py View 1 chunk +2 lines, -2 lines 0 comments Download
M gpu/command_buffer/service/context_state.h View 3 chunks +5 lines, -7 lines 0 comments Download
M gpu/command_buffer/service/context_state.cc View 3 chunks +74 lines, -2 lines 0 comments Download
M gpu/command_buffer/service/context_state_impl_autogen.h View 2 chunks +2 lines, -2 lines 0 comments Download
A gpu/command_buffer/service/gl_context_virtual.h View 1 2 3 4 1 chunk +62 lines, -0 lines 0 comments Download
A gpu/command_buffer/service/gl_context_virtual.cc View 1 2 1 chunk +79 lines, -0 lines 0 comments Download
A gpu/command_buffer/service/gl_state_restorer_impl.h View 1 2 3 4 1 chunk +36 lines, -0 lines 0 comments Download
A gpu/command_buffer/service/gl_state_restorer_impl.cc View 1 2 1 chunk +24 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder.h View 1 1 chunk +3 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder.cc View 16 chunks +34 lines, -18 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_mock.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M gpu/command_buffer/service/vertex_attrib_manager.h View 4 chunks +7 lines, -4 lines 0 comments Download
M gpu/command_buffer/service/vertex_attrib_manager.cc View 5 chunks +6 lines, -10 lines 0 comments Download
M gpu/command_buffer/tests/gl_manager.h View 2 chunks +7 lines, -1 line 0 comments Download
M gpu/command_buffer/tests/gl_manager.cc View 1 2 5 chunks +29 lines, -6 lines 0 comments Download
A gpu/command_buffer/tests/gl_virtual_contexts_unittests.cc View 1 chunk +134 lines, -0 lines 0 comments Download
M gpu/command_buffer_service.gypi View 1 2 1 chunk +4 lines, -0 lines 0 comments Download
M gpu/gpu.gyp View 1 chunk +1 line, -0 lines 0 comments Download
M ui/gl/generate_bindings.py View 1 2 2 chunks +0 lines, -5 lines 0 comments Download
M ui/gl/gl.gyp View 1 2 2 chunks +4 lines, -0 lines 0 comments Download
M ui/gl/gl_context.h View 1 2 4 chunks +16 lines, -0 lines 0 comments Download
M ui/gl/gl_context.cc View 1 2 3 chunks +22 lines, -0 lines 0 comments Download
M ui/gl/gl_context_cgl.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ui/gl/gl_context_egl.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ui/gl/gl_context_glx.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ui/gl/gl_context_osmesa.cc View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M ui/gl/gl_context_stub.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ui/gl/gl_context_wgl.cc View 1 chunk +1 line, -0 lines 0 comments Download
M ui/gl/gl_egl_api_implementation.h View 1 chunk +1 line, -0 lines 0 comments Download
M ui/gl/gl_egl_api_implementation.cc View 1 chunk +3 lines, -0 lines 0 comments Download
M ui/gl/gl_gl_api_implementation.h View 1 2 2 chunks +40 lines, -0 lines 0 comments Download
M ui/gl/gl_gl_api_implementation.cc View 1 2 3 4 3 chunks +1012 lines, -1 line 0 comments Download
M ui/gl/gl_glx_api_implementation.h View 1 chunk +1 line, -0 lines 0 comments Download
M ui/gl/gl_glx_api_implementation.cc View 1 chunk +3 lines, -0 lines 0 comments Download
M ui/gl/gl_osmesa_api_implementation.h View 1 chunk +1 line, -0 lines 0 comments Download
M ui/gl/gl_osmesa_api_implementation.cc View 1 chunk +3 lines, -0 lines 0 comments Download
A ui/gl/gl_state_restorer.h View 1 2 1 chunk +27 lines, -0 lines 0 comments Download
A + ui/gl/gl_state_restorer.cc View 1 2 1 chunk +5 lines, -5 lines 0 comments Download
M ui/gl/gl_wgl_api_implementation.h View 1 chunk +1 line, -0 lines 0 comments Download
M ui/gl/gl_wgl_api_implementation.cc View 1 chunk +3 lines, -0 lines 0 comments Download

Messages

Total messages: 11 (0 generated)
greggman
I dont' know what happened but git cl wouldn't let me upload to the old ...
8 years, 1 month ago (2012-11-02 02:13:23 UTC) #1
apatrick_chromium
High level question. To avoid the circular dependency can GLContextVirtual move to gpu/command_buffer/service? Also, I ...
8 years, 1 month ago (2012-11-05 20:50:44 UTC) #2
no sievers
https://codereview.chromium.org/11275120/diff/7001/ui/gl/gl_gl_api_implementation.cc File ui/gl/gl_gl_api_implementation.cc (right): https://codereview.chromium.org/11275120/diff/7001/ui/gl/gl_gl_api_implementation.cc#newcode68 ui/gl/gl_gl_api_implementation.cc:68: VirtualGLApi::VirtualGLApi() { missing initialization: current_surface_(NULL)
8 years, 1 month ago (2012-11-06 02:31:56 UTC) #3
greggman
I talked to Al and refactored as he suggested. So, ui/gl defines a class GLStateRestorer ...
8 years, 1 month ago (2012-11-06 02:56:37 UTC) #4
apatrick_chromium
Just a few nits. LGTM. https://codereview.chromium.org/11275120/diff/9003/gpu/command_buffer/service/gl_context_virtual.h File gpu/command_buffer/service/gl_context_virtual.h (right): https://codereview.chromium.org/11275120/diff/9003/gpu/command_buffer/service/gl_context_virtual.h#newcode27 gpu/command_buffer/service/gl_context_virtual.h:27: explicit GLContextVirtual( nit: explicit ...
8 years, 1 month ago (2012-11-06 19:11:48 UTC) #5
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/gman@chromium.org/11275120/3040
8 years, 1 month ago (2012-11-07 04:53:41 UTC) #6
commit-bot: I haz the power
Retried try job too often for step(s) unit_tests
8 years, 1 month ago (2012-11-07 06:00:53 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/gman@chromium.org/11275120/3040
8 years, 1 month ago (2012-11-07 08:52:37 UTC) #8
commit-bot: I haz the power
Retried try job too often for step(s) browser_tests
8 years, 1 month ago (2012-11-07 11:00:48 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/gman@chromium.org/11275120/3040
8 years, 1 month ago (2012-11-07 14:47:03 UTC) #10
commit-bot: I haz the power
8 years, 1 month ago (2012-11-07 15:56:03 UTC) #11
Change committed as 166442

Powered by Google App Engine
This is Rietveld 408576698