blob: 7b37731f37fea8bde551e7046d65819edd39758b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_COMMON_GPU_MESSAGES_H_
#define CHROME_COMMON_GPU_MESSAGES_H_
#include <vector>
#include "app/surface/transport_dib.h"
#include "base/basictypes.h"
#include "base/process.h"
#include "chrome/common/common_param_traits.h"
#include "chrome/common/gpu_native_window_handle.h"
#include "gfx/native_widget_types.h"
#include "gfx/rect.h"
#include "gfx/size.h"
#include "gpu/command_buffer/common/command_buffer.h"
namespace IPC {
template <>
struct ParamTraits<gpu::CommandBuffer::State> {
typedef gpu::CommandBuffer::State param_type;
static void Write(Message* m, const param_type& p) {
m->WriteInt(p.num_entries);
m->WriteInt(p.get_offset);
m->WriteInt(p.put_offset);
m->WriteInt(p.token);
m->WriteInt(p.error);
}
static bool Read(const Message* m, void** iter, param_type* p) {
int32 temp;
if (m->ReadInt(iter, &p->num_entries) &&
m->ReadInt(iter, &p->get_offset) &&
m->ReadInt(iter, &p->put_offset) &&
m->ReadInt(iter, &p->token) &&
m->ReadInt(iter, &temp)) {
p->error = static_cast<gpu::error::Error>(temp);
return true;
} else {
return false;
}
}
static void Log(const param_type& p, std::wstring* l) {
l->append(L"<CommandBuffer::State>");
}
};
} // namespace IPC
#define MESSAGES_INTERNAL_FILE \
"chrome/common/gpu_messages_internal.h"
#include "ipc/ipc_message_macros.h"
#endif // CHROME_COMMON_GPU_MESSAGES_H_
|