| 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 <stddef.h> |
| 8 #include <stdint.h> |
| 9 |
| 7 #include "gpu/command_buffer/common/mailbox_holder.h" | 10 #include "gpu/command_buffer/common/mailbox_holder.h" |
| 8 #include "gpu/command_buffer/common/sync_token.h" | 11 #include "gpu/command_buffer/common/sync_token.h" |
| 9 #include "gpu/command_buffer/common/value_state.h" | 12 #include "gpu/command_buffer/common/value_state.h" |
| 10 | 13 |
| 11 // Generate param traits write methods. | 14 // Generate param traits write methods. |
| 12 #include "ipc/param_traits_write_macros.h" | 15 #include "ipc/param_traits_write_macros.h" |
| 13 namespace IPC { | 16 namespace IPC { |
| 14 #include "gpu/ipc/gpu_command_buffer_traits_multi.h" | 17 #include "gpu/ipc/gpu_command_buffer_traits_multi.h" |
| 15 } // namespace IPC | 18 } // namespace IPC |
| 16 | 19 |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 l->append("<ValueState ("); | 161 l->append("<ValueState ("); |
| 159 for (int value : p.int_value) | 162 for (int value : p.int_value) |
| 160 *l += base::StringPrintf("%i ", value); | 163 *l += base::StringPrintf("%i ", value); |
| 161 l->append(" int values "); | 164 l->append(" int values "); |
| 162 for (float value : p.float_value) | 165 for (float value : p.float_value) |
| 163 *l += base::StringPrintf("%f ", value); | 166 *l += base::StringPrintf("%f ", value); |
| 164 l->append(" float values)>"); | 167 l->append(" float values)>"); |
| 165 } | 168 } |
| 166 | 169 |
| 167 } // namespace IPC | 170 } // namespace IPC |
| OLD | NEW |