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

Side by Side Diff: cc/raster/zero_copy_raster_buffer_provider.h

Issue 2814843002: gpu: GPU service scheduler. (Closed)
Patch Set: rebase Created 3 years, 7 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
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_RASTER_ZERO_COPY_RASTER_BUFFER_PROVIDER_H_ 5 #ifndef CC_RASTER_ZERO_COPY_RASTER_BUFFER_PROVIDER_H_
6 #define CC_RASTER_ZERO_COPY_RASTER_BUFFER_PROVIDER_H_ 6 #define CC_RASTER_ZERO_COPY_RASTER_BUFFER_PROVIDER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 18 matching lines...) Expand all
29 ResourceProvider* resource_provider, 29 ResourceProvider* resource_provider,
30 ResourceFormat preferred_tile_format); 30 ResourceFormat preferred_tile_format);
31 31
32 // Overridden from RasterBufferProvider: 32 // Overridden from RasterBufferProvider:
33 std::unique_ptr<RasterBuffer> AcquireBufferForRaster( 33 std::unique_ptr<RasterBuffer> AcquireBufferForRaster(
34 const Resource* resource, 34 const Resource* resource,
35 uint64_t resource_content_id, 35 uint64_t resource_content_id,
36 uint64_t previous_content_id) override; 36 uint64_t previous_content_id) override;
37 void ReleaseBufferForRaster(std::unique_ptr<RasterBuffer> buffer) override; 37 void ReleaseBufferForRaster(std::unique_ptr<RasterBuffer> buffer) override;
38 void OrderingBarrier() override; 38 void OrderingBarrier() override;
39 void Flush() override;
39 ResourceFormat GetResourceFormat(bool must_support_alpha) const override; 40 ResourceFormat GetResourceFormat(bool must_support_alpha) const override;
40 bool IsResourceSwizzleRequired(bool must_support_alpha) const override; 41 bool IsResourceSwizzleRequired(bool must_support_alpha) const override;
41 bool CanPartialRasterIntoProvidedResource() const override; 42 bool CanPartialRasterIntoProvidedResource() const override;
42 bool IsResourceReadyToDraw(ResourceId id) const override; 43 bool IsResourceReadyToDraw(ResourceId id) const override;
43 uint64_t SetReadyToDrawCallback( 44 uint64_t SetReadyToDrawCallback(
44 const ResourceProvider::ResourceIdArray& resource_ids, 45 const ResourceProvider::ResourceIdArray& resource_ids,
45 const base::Closure& callback, 46 const base::Closure& callback,
46 uint64_t pending_callback_id) const override; 47 uint64_t pending_callback_id) const override;
47 void Shutdown() override; 48 void Shutdown() override;
48 49
49 protected: 50 protected:
50 ZeroCopyRasterBufferProvider(ResourceProvider* resource_provider, 51 ZeroCopyRasterBufferProvider(ResourceProvider* resource_provider,
51 ResourceFormat preferred_tile_format); 52 ResourceFormat preferred_tile_format);
52 53
53 private: 54 private:
54 std::unique_ptr<base::trace_event::ConvertableToTraceFormat> StateAsValue() 55 std::unique_ptr<base::trace_event::ConvertableToTraceFormat> StateAsValue()
55 const; 56 const;
56 57
57 ResourceProvider* resource_provider_; 58 ResourceProvider* resource_provider_;
58 ResourceFormat preferred_tile_format_; 59 ResourceFormat preferred_tile_format_;
59 60
60 DISALLOW_COPY_AND_ASSIGN(ZeroCopyRasterBufferProvider); 61 DISALLOW_COPY_AND_ASSIGN(ZeroCopyRasterBufferProvider);
61 }; 62 };
62 63
63 } // namespace cc 64 } // namespace cc
64 65
65 #endif // CC_RASTER_ZERO_COPY_RASTER_BUFFER_PROVIDER_H_ 66 #endif // CC_RASTER_ZERO_COPY_RASTER_BUFFER_PROVIDER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698