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

Issue 1688163002: command_buffer: Implement glGetStringi for GL ES 3.0 (Closed)

Created:
4 years, 10 months ago by Kimmo Kinnunen
Modified:
4 years, 10 months ago
Reviewers:
zmo, piman
CC:
chromium-reviews, rjkroege, extensions-reviews_chromium.org, qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, yzshen+watch_chromium.org, abarth-chromium, Aaron Boodman, chromium-apps-reviews_chromium.org, piman+watch_chromium.org, darin (slow to review), ben+mojo_chromium.org, Sami Väisänen
Base URL:
https://chromium.googlesource.com/chromium/src.git@command-buffer-generator-int-types
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

command_buffer: Implement glGetStringi for GL ES 3.0 Implement glGetStringi for GL ES 3.0. It is available for GL ES 2.0 contexts, too. Skia uses the function to get extensions on ES 3.0. BUG=581634 CQ_INCLUDE_TRYBOTS=tryserver.chromium.win:win_optional_gpu_tests_rel Committed: https://crrev.com/5d3785ff3a2292370414522838cac6f15470d635 Cr-Commit-Position: refs/heads/master@{#376462}

Patch Set 1 #

Patch Set 2 : eh #

Patch Set 3 : eh2 #

Patch Set 4 : eh3 #

Total comments: 3

Patch Set 5 : add a todo #

Patch Set 6 : auto -> const std::string& #

Patch Set 7 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+262 lines, -47 lines) Patch
M gpu/BUILD.gn View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M gpu/GLES2/gl2chromium_autogen.h View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/command_buffer/build_gles2_cmd_buffer.py View 1 2 3 4 5 6 2 chunks +14 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_c_lib_autogen.h View 2 chunks +6 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_implementation.h View 1 2 3 4 3 chunks +14 lines, -7 lines 0 comments Download
M gpu/command_buffer/client/gles2_implementation.cc View 1 2 3 4 5 6 9 chunks +67 lines, -40 lines 0 comments Download
M gpu/command_buffer/client/gles2_implementation_autogen.h View 1 chunk +2 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_interface_autogen.h View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_interface_stub_autogen.h View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h View 1 chunk +4 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_trace_implementation_autogen.h View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h View 1 chunk +5 lines, -0 lines 0 comments Download
M gpu/command_buffer/cmd_buffer_functions.txt View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/command_buffer/common/gles2_cmd_utils_autogen.h View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/command_buffer/common/gles2_cmd_utils_implementation_autogen.h View 5 1 chunk +8 lines, -0 lines 0 comments Download
M gpu/command_buffer/tests/es3_misc_functions_unittest.cc View 1 2 chunks +23 lines, -0 lines 0 comments Download
A gpu/command_buffer/tests/gl_request_extension_unittest.cc View 1 2 3 1 chunk +105 lines, -0 lines 0 comments Download
M gpu/gpu.gyp View 1 2 3 4 5 6 2 chunks +2 lines, -0 lines 0 comments Download
M mojo/gpu/mojo_gles2_impl_autogen.h View 1 chunk +1 line, -0 lines 0 comments Download
M mojo/gpu/mojo_gles2_impl_autogen.cc View 1 chunk +4 lines, -0 lines 0 comments Download

Messages

Total messages: 24 (9 generated)
Kimmo Kinnunen
4 years, 10 months ago (2016-02-11 12:28:14 UTC) #3
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1688163002/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1688163002/1
4 years, 10 months ago (2016-02-11 12:28:53 UTC) #5
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/178766)
4 years, 10 months ago (2016-02-11 13:33:42 UTC) #7
Kimmo Kinnunen
piman@ for the autogen/gyp/gn files zmo does not own
4 years, 10 months ago (2016-02-11 15:24:43 UTC) #9
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1688163002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1688163002/20001
4 years, 10 months ago (2016-02-11 15:25:36 UTC) #11
piman
https://chromiumcodereview.appspot.com/1688163002/diff/60001/gpu/command_buffer/client/gles2_implementation.cc File gpu/command_buffer/client/gles2_implementation.cc (right): https://chromiumcodereview.appspot.com/1688163002/diff/60001/gpu/command_buffer/client/gles2_implementation.cc#newcode3326 gpu/command_buffer/client/gles2_implementation.cc:3326: const std::string& cache = *gl_strings_.insert(str).first; Is it really advantageous ...
4 years, 10 months ago (2016-02-11 18:50:38 UTC) #12
Kimmo Kinnunen
https://chromiumcodereview.appspot.com/1688163002/diff/60001/gpu/command_buffer/client/gles2_implementation.cc File gpu/command_buffer/client/gles2_implementation.cc (right): https://chromiumcodereview.appspot.com/1688163002/diff/60001/gpu/command_buffer/client/gles2_implementation.cc#newcode3326 gpu/command_buffer/client/gles2_implementation.cc:3326: const std::string& cache = *gl_strings_.insert(str).first; On 2016/02/11 18:50:38, piman ...
4 years, 10 months ago (2016-02-11 18:55:42 UTC) #13
piman
https://chromiumcodereview.appspot.com/1688163002/diff/60001/gpu/command_buffer/client/gles2_implementation.cc File gpu/command_buffer/client/gles2_implementation.cc (right): https://chromiumcodereview.appspot.com/1688163002/diff/60001/gpu/command_buffer/client/gles2_implementation.cc#newcode3326 gpu/command_buffer/client/gles2_implementation.cc:3326: const std::string& cache = *gl_strings_.insert(str).first; On 2016/02/11 18:55:42, Kimmo ...
4 years, 10 months ago (2016-02-11 19:15:27 UTC) #14
piman
4 years, 10 months ago (2016-02-11 19:15:27 UTC) #15
Kimmo Kinnunen
On 2016/02/11 19:15:27, piman wrote: > We can define RequestExtensionCHROMIUM however we > want, and ...
4 years, 10 months ago (2016-02-11 19:45:00 UTC) #16
piman
LGTM for now, maybe add a TODO to revisit.
4 years, 10 months ago (2016-02-11 20:11:48 UTC) #17
piman
On Thu, Feb 11, 2016 at 11:44 AM, <kkinnunen@nvidia.com> wrote: > On 2016/02/11 19:15:27, piman ...
4 years, 10 months ago (2016-02-11 20:11:48 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1688163002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1688163002/120001
4 years, 10 months ago (2016-02-19 13:38:24 UTC) #21
commit-bot: I haz the power
Committed patchset #7 (id:120001)
4 years, 10 months ago (2016-02-19 16:59:45 UTC) #22
commit-bot: I haz the power
4 years, 10 months ago (2016-02-19 17:00:59 UTC) #24
Message was sent while issue was closed.
Patchset 7 (id:??) landed as
https://crrev.com/5d3785ff3a2292370414522838cac6f15470d635
Cr-Commit-Position: refs/heads/master@{#376462}

Powered by Google App Engine
This is Rietveld 408576698