Chromium Code Reviews| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 108 const char* data = NULL; | 108 const char* data = NULL; |
| 109 if (!iter->ReadData(&data, &length) || length != sizeof(gpu::ValueState)) | 109 if (!iter->ReadData(&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) / sizeof(p.int_value[0]); ++i) |
|
piman
2015/10/06 20:04:45
nit: Can you use arraysize here?
Or even better us
RaviKasibhatla
2015/10/07 11:58:34
Done.
| |
| 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) / sizeof(p.float_value[0]); ++i) |
|
piman
2015/10/06 20:04:45
nit: same here.
RaviKasibhatla
2015/10/07 11:58:33
Done.
| |
| 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 |