| OLD | NEW |
| 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 #include "gpu/ipc/gpu_command_buffer_traits.h" | 5 #include "gpu/ipc/gpu_command_buffer_traits.h" |
| 6 | 6 |
| 7 #include "gpu/command_buffer/common/mailbox_holder.h" | 7 #include "gpu/command_buffer/common/mailbox_holder.h" |
| 8 #include "gpu/command_buffer/common/value_state.h" | 8 #include "gpu/command_buffer/common/value_state.h" |
| 9 | 9 |
| 10 // Generate param traits write methods. | 10 // Generate param traits write methods. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 } | 56 } |
| 57 | 57 |
| 58 void ParamTraits<gpu::Mailbox>::Write(Message* m, const param_type& p) { | 58 void ParamTraits<gpu::Mailbox>::Write(Message* m, const param_type& p) { |
| 59 m->WriteBytes(p.name, sizeof(p.name)); | 59 m->WriteBytes(p.name, sizeof(p.name)); |
| 60 } | 60 } |
| 61 | 61 |
| 62 bool ParamTraits<gpu::Mailbox>::Read(const Message* m, | 62 bool ParamTraits<gpu::Mailbox>::Read(const Message* m, |
| 63 PickleIterator* iter, | 63 PickleIterator* iter, |
| 64 param_type* p) { | 64 param_type* p) { |
| 65 const char* bytes = NULL; | 65 const char* bytes = NULL; |
| 66 if (!iter->ReadBytes(&bytes, sizeof(p->name))) | 66 if (!m->ReadBytes(iter, &bytes, sizeof(p->name))) |
| 67 return false; | 67 return false; |
| 68 DCHECK(bytes); | 68 DCHECK(bytes); |
| 69 memcpy(p->name, bytes, sizeof(p->name)); | 69 memcpy(p->name, bytes, sizeof(p->name)); |
| 70 return true; | 70 return true; |
| 71 } | 71 } |
| 72 | 72 |
| 73 void ParamTraits<gpu::Mailbox>::Log(const param_type& p, std::string* l) { | 73 void ParamTraits<gpu::Mailbox>::Log(const param_type& p, std::string* l) { |
| 74 for (size_t i = 0; i < sizeof(p.name); ++i) | 74 for (size_t i = 0; i < sizeof(p.name); ++i) |
| 75 *l += base::StringPrintf("%02x", p.name[i]); | 75 *l += base::StringPrintf("%02x", p.name[i]); |
| 76 } | 76 } |
| (...skipping 22 matching lines...) Expand all Loading... |
| 99 void ParamTraits<gpu::ValueState>::Write(Message* m, const param_type& p) { | 99 void ParamTraits<gpu::ValueState>::Write(Message* m, const param_type& p) { |
| 100 m->WriteData(reinterpret_cast<const char*>(&p), | 100 m->WriteData(reinterpret_cast<const char*>(&p), |
| 101 sizeof(gpu::ValueState)); | 101 sizeof(gpu::ValueState)); |
| 102 } | 102 } |
| 103 | 103 |
| 104 bool ParamTraits<gpu::ValueState>::Read(const Message* m, | 104 bool ParamTraits<gpu::ValueState>::Read(const Message* m, |
| 105 PickleIterator* iter, | 105 PickleIterator* iter, |
| 106 param_type* p) { | 106 param_type* p) { |
| 107 int length; | 107 int length; |
| 108 const char* data = NULL; | 108 const char* data = NULL; |
| 109 if (!iter->ReadData(&data, &length) || length != sizeof(gpu::ValueState)) | 109 if (!m->ReadData(iter, &data, &length) || length != sizeof(gpu::ValueState)) |
| 110 return false; | 110 return false; |
| 111 DCHECK(data); | 111 DCHECK(data); |
| 112 memcpy(p, data, sizeof(gpu::ValueState)); | 112 memcpy(p, data, sizeof(gpu::ValueState)); |
| 113 return true; | 113 return true; |
| 114 } | 114 } |
| 115 | 115 |
| 116 void ParamTraits<gpu::ValueState>::Log(const param_type& p, std::string* l) { | 116 void ParamTraits<gpu::ValueState>::Log(const param_type& p, std::string* l) { |
| 117 l->append("<ValueState ("); | 117 l->append("<ValueState ("); |
| 118 for (size_t i = 0; i < sizeof(p.int_value); ++i) | 118 for (size_t i = 0; i < sizeof(p.int_value); ++i) |
| 119 *l += base::StringPrintf("%i ", p.int_value[i]); | 119 *l += base::StringPrintf("%i ", p.int_value[i]); |
| 120 l->append(" int values "); | 120 l->append(" int values "); |
| 121 for (size_t i = 0; i < sizeof(p.float_value); ++i) | 121 for (size_t i = 0; i < sizeof(p.float_value); ++i) |
| 122 *l += base::StringPrintf("%f ", p.float_value[i]); | 122 *l += base::StringPrintf("%f ", p.float_value[i]); |
| 123 l->append(" float values)>"); | 123 l->append(" float values)>"); |
| 124 } | 124 } |
| 125 | 125 |
| 126 } // namespace IPC | 126 } // namespace IPC |
| OLD | NEW |