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

Side by Side Diff: ppapi/proxy/ppapi_command_buffer_proxy.h

Issue 1864723003: Make lost context and error message callbacks on GpuControl go to client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: errorcallback: . 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_ 5 #ifndef PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_
6 #define PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_ 6 #define PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 void Flush(int32_t put_offset) override; 46 void Flush(int32_t put_offset) override;
47 void OrderingBarrier(int32_t put_offset) override; 47 void OrderingBarrier(int32_t put_offset) override;
48 void WaitForTokenInRange(int32_t start, int32_t end) override; 48 void WaitForTokenInRange(int32_t start, int32_t end) override;
49 void WaitForGetOffsetInRange(int32_t start, int32_t end) override; 49 void WaitForGetOffsetInRange(int32_t start, int32_t end) override;
50 void SetGetBuffer(int32_t transfer_buffer_id) override; 50 void SetGetBuffer(int32_t transfer_buffer_id) override;
51 scoped_refptr<gpu::Buffer> CreateTransferBuffer(size_t size, 51 scoped_refptr<gpu::Buffer> CreateTransferBuffer(size_t size,
52 int32_t* id) override; 52 int32_t* id) override;
53 void DestroyTransferBuffer(int32_t id) override; 53 void DestroyTransferBuffer(int32_t id) override;
54 54
55 // gpu::GpuControl implementation: 55 // gpu::GpuControl implementation:
56 void SetGpuControlClient(gpu::GpuControlClient*) override;
56 gpu::Capabilities GetCapabilities() override; 57 gpu::Capabilities GetCapabilities() override;
57 int32_t CreateImage(ClientBuffer buffer, 58 int32_t CreateImage(ClientBuffer buffer,
58 size_t width, 59 size_t width,
59 size_t height, 60 size_t height,
60 unsigned internalformat) override; 61 unsigned internalformat) override;
61 void DestroyImage(int32_t id) override; 62 void DestroyImage(int32_t id) override;
62 int32_t CreateGpuMemoryBufferImage(size_t width, 63 int32_t CreateGpuMemoryBufferImage(size_t width,
63 size_t height, 64 size_t height,
64 unsigned internalformat, 65 unsigned internalformat,
65 unsigned usage) override; 66 unsigned usage) override;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 uint64_t flushed_fence_sync_release_; 109 uint64_t flushed_fence_sync_release_;
109 uint64_t validated_fence_sync_release_; 110 uint64_t validated_fence_sync_release_;
110 111
111 DISALLOW_COPY_AND_ASSIGN(PpapiCommandBufferProxy); 112 DISALLOW_COPY_AND_ASSIGN(PpapiCommandBufferProxy);
112 }; 113 };
113 114
114 } // namespace proxy 115 } // namespace proxy
115 } // namespace ppapi 116 } // namespace ppapi
116 117
117 #endif // PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_ 118 #endif // PPAPI_PROXY_COMMAND_BUFFER_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698