blob: be2bebf9653ba3a745661ef5775d1c9b19082c82 (
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
|
// Copyright 2013 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.
#include "gpu/command_buffer/common/mailbox.h"
#include <string.h>
#include "gpu/command_buffer/common/logging.h"
namespace gpu {
Mailbox::Mailbox() {
memset(name, 0, sizeof(name));
}
bool Mailbox::IsZero() const {
for (size_t i = 0; i < arraysize(name); ++i) {
if (name[i])
return false;
}
return true;
}
void Mailbox::SetZero() {
memset(name, 0, sizeof(name));
}
void Mailbox::SetName(const int8* n) {
GPU_DCHECK(IsZero() || !memcmp(name, n, sizeof(name)));
memcpy(name, n, sizeof(name));
}
} // namespace gpu
|