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

Issue 2443023002: gpu: Add CHROMIUM_copy_image extension.

Created:
4 years, 2 months ago by reveman
Modified:
4 years, 1 month ago
Reviewers:
CC:
chromium-reviews, ozone-reviews_chromium.org, extensions-reviews_chromium.org, mac-reviews_chromium.org, piman+watch_chromium.org, kalyank, chromium-apps-reviews_chromium.org, cc-bugs_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

gpu: Add CHROMIUM_copy_image extension. This introduces a new command buffer extension and GLImage function that provides more efficient one-copy texture updates without the need for polling. BUG=653908 TEST=gl_tests CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel

Patch Set 1 #

Patch Set 2 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1009 lines, -90 lines) Patch
M cc/test/test_gles2_interface.h View 1 chunk +10 lines, -0 lines 0 comments Download
M cc/test/test_gles2_interface.cc View 1 chunk +15 lines, -0 lines 0 comments Download
M cc/test/test_web_graphics_context_3d.h View 1 chunk +10 lines, -0 lines 0 comments Download
A gpu/GLES2/extensions/CHROMIUM/CHROMIUM_copy_image.txt View 1 chunk +96 lines, -0 lines 0 comments Download
M gpu/GLES2/gl2chromium_autogen.h View 1 chunk +1 line, -0 lines 0 comments Download
M gpu/GLES2/gl2extchromium.h View 1 chunk +28 lines, -0 lines 0 comments Download
M gpu/command_buffer/build_gles2_cmd_buffer.py View 1 chunk +5 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_c_lib_autogen.h View 2 chunks +18 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_cmd_helper_autogen.h View 1 chunk +18 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_implementation_autogen.h View 1 chunk +11 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_implementation_impl_autogen.h View 1 chunk +30 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_implementation_unittest_autogen.h View 1 chunk +11 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_interface_autogen.h View 1 chunk +10 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_interface_stub_autogen.h View 1 chunk +10 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h View 1 chunk +10 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_trace_implementation_autogen.h View 1 chunk +10 lines, -0 lines 0 comments Download
M gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h View 1 chunk +16 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_format_autogen.h View 1 chunk +90 lines, -0 lines 0 comments Download
M gpu/command_buffer/common/gles2_cmd_format_test_autogen.h View 1 chunk +24 lines, -0 lines 0 comments Download
M gpu/command_buffer/common/gles2_cmd_ids_autogen.h View 1 chunk +48 lines, -47 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder.cc View 2 chunks +156 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_autogen.h View 1 chunk +31 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doer_prototypes.h View 1 chunk +10 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_passthrough_doers.cc View 1 chunk +15 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers_autogen.cc View 1 chunk +25 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/gles2_cmd_decoder_unittest_textures.cc View 1 chunk +6 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/texture_definition.cc View 2 chunks +13 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/texture_manager_unittest.cc View 1 chunk +7 lines, -0 lines 0 comments Download
M gpu/command_buffer/tests/gl_gpu_fence_unittest.cc View 2 chunks +35 lines, -6 lines 0 comments Download
M gpu/command_buffer/tests/texture_image_factory.cc View 1 chunk +7 lines, -0 lines 0 comments Download
M ui/gl/gl_image.h View 1 chunk +10 lines, -0 lines 0 comments Download
M ui/gl/gl_image_egl.h View 1 chunk +5 lines, -0 lines 0 comments Download
M ui/gl/gl_image_egl.cc View 1 chunk +8 lines, -0 lines 0 comments Download
M ui/gl/gl_image_glx.h View 1 chunk +5 lines, -0 lines 0 comments Download
M ui/gl/gl_image_glx.cc View 1 chunk +8 lines, -0 lines 0 comments Download
M ui/gl/gl_image_io_surface.h View 1 chunk +5 lines, -0 lines 0 comments Download
M ui/gl/gl_image_io_surface.mm View 1 chunk +8 lines, -0 lines 0 comments Download
M ui/gl/gl_image_memory.h View 1 chunk +5 lines, -0 lines 0 comments Download
M ui/gl/gl_image_memory.cc View 2 chunks +31 lines, -0 lines 0 comments Download
M ui/gl/gl_image_stub.h View 1 chunk +5 lines, -0 lines 0 comments Download
M ui/gl/gl_image_stub.cc View 1 chunk +8 lines, -0 lines 0 comments Download
M ui/gl/gl_image_surface_texture.h View 1 chunk +5 lines, -0 lines 0 comments Download
M ui/gl/gl_image_surface_texture.cc View 1 chunk +8 lines, -0 lines 0 comments Download
M ui/gl/gl_surface.h View 2 chunks +10 lines, -0 lines 0 comments Download
M ui/gl/gl_surface.cc View 2 chunks +16 lines, -0 lines 0 comments Download
M ui/gl/gl_surface_egl.h View 2 chunks +13 lines, -0 lines 0 comments Download
M ui/gl/gl_surface_egl.cc View 4 chunks +72 lines, -1 line 0 comments Download
M ui/ozone/platform/drm/gpu/gbm_surfaceless.h View 1 chunk +1 line, -3 lines 0 comments Download
M ui/ozone/platform/drm/gpu/gbm_surfaceless.cc View 4 chunks +9 lines, -33 lines 0 comments Download

Depends on Patchset:

Dependent Patchsets:

Messages

Total messages: 2 (2 generated)
reveman
Description was changed from ========== gpu: Add CHROMIUM_copy_image extension. This introduces a new command buffer ...
4 years, 2 months ago (2016-10-23 23:13:54 UTC) #1
reveman
4 years, 2 months ago (2016-10-23 23:13:56 UTC) #2
Description was changed from

==========
gpu: Add CHROMIUM_copy_image extension.

This introduces a new command buffer extension and GLImage
function that provides more efficient one-copy texture
updates without the need for polling.

BUG=653908
TEST=gl_tests
CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel
==========

to

==========
gpu: Add CHROMIUM_copy_image extension.

This introduces a new command buffer extension and GLImage
function that provides more efficient one-copy texture
updates without the need for polling.

BUG=653908
TEST=gl_tests
CQ_INCLUDE_TRYBOTS=master.tryserver.blink:linux_precise_blink_rel
==========

Powered by Google App Engine
This is Rietveld 408576698