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

Unified Diff: cc/raster/gpu_raster_buffer_provider.h

Issue 1910213005: cc: Refactor TileTaskWorkerPool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@task_states
Patch Set: feedback Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/raster/bitmap_tile_task_worker_pool.cc ('k') | cc/raster/gpu_raster_buffer_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/raster/gpu_raster_buffer_provider.h
diff --git a/cc/raster/gpu_raster_buffer_provider.h b/cc/raster/gpu_raster_buffer_provider.h
new file mode 100644
index 0000000000000000000000000000000000000000..3bbc806d59fe535be0ac26412976755b7d4b94ce
--- /dev/null
+++ b/cc/raster/gpu_raster_buffer_provider.h
@@ -0,0 +1,52 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CC_RASTER_GPU_RASTER_BUFFER_PROVIDER_H_
+#define CC_RASTER_GPU_RASTER_BUFFER_PROVIDER_H_
+
+#include <stdint.h>
+
+#include "base/macros.h"
+#include "cc/raster/raster_buffer_provider.h"
+
+namespace cc {
+class ContextProvider;
+class GpuRasterizer;
+class ResourceProvider;
+
+class CC_EXPORT GpuRasterBufferProvider : public RasterBufferProvider {
+ public:
+ ~GpuRasterBufferProvider() override;
+
+ static std::unique_ptr<RasterBufferProvider> Create(
+ ContextProvider* context_provider,
+ ResourceProvider* resource_provider,
+ bool use_distance_field_text,
+ int gpu_rasterization_msaa_sample_count);
+
+ // Overridden from RasterBufferProvider:
+ std::unique_ptr<RasterBuffer> AcquireBufferForRaster(
+ const Resource* resource,
+ uint64_t resource_content_id,
+ uint64_t previous_content_id) override;
+ void ReleaseBufferForRaster(std::unique_ptr<RasterBuffer> buffer) override;
+ void OrderingBarrier() override;
+ ResourceFormat GetResourceFormat(bool must_support_alpha) const override;
+ bool GetResourceRequiresSwizzle(bool must_support_alpha) const override;
+ void Shutdown() override;
+
+ private:
+ GpuRasterBufferProvider(ContextProvider* context_provider,
+ ResourceProvider* resource_provider,
+ bool use_distance_field_text,
+ int gpu_rasterization_msaa_sample_count);
+
+ std::unique_ptr<GpuRasterizer> rasterizer_;
+
+ DISALLOW_COPY_AND_ASSIGN(GpuRasterBufferProvider);
+};
+
+} // namespace cc
+
+#endif // CC_RASTER_GPU_RASTER_BUFFER_PROVIDER_H_
« no previous file with comments | « cc/raster/bitmap_tile_task_worker_pool.cc ('k') | cc/raster/gpu_raster_buffer_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698