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

Issue 6623063: Connect up --disable-gl-multisampling to command buffer (Closed)

Created:
9 years, 9 months ago by jbauman
Modified:
9 years, 7 months ago
CC:
chromium-reviews, pam+watch_chromium.org, jam
Visibility:
Public.

Description

Connect up --disable-gl-multisampling to command buffer Plumb the --disable-gl-multisampling flag in to the command buffer, so it won't report the extension to any consumers. BUG=75181 TEST=webgl antialias test Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=77899

Patch Set 1 #

Total comments: 10

Patch Set 2 : Fix style. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+166 lines, -77 lines) Patch
M chrome/browser/gpu_process_host_ui_shim.cc View 1 1 chunk +7 lines, -4 lines 0 comments Download
M chrome/gpu/gpu_channel.h View 1 1 chunk +1 line, -0 lines 0 comments Download
M chrome/gpu/gpu_channel.cc View 1 3 chunks +5 lines, -1 line 0 comments Download
M chrome/gpu/gpu_command_buffer_stub.h View 1 2 chunks +13 lines, -10 lines 0 comments Download
M chrome/gpu/gpu_command_buffer_stub.cc View 1 3 chunks +3 lines, -0 lines 0 comments Download
M content/browser/gpu_process_host.h View 1 4 chunks +9 lines, -2 lines 0 comments Download
M content/browser/gpu_process_host.cc View 1 3 chunks +14 lines, -4 lines 0 comments Download
M gpu/command_buffer/client/gles2_demo.cc View 1 1 chunk +1 line, -0 lines 0 comments Download
M gpu/command_buffer/service/context_group.h View 1 2 chunks +3 lines, -1 line 0 comments Download
M gpu/command_buffer/service/context_group.cc View 1 2 chunks +4 lines, -2 lines 0 comments Download
M gpu/command_buffer/service/context_group_unittest.cc View 1 1 chunk +3 lines, -2 lines 0 comments Download
M gpu/command_buffer/service/feature_info.h View 1 3 chunks +5 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/feature_info.cc View 1 2 chunks +10 lines, -1 line 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder.h View 1 2 chunks +5 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder.cc View 1 6 chunks +14 lines, -8 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_mock.h View 1 1 chunk +8 lines, -6 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.cc View 1 2 chunks +5 lines, -3 lines 0 comments Download
M gpu/command_buffer/service/gpu_processor.h View 1 2 chunks +9 lines, -6 lines 0 comments Download
M gpu/command_buffer/service/gpu_processor.cc View 1 2 chunks +9 lines, -6 lines 0 comments Download
M gpu/command_buffer/service/gpu_processor_linux.cc View 1 2 chunks +9 lines, -6 lines 0 comments Download
M gpu/command_buffer/service/gpu_processor_mac.cc View 1 2 chunks +9 lines, -6 lines 0 comments Download
M gpu/command_buffer/service/gpu_processor_win.cc View 1 2 chunks +9 lines, -6 lines 0 comments Download
M gpu/command_buffer/service/test_helper.h View 1 2 chunks +5 lines, -1 line 0 comments Download
M gpu/command_buffer/service/test_helper.cc View 1 1 chunk +3 lines, -1 line 0 comments Download
M gpu/demos/framework/window.cc View 1 1 chunk +3 lines, -1 line 0 comments Download

Messages

Total messages: 13 (0 generated)
jbauman
9 years, 9 months ago (2011-03-07 21:40:25 UTC) #1
zmo
Add Gregg to the reviewer list as he is the master of command buffer.
9 years, 9 months ago (2011-03-07 22:25:32 UTC) #2
apatrick_chromium
Drive by review :) http://codereview.chromium.org/6623063/diff/1/gpu/command_buffer/service/context_group.h File gpu/command_buffer/service/context_group.h (right): http://codereview.chromium.org/6623063/diff/1/gpu/command_buffer/service/context_group.h#newcode30 gpu/command_buffer/service/context_group.h:30: typedef struct DisallowedExtensions DisallowedExtensions; Can ...
9 years, 9 months ago (2011-03-07 22:31:39 UTC) #3
zmo
Thanks for fixing this. http://codereview.chromium.org/6623063/diff/1/chrome/gpu/gpu_channel.cc File chrome/gpu/gpu_channel.cc (right): http://codereview.chromium.org/6623063/diff/1/chrome/gpu/gpu_channel.cc#newcode35 chrome/gpu/gpu_channel.cc:35: disallowed_extensions_.multisampling = command_line->HasSwitch(switches::kDisableGLMultisampling); here also: ...
9 years, 9 months ago (2011-03-07 23:34:29 UTC) #4
jbauman
http://codereview.chromium.org/6623063/diff/1/content/browser/gpu_process_host.cc File content/browser/gpu_process_host.cc (right): http://codereview.chromium.org/6623063/diff/1/content/browser/gpu_process_host.cc#newcode301 content/browser/gpu_process_host.cc:301: }; On 2011/03/07 23:34:29, zmo wrote: > After copy ...
9 years, 9 months ago (2011-03-08 19:59:18 UTC) #5
zmo
On 2011/03/08 19:59:18, jbauman wrote: > http://codereview.chromium.org/6623063/diff/1/content/browser/gpu_process_host.cc > File content/browser/gpu_process_host.cc (right): > > http://codereview.chromium.org/6623063/diff/1/content/browser/gpu_process_host.cc#newcode301 > ...
9 years, 9 months ago (2011-03-08 21:34:27 UTC) #6
greggman
I don't understand why this CL is so complicated. It seems to me all you ...
9 years, 9 months ago (2011-03-08 21:53:58 UTC) #7
jbauman
On 2011/03/08 21:53:58, greggman wrote: > I don't understand why this CL is so complicated. ...
9 years, 9 months ago (2011-03-08 22:23:01 UTC) #8
greggman
On 2011/03/08 22:23:01, jbauman wrote: > On 2011/03/08 21:53:58, greggman wrote: > > I don't ...
9 years, 9 months ago (2011-03-10 19:36:51 UTC) #9
jbauman
9 years, 9 months ago (2011-03-10 19:48:25 UTC) #10
Zhenyao Mo
http://codereview.chromium.org/6623063/diff/10001/chrome/browser/gpu_process_host_ui_shim.cc File chrome/browser/gpu_process_host_ui_shim.cc (right): http://codereview.chromium.org/6623063/diff/10001/chrome/browser/gpu_process_host_ui_shim.cc#newcode129 chrome/browser/gpu_process_host_ui_shim.cc:129: GpuFeatureFlags::kGpuFeatureMultisampling); style: 4 spaces instead of 8. http://codereview.chromium.org/6623063/diff/10001/chrome/gpu/gpu_channel.cc File ...
9 years, 9 months ago (2011-03-10 23:52:49 UTC) #11
jbauman
Hopefully this fixes all the style issues.
9 years, 9 months ago (2011-03-11 23:37:05 UTC) #12
zmo
9 years, 9 months ago (2011-03-12 00:13:53 UTC) #13
LGTM.  Thanks for fixing this bug.

On 2011/03/11 23:37:05, jbauman wrote:
> Hopefully this fixes all the style issues.

Powered by Google App Engine
This is Rietveld 408576698