OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #include "gpu/command_buffer/service/precompile.h" | 5 #include "gpu/command_buffer/service/precompile.h" |
6 #include "gpu/command_buffer/service/common_decoder.h" | 6 #include "gpu/command_buffer/service/common_decoder.h" |
7 #include "gpu/command_buffer/service/cmd_buffer_engine.h" | 7 #include "gpu/command_buffer/service/cmd_buffer_engine.h" |
8 | 8 |
9 namespace gpu { | 9 namespace gpu { |
10 | 10 |
11 void* CommonDecoder::Bucket::GetData(size_t offset, size_t size) const { | 11 const void* CommonDecoder::Bucket::GetData(size_t offset, size_t size) const { |
12 if (OffsetSizeValid(offset, size)) { | 12 if (OffsetSizeValid(offset, size)) { |
13 return data_.get() + offset; | 13 return data_.get() + offset; |
14 } | 14 } |
15 return NULL; | 15 return NULL; |
16 } | 16 } |
17 | 17 |
18 void CommonDecoder::Bucket::SetSize(size_t size) { | 18 void CommonDecoder::Bucket::SetSize(size_t size) { |
19 if (size != size_) { | 19 if (size != size_) { |
20 data_.reset(size ? new int8[size] : NULL); | 20 data_.reset(size ? new int8[size] : NULL); |
21 size_ = size; | 21 size_ = size; |
22 memset(data_.get(), 0, size); | 22 memset(data_.get(), 0, size); |
23 } | 23 } |
24 } | 24 } |
25 | 25 |
26 bool CommonDecoder::Bucket::SetData( | 26 bool CommonDecoder::Bucket::SetData( |
27 const void* src, size_t offset, size_t size) { | 27 const void* src, size_t offset, size_t size) { |
28 if (OffsetSizeValid(offset, size)) { | 28 if (OffsetSizeValid(offset, size)) { |
29 memcpy(data_.get() + offset, src, size); | 29 memcpy(data_.get() + offset, src, size); |
30 return true; | 30 return true; |
31 } | 31 } |
32 return false; | 32 return false; |
33 } | 33 } |
34 | 34 |
35 void CommonDecoder::Bucket::SetFromString(const std::string& str) { | 35 void CommonDecoder::Bucket::SetFromString(const std::string& str) { |
36 // Strings are passed NULL terminated to distinguish between empty string | 36 SetSize(str.size()); |
37 // and no string. | 37 SetData(str.c_str(), 0, str.size()); |
38 SetSize(str.size() + 1); | |
39 SetData(str.c_str(), 0, str.size() + 1); | |
40 } | 38 } |
41 | 39 |
42 void* CommonDecoder::GetAddressAndCheckSize(unsigned int shm_id, | 40 void* CommonDecoder::GetAddressAndCheckSize(unsigned int shm_id, |
43 unsigned int offset, | 41 unsigned int offset, |
44 unsigned int size) { | 42 unsigned int size) { |
45 Buffer buffer = engine_->GetSharedMemoryBuffer(shm_id); | 43 Buffer buffer = engine_->GetSharedMemoryBuffer(shm_id); |
46 if (!buffer.ptr) | 44 if (!buffer.ptr) |
47 return NULL; | 45 return NULL; |
48 unsigned int end = offset + size; | 46 unsigned int end = offset + size; |
49 if (end > buffer.size || end < offset) { | 47 if (end > buffer.size || end < offset) { |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 } | 301 } |
304 const void* src = bucket->GetData(offset, size); | 302 const void* src = bucket->GetData(offset, size); |
305 if (!src) { | 303 if (!src) { |
306 return error::kInvalidArguments; | 304 return error::kInvalidArguments; |
307 } | 305 } |
308 memcpy(data, src, size); | 306 memcpy(data, src, size); |
309 return error::kNoError; | 307 return error::kNoError; |
310 } | 308 } |
311 | 309 |
312 } // namespace gpu | 310 } // namespace gpu |
OLD | NEW |