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

Issue 21159007: cc: Adding support for RGBA_4444 tile textures (Closed)

Created:
7 years, 4 months ago by kaanb
Modified:
7 years, 3 months ago
CC:
chromium-reviews, cc-bugs_chromium.org, klobag.chromium, Vangelis Kokkevis
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

Adding support for RGBA_4444 tile textures BUG=245774, 272539 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=223830

Patch Set 1 #

Patch Set 2 : 16bit texture #

Patch Set 3 : upload 16 bit texture support #

Patch Set 4 : Move all 16bit work into this patch #

Patch Set 5 : cleanup #

Total comments: 10

Patch Set 6 : Draw the 16bit bitmap into a 16bit device #

Patch Set 7 : Draw the 16bit bitmap into a 16bit device #

Patch Set 8 : upload into 16bit device #

Patch Set 9 : Pass buffer instead of SkDevice into RunRasterOnTask #

Patch Set 10 : Pass mapped PixelBuffer pointer instead of SkDevice into RunRasterOnThread #

Patch Set 11 : try upload #

Patch Set 12 : #

Patch Set 13 : Back to 4_4_4_4 textures in RP #

Total comments: 10

Patch Set 14 : Code reviews and code cleanup #

Patch Set 15 : Code reviews and cleanup #

Patch Set 16 : Code cleanup #

Patch Set 17 : Move DummyAllocator to chromium code from Skia #

Patch Set 18 : Move DummyAllocator to Chromium from Skia #

Patch Set 19 : Choose pixels per byte in ResourceProvider::AcquirePixelBuffer correctly #

Patch Set 20 : Remove accidentally checked in file #

Patch Set 21 : 16-bit tiles #

Patch Set 22 : fix textureuploader #

Patch Set 23 : Remove output surface related code #

Patch Set 24 : Fix raster-on-demand codepath #

Total comments: 41

Patch Set 25 : Code review comments #

Total comments: 12

Patch Set 26 : Rebase and feedback #

Total comments: 24

Patch Set 27 : deprecate GLenum format throughout cc #

Total comments: 27

Patch Set 28 : Code reviews, fix unittests, add a flag to disable the feature #

Total comments: 32

Patch Set 29 : Code reviews #

Total comments: 19

Patch Set 30 : Code reviews #

Total comments: 10

Patch Set 31 : Refactor enum out of ResourceProvider and other feedback #

Total comments: 2

Patch Set 32 : Code review feedback #

Total comments: 16

Patch Set 33 : Add a RESOURCE_FORMAT_MAX value for ResourceFormat enum #

Patch Set 34 : Code review comments #

Total comments: 10

Patch Set 35 : More code reviews #

Patch Set 36 : Removed the LayerTreeSetting to force RGBA tiles #

Patch Set 37 : Apply patch https://codereview.chromium.org/23503066 to fix unittests #

Total comments: 10

Patch Set 38 : Yet another set of code reviews #

Total comments: 15

Patch Set 39 : More nits #

Total comments: 1

Patch Set 40 : Move stride check to RWP #

Total comments: 6

Patch Set 41 : More comments #

Patch Set 42 : Rebase and a few type changes to keep the compiler happy #

Patch Set 43 : Two build fixes for perftests #

Patch Set 44 : fix cc_messages_unittest #

Patch Set 45 : Use cc::RGBA_8888 instead of RGBA_8888 in cc_messages_unittest #

Patch Set 46 : s/unsigned/ResourceFormat/ for VideoResourceUpdater #

Patch Set 47 : fixed a signed vs. unsigned comparison in video_resource_updater.cc #

Unified diffs Side-by-side diffs Delta from patch set Stats (+802 lines, -496 lines) Patch
M cc/base/switches.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +1 line, -0 lines 0 comments Download
M cc/base/switches.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +3 lines, -0 lines 0 comments Download
M cc/cc.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +2 lines, -0 lines 0 comments Download
M cc/layers/content_layer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +2 lines, -3 lines 0 comments Download
M cc/layers/heads_up_display_layer_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 1 chunk +3 lines, -2 lines 0 comments Download
M cc/layers/image_layer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +2 lines, -3 lines 0 comments Download
M cc/layers/nine_patch_layer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 1 chunk +2 lines, -3 lines 0 comments Download
M cc/layers/nine_patch_layer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 chunk +2 lines, -1 line 0 comments Download
M cc/layers/picture_layer_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 2 chunks +6 lines, -6 lines 0 comments Download
M cc/layers/texture_layer_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +2 lines, -2 lines 0 comments Download
M cc/layers/tiled_layer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 3 chunks +3 lines, -2 lines 0 comments Download
M cc/layers/tiled_layer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 1 chunk +1 line, -1 line 0 comments Download
M cc/layers/tiled_layer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 chunk +2 lines, -1 line 0 comments Download
M cc/output/direct_renderer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 1 chunk +1 line, -1 line 0 comments Download
M cc/output/direct_renderer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 3 chunks +7 lines, -5 lines 0 comments Download
M cc/output/gl_renderer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +1 line, -1 line 0 comments Download
M cc/output/gl_renderer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 8 chunks +36 lines, -20 lines 0 comments Download
M cc/output/gl_renderer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 14 chunks +17 lines, -16 lines 0 comments Download
M cc/output/renderer_pixeltest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 13 chunks +23 lines, -22 lines 0 comments Download
M cc/output/software_renderer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 3 chunks +14 lines, -10 lines 0 comments Download
M cc/quads/draw_quad_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 7 chunks +7 lines, -7 lines 0 comments Download
M cc/quads/picture_draw_quad.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 3 chunks +3 lines, -2 lines 0 comments Download
M cc/quads/picture_draw_quad.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 4 chunks +23 lines, -8 lines 0 comments Download
M cc/resources/image_raster_worker_pool.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 1 chunk +1 line, -1 line 0 comments Download
M cc/resources/image_raster_worker_pool.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 2 chunks +7 lines, -10 lines 0 comments Download
M cc/resources/picture_layer_tiling_set_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 chunk +1 line, -1 line 0 comments Download
M cc/resources/pixel_buffer_raster_worker_pool.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +2 lines, -1 line 0 comments Download
M cc/resources/pixel_buffer_raster_worker_pool.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +6 lines, -9 lines 0 comments Download
M cc/resources/platform_color.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 2 chunks +8 lines, -9 lines 0 comments Download
M cc/resources/prioritized_resource.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 6 chunks +11 lines, -9 lines 0 comments Download
M cc/resources/prioritized_resource.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 5 chunks +5 lines, -8 lines 0 comments Download
M cc/resources/prioritized_resource_manager.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 3 chunks +3 lines, -3 lines 0 comments Download
M cc/resources/prioritized_resource_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 1 chunk +5 lines, -2 lines 0 comments Download
M cc/resources/prioritized_resource_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 2 chunks +4 lines, -3 lines 0 comments Download
M cc/resources/prioritized_tile_set_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 chunk +2 lines, -2 lines 0 comments Download
M cc/resources/raster_worker_pool.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 4 chunks +9 lines, -8 lines 0 comments Download
M cc/resources/raster_worker_pool.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 6 chunks +66 lines, -5 lines 0 comments Download
M cc/resources/raster_worker_pool_perftest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 1 chunk +2 lines, -2 lines 0 comments Download
M cc/resources/raster_worker_pool_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 4 chunks +12 lines, -7 lines 0 comments Download
M cc/resources/resource.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 2 chunks +5 lines, -7 lines 0 comments Download
M cc/resources/resource.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 2 chunks +2 lines, -21 lines 0 comments Download
A cc/resources/resource_format.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 1 chunk +25 lines, -0 lines 0 comments Download
A cc/resources/resource_format.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 1 chunk +24 lines, -0 lines 0 comments Download
M cc/resources/resource_pool.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 3 chunks +4 lines, -4 lines 0 comments Download
M cc/resources/resource_pool.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 2 chunks +4 lines, -4 lines 0 comments Download
M cc/resources/resource_provider.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 10 chunks +25 lines, -16 lines 0 comments Download
M cc/resources/resource_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 28 chunks +173 lines, -74 lines 0 comments Download
M cc/resources/resource_provider_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 32 chunks +83 lines, -64 lines 0 comments Download
M cc/resources/resource_update_controller_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 2 chunks +4 lines, -2 lines 0 comments Download
M cc/resources/scoped_resource.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 1 chunk +2 lines, -2 lines 0 comments Download
M cc/resources/scoped_resource.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 1 chunk +3 lines, -3 lines 0 comments Download
M cc/resources/scoped_resource_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 6 chunks +17 lines, -14 lines 0 comments Download
M cc/resources/tile_manager_perftest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 1 chunk +2 lines, -1 line 0 comments Download
M cc/resources/tile_manager_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 chunk +2 lines, -1 line 0 comments Download
M cc/resources/transferable_resource.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 2 chunks +2 lines, -1 line 0 comments Download
M cc/resources/transferable_resource.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +1 line, -1 line 0 comments Download
M cc/resources/video_resource_updater.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 3 chunks +4 lines, -3 lines 0 comments Download
M cc/resources/video_resource_updater.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 6 chunks +9 lines, -10 lines 0 comments Download
M cc/resources/video_resource_updater_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 1 chunk +1 line, -1 line 0 comments Download
M cc/scheduler/texture_uploader.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 3 chunks +4 lines, -4 lines 0 comments Download
M cc/scheduler/texture_uploader.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 7 chunks +13 lines, -11 lines 0 comments Download
M cc/scheduler/texture_uploader_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 6 chunks +13 lines, -13 lines 0 comments Download
M cc/test/fake_tile_manager.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 1 chunk +3 lines, -1 line 0 comments Download
M cc/test/pixel_test.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 2 chunks +4 lines, -2 lines 0 comments Download
M cc/test/render_pass_test_common.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 2 chunks +16 lines, -16 lines 0 comments Download
M cc/test/tiled_layer_test_common.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 1 chunk +1 line, -1 line 0 comments Download
M cc/trees/layer_tree_host.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 2 chunks +2 lines, -1 line 0 comments Download
M cc/trees/layer_tree_host.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 4 chunks +4 lines, -4 lines 0 comments Download
M cc/trees/layer_tree_host_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 2 chunks +5 lines, -3 lines 0 comments Download
M cc/trees/layer_tree_host_impl_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 3 chunks +5 lines, -5 lines 0 comments Download
M cc/trees/layer_tree_host_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +1 line, -1 line 0 comments Download
M cc/trees/layer_tree_host_unittest_context.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 1 chunk +2 lines, -2 lines 0 comments Download
M cc/trees/layer_tree_settings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +1 line, -0 lines 0 comments Download
M cc/trees/layer_tree_settings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 1 chunk +2 lines, -1 line 0 comments Download
M content/common/cc_messages.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 2 chunks +2 lines, -0 lines 0 comments Download
M content/common/cc_messages_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 2 chunks +2 lines, -2 lines 0 comments Download
M content/renderer/gpu/render_widget_compositor.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 2 chunks +10 lines, -0 lines 0 comments Download
M gpu/command_buffer/service/async_pixel_transfer_manager_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 21 22 23 24 25 26 27 28 3 chunks +5 lines, -1 line 0 comments Download
M gpu/command_buffer/service/async_pixel_transfer_manager_egl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 3 chunks +8 lines, -3 lines 0 comments Download

Messages

Total messages: 109 (0 generated)
Sami
Hi Kaan, thanks for looking at this. Some suggestions below. https://codereview.chromium.org/21159007/diff/11001/cc/resources/raster_worker_pool.cc File cc/resources/raster_worker_pool.cc (right): https://codereview.chromium.org/21159007/diff/11001/cc/resources/raster_worker_pool.cc#newcode158 ...
7 years, 4 months ago (2013-08-08 10:11:01 UTC) #1
kaanb
https://codereview.chromium.org/21159007/diff/11001/cc/resources/raster_worker_pool.cc File cc/resources/raster_worker_pool.cc (right): https://codereview.chromium.org/21159007/diff/11001/cc/resources/raster_worker_pool.cc#newcode158 cc/resources/raster_worker_pool.cc:158: canvas.drawBitmap(bitmap_16, 0, 0); On 2013/08/08 10:11:01, Sami wrote: > ...
7 years, 4 months ago (2013-08-08 17:25:05 UTC) #2
bsalomon
https://codereview.chromium.org/21159007/diff/11001/cc/resources/raster_worker_pool.cc File cc/resources/raster_worker_pool.cc (right): https://codereview.chromium.org/21159007/diff/11001/cc/resources/raster_worker_pool.cc#newcode158 cc/resources/raster_worker_pool.cc:158: canvas.drawBitmap(bitmap_16, 0, 0); On 2013/08/08 17:25:05, kaanb wrote: > ...
7 years, 4 months ago (2013-08-08 18:40:15 UTC) #3
kaanb
On 2013/08/08 18:40:15, bsalomon wrote: > https://codereview.chromium.org/21159007/diff/11001/cc/resources/raster_worker_pool.cc > File cc/resources/raster_worker_pool.cc (right): > > https://codereview.chromium.org/21159007/diff/11001/cc/resources/raster_worker_pool.cc#newcode158 > ...
7 years, 4 months ago (2013-08-08 18:46:37 UTC) #4
bsalomon
On 2013/08/08 18:46:37, kaanb wrote: > On 2013/08/08 18:40:15, bsalomon wrote: > > > https://codereview.chromium.org/21159007/diff/11001/cc/resources/raster_worker_pool.cc ...
7 years, 4 months ago (2013-08-08 19:01:22 UTC) #5
kaanb
On 2013/08/08 19:01:22, bsalomon wrote: > On 2013/08/08 18:46:37, kaanb wrote: > > On 2013/08/08 ...
7 years, 4 months ago (2013-08-08 19:27:35 UTC) #6
bsalomon
On 2013/08/08 19:27:35, kaanb wrote: > On 2013/08/08 19:01:22, bsalomon wrote: > > On 2013/08/08 ...
7 years, 4 months ago (2013-08-08 19:52:51 UTC) #7
kaanb
On 2013/08/08 19:52:51, bsalomon wrote: > On 2013/08/08 19:27:35, kaanb wrote: > > On 2013/08/08 ...
7 years, 4 months ago (2013-08-08 22:09:53 UTC) #8
kaanb
https://codereview.chromium.org/21159007/diff/11001/gpu/command_buffer/service/async_pixel_transfer_manager_android.cc File gpu/command_buffer/service/async_pixel_transfer_manager_android.cc (right): https://codereview.chromium.org/21159007/diff/11001/gpu/command_buffer/service/async_pixel_transfer_manager_android.cc#newcode55 gpu/command_buffer/service/async_pixel_transfer_manager_android.cc:55: !base::android::SysUtils::IsLowEndDevice()) { On 2013/08/08 10:11:01, Sami wrote: > Just ...
7 years, 4 months ago (2013-08-08 23:30:44 UTC) #9
kaanb
On 2013/08/08 19:52:51, bsalomon wrote: > On 2013/08/08 19:27:35, kaanb wrote: > > On 2013/08/08 ...
7 years, 4 months ago (2013-08-09 02:10:46 UTC) #10
Sami
On 2013/08/08 23:30:44, kaanb wrote: > I'm getting black tiles when I change the internalformat ...
7 years, 4 months ago (2013-08-09 10:44:57 UTC) #11
tomhudson
On 2013/08/09 02:10:46, kaanb wrote: > Is it possible to make this codepath support 4444? ...
7 years, 4 months ago (2013-08-09 10:58:01 UTC) #12
bsalomon
On 2013/08/09 02:10:46, kaanb wrote: > On 2013/08/08 19:52:51, bsalomon wrote: > > On 2013/08/08 ...
7 years, 4 months ago (2013-08-09 13:05:12 UTC) #13
kaanb
On 2013/08/09 10:58:01, tomhudson wrote: > On 2013/08/09 02:10:46, kaanb wrote: > > Is it ...
7 years, 4 months ago (2013-08-12 18:36:35 UTC) #14
kaanb
On 2013/08/09 13:05:12, bsalomon wrote: > On 2013/08/09 02:10:46, kaanb wrote: > > On 2013/08/08 ...
7 years, 4 months ago (2013-08-12 18:38:21 UTC) #15
bsalomon
On 2013/08/12 18:38:21, kaanb wrote: > On 2013/08/09 13:05:12, bsalomon wrote: > > On 2013/08/09 ...
7 years, 4 months ago (2013-08-12 18:48:31 UTC) #16
reveman
On 2013/08/12 18:48:31, bsalomon wrote: > On 2013/08/12 18:38:21, kaanb wrote: > > On 2013/08/09 ...
7 years, 4 months ago (2013-08-12 19:47:12 UTC) #17
kaanb
On 2013/08/12 19:47:12, David Reveman wrote: > On 2013/08/12 18:48:31, bsalomon wrote: > > On ...
7 years, 4 months ago (2013-08-12 23:01:42 UTC) #18
no sievers
Not sure the change to make the GLSurface belongs in this patch. That's orthogonal right? ...
7 years, 4 months ago (2013-08-13 01:13:58 UTC) #19
no sievers
Regarding the cc changes you might want to start a thread on graphics-dev to see ...
7 years, 4 months ago (2013-08-13 01:21:11 UTC) #20
no sievers
https://codereview.chromium.org/21159007/diff/71001/gpu/command_buffer/service/async_pixel_transfer_manager_android.cc File gpu/command_buffer/service/async_pixel_transfer_manager_android.cc (right): https://codereview.chromium.org/21159007/diff/71001/gpu/command_buffer/service/async_pixel_transfer_manager_android.cc#newcode55 gpu/command_buffer/service/async_pixel_transfer_manager_android.cc:55: !base::android::SysUtils::IsLowEndDevice()) { On 2013/08/13 01:13:58, sievers wrote: > It'd ...
7 years, 4 months ago (2013-08-13 01:26:30 UTC) #21
kaanb
https://codereview.chromium.org/21159007/diff/71001/gpu/command_buffer/service/async_pixel_transfer_manager_android.cc File gpu/command_buffer/service/async_pixel_transfer_manager_android.cc (right): https://codereview.chromium.org/21159007/diff/71001/gpu/command_buffer/service/async_pixel_transfer_manager_android.cc#newcode55 gpu/command_buffer/service/async_pixel_transfer_manager_android.cc:55: !base::android::SysUtils::IsLowEndDevice()) { On 2013/08/13 01:26:30, sievers wrote: > On ...
7 years, 4 months ago (2013-08-13 04:20:39 UTC) #22
kaanb
I've removed the gl_surface_egl.cc changes from this patch, so it only changes the tile textures ...
7 years, 3 months ago (2013-09-04 01:08:20 UTC) #23
kaanb
On 2013/09/04 01:08:20, kaanb wrote: > I've removed the gl_surface_egl.cc changes from this patch, so ...
7 years, 3 months ago (2013-09-05 01:37:28 UTC) #24
epennerAtGoogle
Couple comments of the same theme. It would be nice if most of this code ...
7 years, 3 months ago (2013-09-05 01:54:14 UTC) #25
enne (OOO)
https://codereview.chromium.org/21159007/diff/102001/cc/output/gl_renderer.cc File cc/output/gl_renderer.cc (right): https://codereview.chromium.org/21159007/diff/102001/cc/output/gl_renderer.cc#newcode1710 cc/output/gl_renderer.cc:1710: SkBitmap bitmap_16; This should probably be a member along ...
7 years, 3 months ago (2013-09-05 02:01:19 UTC) #26
Sami
Thanks Kaan, I think this has improved a lot. Could you update the changelog to ...
7 years, 3 months ago (2013-09-05 14:13:25 UTC) #27
reveman
Is this supposed to change the internalformat of textures or just the format of the ...
7 years, 3 months ago (2013-09-05 16:24:17 UTC) #28
Sami
On 2013/09/05 16:24:17, David Reveman wrote: > Is this supposed to change the internalformat of ...
7 years, 3 months ago (2013-09-05 16:30:54 UTC) #29
reveman
On 2013/09/05 16:30:54, Sami wrote: > On 2013/09/05 16:24:17, David Reveman wrote: > > Is ...
7 years, 3 months ago (2013-09-05 17:35:55 UTC) #30
Sami
On 2013/09/05 17:35:55, David Reveman wrote: > Would it makes sense to still handle this ...
7 years, 3 months ago (2013-09-05 17:58:32 UTC) #31
epennerAtGoogle
> Again we can't really tell what the driver will do, but I think if ...
7 years, 3 months ago (2013-09-05 18:35:10 UTC) #32
kaanb
Addressed all comments but 2. Uploading this so London folks can have a look before ...
7 years, 3 months ago (2013-09-06 02:05:53 UTC) #33
epennerAtGoogle
Just a couple comments, only regarding the addition of the Enum. I didn't look at ...
7 years, 3 months ago (2013-09-06 03:24:44 UTC) #34
reveman
https://codereview.chromium.org/21159007/diff/125001/cc/resources/resource_provider.h File cc/resources/resource_provider.h (right): https://codereview.chromium.org/21159007/diff/125001/cc/resources/resource_provider.h#newcode55 cc/resources/resource_provider.h:55: enum TextureType { On 2013/09/06 03:24:44, epennerAtGoogle wrote: > ...
7 years, 3 months ago (2013-09-06 03:47:14 UTC) #35
epennerAtGoogle
> Maybe OK to just use the internal formats defined by standard GL. ie. GL_RGBA8, ...
7 years, 3 months ago (2013-09-06 04:22:44 UTC) #36
Sami
> https://codereview.chromium.org/21159007/diff/102001/cc/resources/image_raster_worker_pool.cc#newcode37 > cc/resources/image_raster_worker_pool.cc:37: > task_->RunOnWorkerThread(thread_index, buffer_, task_->resource()->size()); > On 2013/09/05 14:13:26, Sami wrote: > ...
7 years, 3 months ago (2013-09-06 12:55:41 UTC) #37
kaanb
On 2013/09/06 12:55:41, Sami wrote: > > > https://codereview.chromium.org/21159007/diff/102001/cc/resources/image_raster_worker_pool.cc#newcode37 > > cc/resources/image_raster_worker_pool.cc:37: > > task_->RunOnWorkerThread(thread_index, ...
7 years, 3 months ago (2013-09-07 01:36:20 UTC) #38
epennerAtGoogle
> I had a chat regarding GL_UNPACK_ALIGNMENT with epenner@ and he thinks we should > ...
7 years, 3 months ago (2013-09-07 02:00:33 UTC) #39
Sami
On 2013/09/07 02:00:33, epennerAtGoogle wrote: > > I had a chat regarding GL_UNPACK_ALIGNMENT with epenner@ ...
7 years, 3 months ago (2013-09-09 13:28:40 UTC) #40
vangelis
https://codereview.chromium.org/21159007/diff/125001/cc/resources/prioritized_resource.cc File cc/resources/prioritized_resource.cc (right): https://codereview.chromium.org/21159007/diff/125001/cc/resources/prioritized_resource.cc#newcode31 cc/resources/prioritized_resource.cc:31: // TODO(kaanb): check this codepath Is this TODO still ...
7 years, 3 months ago (2013-09-10 01:52:18 UTC) #41
kaanb
Rebased and uploaded a new version. The only TODO remaining is to unify the format ...
7 years, 3 months ago (2013-09-11 04:01:51 UTC) #42
vangelis
https://codereview.chromium.org/21159007/diff/139001/cc/layers/texture_layer_impl.cc File cc/layers/texture_layer_impl.cc (right): https://codereview.chromium.org/21159007/diff/139001/cc/layers/texture_layer_impl.cc#newcode7 cc/layers/texture_layer_impl.cc:7: #include <vector> Is this new include needed? https://codereview.chromium.org/21159007/diff/139001/cc/output/gl_renderer.cc File ...
7 years, 3 months ago (2013-09-11 06:11:36 UTC) #43
epennerAtGoogle
Few comments of the same theme again. Getting close IMO. https://codereview.chromium.org/21159007/diff/139001/cc/layers/heads_up_display_layer_impl.cc File cc/layers/heads_up_display_layer_impl.cc (right): https://codereview.chromium.org/21159007/diff/139001/cc/layers/heads_up_display_layer_impl.cc#newcode98 ...
7 years, 3 months ago (2013-09-11 19:21:03 UTC) #44
reveman
https://codereview.chromium.org/21159007/diff/139001/cc/resources/resource_provider.h File cc/resources/resource_provider.h (right): https://codereview.chromium.org/21159007/diff/139001/cc/resources/resource_provider.h#newcode56 cc/resources/resource_provider.h:56: INVALID_TYPE, Do we need INVALID_TYPE? It's easier to maintain ...
7 years, 3 months ago (2013-09-11 20:19:12 UTC) #45
kaanb
I got rid of all GLenum formats throughtout cc/ All of cc/ now uses ResourceProvider::TextureFormat ...
7 years, 3 months ago (2013-09-12 07:53:42 UTC) #46
reveman
https://codereview.chromium.org/21159007/diff/139001/cc/resources/raster_worker_pool.cc File cc/resources/raster_worker_pool.cc (right): https://codereview.chromium.org/21159007/diff/139001/cc/resources/raster_worker_pool.cc#newcode138 cc/resources/raster_worker_pool.cc:138: if (texture_type_ == ResourceProvider::RGBA_4444) { please make this a ...
7 years, 3 months ago (2013-09-12 15:57:38 UTC) #47
vangelis
https://codereview.chromium.org/21159007/diff/139001/cc/layers/texture_layer_impl.cc File cc/layers/texture_layer_impl.cc (right): https://codereview.chromium.org/21159007/diff/139001/cc/layers/texture_layer_impl.cc#newcode7 cc/layers/texture_layer_impl.cc:7: #include <vector> On 2013/09/12 07:53:44, kaanb wrote: > On ...
7 years, 3 months ago (2013-09-12 16:41:55 UTC) #48
kaanb
https://codereview.chromium.org/21159007/diff/139001/cc/layers/texture_layer_impl.cc File cc/layers/texture_layer_impl.cc (right): https://codereview.chromium.org/21159007/diff/139001/cc/layers/texture_layer_impl.cc#newcode7 cc/layers/texture_layer_impl.cc:7: #include <vector> On 2013/09/12 16:41:56, vangelis wrote: > On ...
7 years, 3 months ago (2013-09-13 00:11:07 UTC) #49
kaanb
Ready for a final look, adding piman@ for OWNERS approval for gpu/ adding kbr@ for ...
7 years, 3 months ago (2013-09-13 00:15:52 UTC) #50
enne (OOO)
https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc File cc/resources/resource_provider.cc (right): https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc#newcode235 cc/resources/resource_provider.cc:235: DCHECK(texture_format == RGBA_8888); DCHECK_EQ, here and elsewhere. https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc#newcode944 cc/resources/resource_provider.cc:944: ...
7 years, 3 months ago (2013-09-13 01:39:43 UTC) #51
piman
https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc File cc/resources/resource_provider.cc (right): https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc#newcode956 cc/resources/resource_provider.cc:956: } Why not make TransferableResource use ResourceProvider::Format? https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.h File ...
7 years, 3 months ago (2013-09-13 01:41:59 UTC) #52
Ken Russell (switch to Gerrit)
content/renderer/gpu LGTM modulo one issue. https://codereview.chromium.org/21159007/diff/157001/content/renderer/gpu/render_widget_compositor.cc File content/renderer/gpu/render_widget_compositor.cc (right): https://codereview.chromium.org/21159007/diff/157001/content/renderer/gpu/render_widget_compositor.cc#newcode287 content/renderer/gpu/render_widget_compositor.cc:287: base::android::SysUtils::IsLowEndDevice() && It looks ...
7 years, 3 months ago (2013-09-13 03:08:55 UTC) #53
kaanb
https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc File cc/resources/resource_provider.cc (right): https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc#newcode235 cc/resources/resource_provider.cc:235: DCHECK(texture_format == RGBA_8888); On 2013/09/13 01:39:44, enne wrote: > ...
7 years, 3 months ago (2013-09-13 03:43:55 UTC) #54
enne (OOO)
https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc File cc/resources/resource_provider.cc (right): https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc#newcode944 cc/resources/resource_provider.cc:944: case 0: On 2013/09/13 03:43:56, kaanb wrote: > On ...
7 years, 3 months ago (2013-09-13 03:53:24 UTC) #55
piman
https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc File cc/resources/resource_provider.cc (right): https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc#newcode956 cc/resources/resource_provider.cc:956: } On 2013/09/13 03:43:56, kaanb wrote: > On 2013/09/13 ...
7 years, 3 months ago (2013-09-13 04:56:50 UTC) #56
reveman
https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc File cc/resources/resource_provider.cc (right): https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc#newcode956 cc/resources/resource_provider.cc:956: } On 2013/09/13 04:56:51, piman wrote: > On 2013/09/13 ...
7 years, 3 months ago (2013-09-13 14:32:48 UTC) #57
reveman
https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc File cc/resources/resource_provider.cc (right): https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc#newcode944 cc/resources/resource_provider.cc:944: case 0: On 2013/09/13 03:53:25, enne wrote: > On ...
7 years, 3 months ago (2013-09-13 14:59:47 UTC) #58
piman
On Fri, Sep 13, 2013 at 7:32 AM, <reveman@chromium.org> wrote: > > https://codereview.chromium.**org/21159007/diff/157001/cc/** > resources/resource_provider.cc<https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc> ...
7 years, 3 months ago (2013-09-13 17:06:29 UTC) #59
kaanb
https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc File cc/resources/resource_provider.cc (right): https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc#newcode944 cc/resources/resource_provider.cc:944: case 0: On 2013/09/13 14:59:48, David Reveman wrote: > ...
7 years, 3 months ago (2013-09-13 19:57:37 UTC) #60
reveman
https://codereview.chromium.org/21159007/diff/167001/cc/resources/tile_manager.cc File cc/resources/tile_manager.cc (right): https://codereview.chromium.org/21159007/diff/167001/cc/resources/tile_manager.cc#newcode111 cc/resources/tile_manager.cc:111: provider->best_texture_format(); On 2013/09/13 19:57:39, kaanb wrote: > On 2013/09/13 ...
7 years, 3 months ago (2013-09-13 20:24:30 UTC) #61
piman
On Fri, Sep 13, 2013 at 12:57 PM, <kaanb@chromium.org> wrote: > > https://codereview.chromium.**org/21159007/diff/157001/cc/** > resources/resource_provider.cc<https://codereview.chromium.org/21159007/diff/157001/cc/resources/resource_provider.cc> ...
7 years, 3 months ago (2013-09-13 20:39:44 UTC) #62
kaanb1
On Fri, Sep 13, 2013 at 1:39 PM, Antoine Labour <piman@chromium.org> wrote: > > > ...
7 years, 3 months ago (2013-09-13 21:22:03 UTC) #63
kaanb
+jschuh for content/common/cc_messages.h Refactored the Format enum out of ResourceProvider so that we could use ...
7 years, 3 months ago (2013-09-13 22:35:21 UTC) #64
jschuh
https://codereview.chromium.org/21159007/diff/186001/content/common/cc_messages.h File content/common/cc_messages.h (right): https://codereview.chromium.org/21159007/diff/186001/content/common/cc_messages.h#newcode121 content/common/cc_messages.h:121: IPC_ENUM_TRAITS(cc::ResourceFormat) Please use IPC_ENUM_TRAITS_MIN_MAX_VALUE to force range validation in ...
7 years, 3 months ago (2013-09-13 23:02:05 UTC) #65
piman
On Fri, Sep 13, 2013 at 2:22 PM, Kaan Baloglu <kaanb@google.com> wrote: > > > ...
7 years, 3 months ago (2013-09-13 23:19:09 UTC) #66
kaanb
Removed the DCHECKs for egl_image_ not being NULL in gpu/command_buffer/service/async_pixel_transfer_manager_egl.cc and I added early outs ...
7 years, 3 months ago (2013-09-13 23:57:41 UTC) #67
piman
LGTM for gpu and content, with 1 nit. https://codereview.chromium.org/21159007/diff/189001/cc/resources/resource_format.h File cc/resources/resource_format.h (right): https://codereview.chromium.org/21159007/diff/189001/cc/resources/resource_format.h#newcode14 cc/resources/resource_format.h:14: LUMINANCE_8, ...
7 years, 3 months ago (2013-09-14 00:14:15 UTC) #68
enne (OOO)
cc/ lgtm
7 years, 3 months ago (2013-09-14 00:21:03 UTC) #69
kaanb
https://codereview.chromium.org/21159007/diff/189001/cc/resources/resource_format.h File cc/resources/resource_format.h (right): https://codereview.chromium.org/21159007/diff/189001/cc/resources/resource_format.h#newcode14 cc/resources/resource_format.h:14: LUMINANCE_8, On 2013/09/14 00:14:17, piman wrote: > nit: can ...
7 years, 3 months ago (2013-09-14 00:36:23 UTC) #70
reveman
https://codereview.chromium.org/21159007/diff/189001/cc/output/gl_renderer.cc File cc/output/gl_renderer.cc (right): https://codereview.chromium.org/21159007/diff/189001/cc/output/gl_renderer.cc#newcode1717 cc/output/gl_renderer.cc:1717: settings_->use_rgba_4444_textures ? RGBA_4444 : RGBA_8888); I think this should ...
7 years, 3 months ago (2013-09-14 00:58:37 UTC) #71
kaanb
https://codereview.chromium.org/21159007/diff/189001/cc/output/gl_renderer.cc File cc/output/gl_renderer.cc (right): https://codereview.chromium.org/21159007/diff/189001/cc/output/gl_renderer.cc#newcode1717 cc/output/gl_renderer.cc:1717: settings_->use_rgba_4444_textures ? RGBA_4444 : RGBA_8888); On 2013/09/14 00:58:39, David ...
7 years, 3 months ago (2013-09-16 07:22:23 UTC) #72
reveman
https://codereview.chromium.org/21159007/diff/205001/cc/resources/raster_worker_pool.cc File cc/resources/raster_worker_pool.cc (right): https://codereview.chromium.org/21159007/diff/205001/cc/resources/raster_worker_pool.cc#newcode53 cc/resources/raster_worker_pool.cc:53: ResourceFormat format) { You can remove the format parameter ...
7 years, 3 months ago (2013-09-16 15:55:13 UTC) #73
kaanb
https://codereview.chromium.org/21159007/diff/205001/cc/resources/raster_worker_pool.cc File cc/resources/raster_worker_pool.cc (right): https://codereview.chromium.org/21159007/diff/205001/cc/resources/raster_worker_pool.cc#newcode53 cc/resources/raster_worker_pool.cc:53: ResourceFormat format) { On 2013/09/16 15:55:14, David Reveman wrote: ...
7 years, 3 months ago (2013-09-16 18:36:35 UTC) #74
reveman
On 2013/09/16 18:36:35, kaanb wrote: > https://codereview.chromium.org/21159007/diff/205001/cc/resources/raster_worker_pool.cc > File cc/resources/raster_worker_pool.cc (right): > > https://codereview.chromium.org/21159007/diff/205001/cc/resources/raster_worker_pool.cc#newcode53 > ...
7 years, 3 months ago (2013-09-16 19:29:25 UTC) #75
jschuh
ipc security lgtm
7 years, 3 months ago (2013-09-16 19:43:48 UTC) #76
kaanb
On 2013/09/16 19:29:25, David Reveman wrote: > On 2013/09/16 18:36:35, kaanb wrote: > > > ...
7 years, 3 months ago (2013-09-16 22:24:18 UTC) #77
reveman
https://codereview.chromium.org/21159007/diff/214001/cc/output/gl_renderer.cc File cc/output/gl_renderer.cc (right): https://codereview.chromium.org/21159007/diff/214001/cc/output/gl_renderer.cc#newcode1704 cc/output/gl_renderer.cc:1704: nit: no need for this blank line https://codereview.chromium.org/21159007/diff/214001/cc/output/gl_renderer.cc#newcode1721 cc/output/gl_renderer.cc:1721: ...
7 years, 3 months ago (2013-09-17 02:48:10 UTC) #78
kaanb
Please CQ if there aren't any more comments. https://codereview.chromium.org/21159007/diff/214001/cc/output/gl_renderer.cc File cc/output/gl_renderer.cc (right): https://codereview.chromium.org/21159007/diff/214001/cc/output/gl_renderer.cc#newcode1704 cc/output/gl_renderer.cc:1704: On ...
7 years, 3 months ago (2013-09-17 04:12:17 UTC) #79
reveman
I thinks this is ready to land once I understand those DCHECKs. https://codereview.chromium.org/21159007/diff/218001/cc/scheduler/texture_uploader.cc File cc/scheduler/texture_uploader.cc ...
7 years, 3 months ago (2013-09-17 13:52:00 UTC) #80
kaanb
https://codereview.chromium.org/21159007/diff/218001/cc/scheduler/texture_uploader.cc File cc/scheduler/texture_uploader.cc (right): https://codereview.chromium.org/21159007/diff/218001/cc/scheduler/texture_uploader.cc#newcode211 cc/scheduler/texture_uploader.cc:211: DCHECK(format != RGBA_4444 || (source_rect.width() % 2) == 0); ...
7 years, 3 months ago (2013-09-17 16:41:57 UTC) #81
reveman
https://codereview.chromium.org/21159007/diff/218001/cc/scheduler/texture_uploader.cc File cc/scheduler/texture_uploader.cc (left): https://codereview.chromium.org/21159007/diff/218001/cc/scheduler/texture_uploader.cc#oldcode212 cc/scheduler/texture_uploader.cc:212: // Assuming that GL_UNPACK_ALIGNMENT has not changed from default. ...
7 years, 3 months ago (2013-09-17 17:44:14 UTC) #82
kaanb
https://codereview.chromium.org/21159007/diff/218001/cc/scheduler/texture_uploader.cc File cc/scheduler/texture_uploader.cc (left): https://codereview.chromium.org/21159007/diff/218001/cc/scheduler/texture_uploader.cc#oldcode212 cc/scheduler/texture_uploader.cc:212: // Assuming that GL_UNPACK_ALIGNMENT has not changed from default. ...
7 years, 3 months ago (2013-09-17 18:44:24 UTC) #83
reveman
https://codereview.chromium.org/21159007/diff/218001/cc/scheduler/texture_uploader.cc File cc/scheduler/texture_uploader.cc (right): https://codereview.chromium.org/21159007/diff/218001/cc/scheduler/texture_uploader.cc#newcode211 cc/scheduler/texture_uploader.cc:211: DCHECK(format != RGBA_4444 || (source_rect.width() % 2) == 0); ...
7 years, 3 months ago (2013-09-17 19:13:11 UTC) #84
epenner
> I don't mind removing the DCHECK if we all agree on what needs to ...
7 years, 3 months ago (2013-09-17 19:15:54 UTC) #85
epenner
Can do this as follow up, but noticed one more Nit. https://codereview.chromium.org/21159007/diff/215076/cc/resources/resource_provider.h File cc/resources/resource_provider.h (right): ...
7 years, 3 months ago (2013-09-17 19:29:26 UTC) #86
kaanb
On 2013/09/17 19:13:11, David Reveman wrote: > https://codereview.chromium.org/21159007/diff/218001/cc/scheduler/texture_uploader.cc > File cc/scheduler/texture_uploader.cc (right): > > https://codereview.chromium.org/21159007/diff/218001/cc/scheduler/texture_uploader.cc#newcode211 ...
7 years, 3 months ago (2013-09-17 21:00:02 UTC) #87
reveman
On 2013/09/17 21:00:02, kaanb wrote: > On 2013/09/17 19:13:11, David Reveman wrote: > > > ...
7 years, 3 months ago (2013-09-17 21:26:11 UTC) #88
kaanb
On 2013/09/17 21:26:11, David Reveman wrote: > On 2013/09/17 21:00:02, kaanb wrote: > > On ...
7 years, 3 months ago (2013-09-17 21:40:47 UTC) #89
kaanb
On 2013/09/17 19:29:26, epenner wrote: > Can do this as follow up, but noticed one ...
7 years, 3 months ago (2013-09-17 21:42:34 UTC) #90
reveman
lgtm after addressing this last set of comments and making sure it works properly with ...
7 years, 3 months ago (2013-09-17 22:09:37 UTC) #91
kaanb
https://codereview.chromium.org/21159007/diff/224001/cc/output/gl_renderer.cc File cc/output/gl_renderer.cc (right): https://codereview.chromium.org/21159007/diff/224001/cc/output/gl_renderer.cc#newcode1724 cc/output/gl_renderer.cc:1724: on_demand_tile_raster_bitmap_dest.getPixels()); On 2013/09/17 22:09:38, David Reveman wrote: > Add ...
7 years, 3 months ago (2013-09-17 22:40:00 UTC) #92
kaanb
On 2013/09/17 22:09:37, David Reveman wrote: > lgtm after addressing this last set of comments ...
7 years, 3 months ago (2013-09-17 23:13:14 UTC) #93
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kaanb@chromium.org/21159007/222001
7 years, 3 months ago (2013-09-17 23:43:09 UTC) #94
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 3 months ago (2013-09-18 00:21:09 UTC) #95
kaanb
On 2013/09/18 00:21:09, I haz the power (commit-bot) wrote: > Sorry for I got bad ...
7 years, 3 months ago (2013-09-18 00:39:51 UTC) #96
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kaanb@chromium.org/21159007/226001
7 years, 3 months ago (2013-09-18 00:48:58 UTC) #97
kaanb
On 2013/09/18 00:48:58, I haz the power (commit-bot) wrote: > CQ is trying da patch. ...
7 years, 3 months ago (2013-09-18 01:11:45 UTC) #98
commit-bot: I haz the power
Failed to trigger a try job on win_x64_rel HTTP Error 400: Bad Request
7 years, 3 months ago (2013-09-18 01:15:54 UTC) #99
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kaanb@chromium.org/21159007/239001
7 years, 3 months ago (2013-09-18 01:18:01 UTC) #100
commit-bot: I haz the power
Failed to trigger a try job on linux_aura HTTP Error 400: Bad Request
7 years, 3 months ago (2013-09-18 01:37:10 UTC) #101
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kaanb@chromium.org/21159007/251001
7 years, 3 months ago (2013-09-18 01:37:19 UTC) #102
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 3 months ago (2013-09-18 02:49:18 UTC) #103
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kaanb@chromium.org/21159007/111001
7 years, 3 months ago (2013-09-18 04:17:52 UTC) #104
kaanb1
Fixed video_resource_updater.h so that it compiles under Windows On Tue, Sep 17, 2013 at 9:17 ...
7 years, 3 months ago (2013-09-18 04:18:55 UTC) #105
commit-bot: I haz the power
Sorry for I got bad news for ya. Compile failed with a clobber build on ...
7 years, 3 months ago (2013-09-18 05:11:46 UTC) #106
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/kaanb@chromium.org/21159007/116001
7 years, 3 months ago (2013-09-18 05:41:45 UTC) #107
kaanb
On 2013/09/18 05:11:46, I haz the power (commit-bot) wrote: > Sorry for I got bad ...
7 years, 3 months ago (2013-09-18 05:42:09 UTC) #108
commit-bot: I haz the power
7 years, 3 months ago (2013-09-18 09:34:23 UTC) #109
Message was sent while issue was closed.
Change committed as 223830

Powered by Google App Engine
This is Rietveld 408576698