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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
// Copyright (c) 2009 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 "base/callback.h"
#include "base/message_loop.h"
#include "gpu/command_buffer/service/gpu_processor.h"
using ::base::SharedMemory;
namespace gpu {
GPUProcessor::GPUProcessor(CommandBuffer* command_buffer)
: command_buffer_(command_buffer),
commands_per_update_(100) {
DCHECK(command_buffer);
decoder_.reset(gles2::GLES2Decoder::Create(&group_));
decoder_->set_engine(this);
}
GPUProcessor::GPUProcessor(CommandBuffer* command_buffer,
gles2::GLES2Decoder* decoder,
CommandParser* parser,
int commands_per_update)
: command_buffer_(command_buffer),
commands_per_update_(commands_per_update) {
DCHECK(command_buffer);
decoder_.reset(decoder);
parser_.reset(parser);
}
GPUProcessor::~GPUProcessor() {
}
void GPUProcessor::ProcessCommands() {
CommandBuffer::State state = command_buffer_->GetState();
if (state.error != error::kNoError)
return;
if (decoder_.get()) {
// TODO(apatrick): need to do more than this on failure.
if (!decoder_->MakeCurrent())
return;
}
parser_->set_put(state.put_offset);
int commands_processed = 0;
while (commands_processed < commands_per_update_ && !parser_->IsEmpty()) {
error::Error error = parser_->ProcessCommand();
if (error != error::kNoError) {
command_buffer_->SetParseError(error);
return;
}
++commands_processed;
}
command_buffer_->SetGetOffset(static_cast<int32>(parser_->get()));
if (!parser_->IsEmpty()) {
MessageLoop::current()->PostTask(
FROM_HERE, NewRunnableMethod(this, &GPUProcessor::ProcessCommands));
}
}
Buffer GPUProcessor::GetSharedMemoryBuffer(int32 shm_id) {
return command_buffer_->GetTransferBuffer(shm_id);
}
void GPUProcessor::set_token(int32 token) {
command_buffer_->SetToken(token);
}
bool GPUProcessor::SetGetOffset(int32 offset) {
if (parser_->set_get(offset)) {
command_buffer_->SetGetOffset(static_cast<int32>(parser_->get()));
return true;
}
return false;
}
int32 GPUProcessor::GetGetOffset() {
return parser_->get();
}
#if defined(OS_MACOSX)
uint64 GPUProcessor::SetWindowSizeForIOSurface(int32 width, int32 height) {
return decoder_->SetWindowSizeForIOSurface(width, height);
}
TransportDIB::Handle GPUProcessor::SetWindowSizeForTransportDIB(int32 width,
int32 height) {
return decoder_->SetWindowSizeForTransportDIB(width, height);
}
void GPUProcessor::SetTransportDIBAllocAndFree(
Callback2<size_t, TransportDIB::Handle*>::Type* allocator,
Callback1<TransportDIB::Id>::Type* deallocator) {
decoder_->SetTransportDIBAllocAndFree(allocator, deallocator);
}
#endif
void GPUProcessor::SetSwapBuffersCallback(
Callback0::Type* callback) {
decoder_->SetSwapBuffersCallback(callback);
}
} // namespace gpu
|