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

Issue 851183002: Add more ES3 commands to GPU command buffer: ClearBuffer* (Closed)

Created:
5 years, 11 months ago by Zhenyao Mo
Modified:
5 years, 11 months ago
Reviewers:
no sievers
CC:
chromium-reviews, piman+watch_chromium.org, Ken Russell (switch to Gerrit), bajones, vmiura
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add more ES3 commands to GPU command buffer: ClearBuffer* glClearBufferiv glClearBufferuiv glClearBufferfv glClearBufferfi BUG=429053 TEST=gpu_unittests R=sievers@chromium.org Committed: https://crrev.com/e1d1c69631fdb7bf71f197f62c963882af31481a Cr-Commit-Position: refs/heads/master@{#311979}

Patch Set 1 : #

Total comments: 27

Patch Set 2 : FINAL #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1267 lines, -327 lines) Patch
M gpu/GLES2/gl2chromium_autogen.h View 1 chunk +4 lines, -0 lines 0 comments Download
M gpu/command_buffer/build_gles2_cmd_buffer.py View 1 7 chunks +97 lines, -8 lines 0 comments Download
M gpu/command_buffer/client/gles2_c_lib_autogen.h View 2 chunks +35 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_cmd_helper_autogen.h View 1 chunk +43 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_implementation_autogen.h View 1 chunk +17 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_implementation_impl_autogen.h View 12 chunks +92 lines, -20 lines 0 comments Download
M gpu/command_buffer/client/gles2_implementation_unittest_autogen.h View 1 chunk +59 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_interface_autogen.h View 1 chunk +13 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_interface_stub_autogen.h View 1 chunk +13 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h View 1 chunk +17 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_trace_implementation_autogen.h View 1 chunk +13 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h View 1 chunk +29 lines, -0 lines 0 comments Download
M gpu/command_buffer/cmd_buffer_functions.txt View 1 chunk +4 lines, -0 lines 0 comments Download
M gpu/command_buffer/common/gles2_cmd_format.h View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/command_buffer/common/gles2_cmd_format_autogen.h View 15 chunks +238 lines, -42 lines 0 comments Download
M gpu/command_buffer/common/gles2_cmd_format_test_autogen.h View 1 chunk +84 lines, -0 lines 0 comments Download
M gpu/command_buffer/common/gles2_cmd_ids_autogen.h View 1 chunk +238 lines, -234 lines 0 comments Download
M gpu/command_buffer/common/gles2_cmd_utils.h View 1 chunk +3 lines, -0 lines 0 comments Download
M gpu/command_buffer/common/gles2_cmd_utils.cc View 1 chunk +22 lines, -0 lines 0 comments Download
M gpu/command_buffer/common/gles2_cmd_utils_autogen.h View 1 chunk +4 lines, -0 lines 0 comments Download
M gpu/command_buffer/common/gles2_cmd_utils_implementation_autogen.h View 1 chunk +32 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_autogen.h View 1 chunk +93 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h View 2 chunks +66 lines, -21 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h View 2 chunks +22 lines, -2 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_unittest_3_autogen.h View 1 chunk +2 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_validation_autogen.h View 1 chunk +4 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_validation_implementation_autogen.h View 2 chunks +22 lines, -0 lines 0 comments Download

Messages

Total messages: 21 (8 generated)
Zhenyao Mo
Daniel: I can ask you to review this one? Others: FYI (and feel free to ...
5 years, 11 months ago (2015-01-16 01:12:35 UTC) #8
Zhenyao Mo
On 2015/01/16 01:12:35, Zhenyao Mo wrote: > Daniel: I can ask you to review this ...
5 years, 11 months ago (2015-01-16 18:56:14 UTC) #9
no sievers
https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/build_gles2_cmd_buffer.py File gpu/command_buffer/build_gles2_cmd_buffer.py (right): https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/build_gles2_cmd_buffer.py#newcode1548 gpu/command_buffer/build_gles2_cmd_buffer.py:1548: 'type': 'PUT', Does using 'PUTn' fix the generated code ...
5 years, 11 months ago (2015-01-16 19:28:46 UTC) #10
Zhenyao Mo
https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/build_gles2_cmd_buffer.py File gpu/command_buffer/build_gles2_cmd_buffer.py (right): https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/build_gles2_cmd_buffer.py#newcode1548 gpu/command_buffer/build_gles2_cmd_buffer.py:1548: 'type': 'PUT', On 2015/01/16 19:28:46, sievers wrote: > Does ...
5 years, 11 months ago (2015-01-16 20:52:33 UTC) #11
no sievers
https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/common/gles2_cmd_format_autogen.h File gpu/command_buffer/common/gles2_cmd_format_autogen.h (right): https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/common/gles2_cmd_format_autogen.h#newcode926 gpu/command_buffer/common/gles2_cmd_format_autogen.h:926: ComputeEffectiveDataSize(buffer)); yea sorry, I missed this. The generated code ...
5 years, 11 months ago (2015-01-16 22:06:23 UTC) #12
Zhenyao Mo
https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/common/gles2_cmd_format_autogen.h File gpu/command_buffer/common/gles2_cmd_format_autogen.h (right): https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/common/gles2_cmd_format_autogen.h#newcode926 gpu/command_buffer/common/gles2_cmd_format_autogen.h:926: ComputeEffectiveDataSize(buffer)); On 2015/01/16 22:06:23, sievers wrote: > yea sorry, ...
5 years, 11 months ago (2015-01-16 22:17:48 UTC) #13
Zhenyao Mo
https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h File gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h (right): https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h#newcode461 gpu/command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h:461: } On 2015/01/16 22:17:48, Zhenyao Mo wrote: > On ...
5 years, 11 months ago (2015-01-16 22:19:58 UTC) #14
no sievers
got it, lgtm https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/build_gles2_cmd_buffer.py File gpu/command_buffer/build_gles2_cmd_buffer.py (right): https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/build_gles2_cmd_buffer.py#newcode1418 gpu/command_buffer/build_gles2_cmd_buffer.py:1418: # count_func: If True the actual ...
5 years, 11 months ago (2015-01-16 22:23:15 UTC) #15
no sievers
https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/build_gles2_cmd_buffer.py File gpu/command_buffer/build_gles2_cmd_buffer.py (right): https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/build_gles2_cmd_buffer.py#newcode601 gpu/command_buffer/build_gles2_cmd_buffer.py:601: 'Bufferiv': { nit: btw if you are not planning ...
5 years, 11 months ago (2015-01-16 22:33:00 UTC) #16
Zhenyao Mo
https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/build_gles2_cmd_buffer.py File gpu/command_buffer/build_gles2_cmd_buffer.py (right): https://codereview.chromium.org/851183002/diff/120001/gpu/command_buffer/build_gles2_cmd_buffer.py#newcode601 gpu/command_buffer/build_gles2_cmd_buffer.py:601: 'Bufferiv': { On 2015/01/16 22:33:00, sievers wrote: > nit: ...
5 years, 11 months ago (2015-01-16 22:40:20 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/851183002/140001
5 years, 11 months ago (2015-01-16 22:41:47 UTC) #19
commit-bot: I haz the power
Committed patchset #2 (id:140001)
5 years, 11 months ago (2015-01-16 23:41:58 UTC) #20
commit-bot: I haz the power
5 years, 11 months ago (2015-01-16 23:43:04 UTC) #21
Message was sent while issue was closed.
Patchset 2 (id:??) landed as
https://crrev.com/e1d1c69631fdb7bf71f197f62c963882af31481a
Cr-Commit-Position: refs/heads/master@{#311979}

Powered by Google App Engine
This is Rietveld 408576698