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

Side by Side Diff: cc/resources/image_raster_worker_pool.h

Issue 21159007: cc: Adding support for RGBA_4444 tile textures (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed a signed vs. unsigned comparison in video_resource_updater.cc Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/quads/picture_draw_quad.cc ('k') | cc/resources/image_raster_worker_pool.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_RESOURCES_IMAGE_RASTER_WORKER_POOL_H_ 5 #ifndef CC_RESOURCES_IMAGE_RASTER_WORKER_POOL_H_
6 #define CC_RESOURCES_IMAGE_RASTER_WORKER_POOL_H_ 6 #define CC_RESOURCES_IMAGE_RASTER_WORKER_POOL_H_
7 7
8 #include "cc/resources/raster_worker_pool.h" 8 #include "cc/resources/raster_worker_pool.h"
9 9
10 namespace cc { 10 namespace cc {
11 11
12 class CC_EXPORT ImageRasterWorkerPool : public RasterWorkerPool { 12 class CC_EXPORT ImageRasterWorkerPool : public RasterWorkerPool {
13 public: 13 public:
14 virtual ~ImageRasterWorkerPool(); 14 virtual ~ImageRasterWorkerPool();
15 15
16 static scoped_ptr<RasterWorkerPool> Create( 16 static scoped_ptr<RasterWorkerPool> Create(
17 ResourceProvider* resource_provider, size_t num_threads) { 17 ResourceProvider* resource_provider, size_t num_threads) {
18 return make_scoped_ptr<RasterWorkerPool>( 18 return make_scoped_ptr<RasterWorkerPool>(
19 new ImageRasterWorkerPool(resource_provider, num_threads)); 19 new ImageRasterWorkerPool(resource_provider, num_threads));
20 } 20 }
21 21
22 // Overridden from RasterWorkerPool: 22 // Overridden from RasterWorkerPool:
23 virtual void ScheduleTasks(RasterTask::Queue* queue) OVERRIDE; 23 virtual void ScheduleTasks(RasterTask::Queue* queue) OVERRIDE;
24 virtual GLenum GetResourceFormat() const OVERRIDE; 24 virtual ResourceFormat GetResourceFormat() const OVERRIDE;
25 virtual void OnRasterTasksFinished() OVERRIDE; 25 virtual void OnRasterTasksFinished() OVERRIDE;
26 virtual void OnRasterTasksRequiredForActivationFinished() OVERRIDE; 26 virtual void OnRasterTasksRequiredForActivationFinished() OVERRIDE;
27 27
28 private: 28 private:
29 ImageRasterWorkerPool(ResourceProvider* resource_provider, 29 ImageRasterWorkerPool(ResourceProvider* resource_provider,
30 size_t num_threads); 30 size_t num_threads);
31 31
32 void OnRasterTaskCompleted( 32 void OnRasterTaskCompleted(
33 scoped_refptr<internal::RasterWorkerPoolTask> task, bool was_canceled); 33 scoped_refptr<internal::RasterWorkerPoolTask> task, bool was_canceled);
34 34
(...skipping 12 matching lines...) Expand all
47 47
48 bool raster_tasks_pending_; 48 bool raster_tasks_pending_;
49 bool raster_tasks_required_for_activation_pending_; 49 bool raster_tasks_required_for_activation_pending_;
50 50
51 DISALLOW_COPY_AND_ASSIGN(ImageRasterWorkerPool); 51 DISALLOW_COPY_AND_ASSIGN(ImageRasterWorkerPool);
52 }; 52 };
53 53
54 } // namespace cc 54 } // namespace cc
55 55
56 #endif // CC_RESOURCES_IMAGE_RASTER_WORKER_POOL_H_ 56 #endif // CC_RESOURCES_IMAGE_RASTER_WORKER_POOL_H_
OLDNEW
« no previous file with comments | « cc/quads/picture_draw_quad.cc ('k') | cc/resources/image_raster_worker_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698