| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // This file defines the CommandBufferEngine class, providing the main loop for | 5 // This file defines the CommandBufferEngine class, providing the main loop for |
| 6 // the service, exposing the RPC API, managing the command parser. | 6 // the service, exposing the RPC API, managing the command parser. |
| 7 | 7 |
| 8 #ifndef GPU_COMMAND_BUFFER_SERVICE_CMD_BUFFER_ENGINE_H_ | 8 #ifndef GPU_COMMAND_BUFFER_SERVICE_CMD_BUFFER_ENGINE_H_ |
| 9 #define GPU_COMMAND_BUFFER_SERVICE_CMD_BUFFER_ENGINE_H_ | 9 #define GPU_COMMAND_BUFFER_SERVICE_CMD_BUFFER_ENGINE_H_ |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include <stdint.h> |
| 12 |
| 13 #include "base/macros.h" |
| 12 #include "gpu/command_buffer/common/buffer.h" | 14 #include "gpu/command_buffer/common/buffer.h" |
| 13 | 15 |
| 14 namespace gpu { | 16 namespace gpu { |
| 15 | 17 |
| 16 class CommandBufferEngine { | 18 class CommandBufferEngine { |
| 17 public: | 19 public: |
| 18 CommandBufferEngine() { | 20 CommandBufferEngine() { |
| 19 } | 21 } |
| 20 | 22 |
| 21 virtual ~CommandBufferEngine() { | 23 virtual ~CommandBufferEngine() { |
| 22 } | 24 } |
| 23 | 25 |
| 24 // Gets the base address and size of a registered shared memory buffer. | 26 // Gets the base address and size of a registered shared memory buffer. |
| 25 // Parameters: | 27 // Parameters: |
| 26 // shm_id: the identifier for the shared memory buffer. | 28 // shm_id: the identifier for the shared memory buffer. |
| 27 virtual scoped_refptr<gpu::Buffer> GetSharedMemoryBuffer(int32 shm_id) = 0; | 29 virtual scoped_refptr<gpu::Buffer> GetSharedMemoryBuffer(int32_t shm_id) = 0; |
| 28 | 30 |
| 29 // Sets the token value. | 31 // Sets the token value. |
| 30 virtual void set_token(int32 token) = 0; | 32 virtual void set_token(int32_t token) = 0; |
| 31 | 33 |
| 32 // Sets the shared memory buffer used for commands. | 34 // Sets the shared memory buffer used for commands. |
| 33 virtual bool SetGetBuffer(int32 transfer_buffer_id) = 0; | 35 virtual bool SetGetBuffer(int32_t transfer_buffer_id) = 0; |
| 34 | 36 |
| 35 // Sets the "get" pointer. Return false if offset is out of range. | 37 // Sets the "get" pointer. Return false if offset is out of range. |
| 36 virtual bool SetGetOffset(int32 offset) = 0; | 38 virtual bool SetGetOffset(int32_t offset) = 0; |
| 37 | 39 |
| 38 // Gets the "get" pointer. | 40 // Gets the "get" pointer. |
| 39 virtual int32 GetGetOffset() = 0; | 41 virtual int32_t GetGetOffset() = 0; |
| 40 | 42 |
| 41 private: | 43 private: |
| 42 DISALLOW_COPY_AND_ASSIGN(CommandBufferEngine); | 44 DISALLOW_COPY_AND_ASSIGN(CommandBufferEngine); |
| 43 }; | 45 }; |
| 44 | 46 |
| 45 } // namespace gpu | 47 } // namespace gpu |
| 46 | 48 |
| 47 #endif // GPU_COMMAND_BUFFER_SERVICE_CMD_BUFFER_ENGINE_H_ | 49 #endif // GPU_COMMAND_BUFFER_SERVICE_CMD_BUFFER_ENGINE_H_ |
| OLD | NEW |