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 "base/bind.h" | 5 #include "base/bind.h" |
6 #include "base/bind_helpers.h" | 6 #include "base/bind_helpers.h" |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/debug/trace_event.h" | 8 #include "base/debug/trace_event.h" |
9 #include "base/hash.h" | 9 #include "base/hash.h" |
10 #include "base/memory/shared_memory.h" | 10 #include "base/memory/shared_memory.h" |
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
676 gpu::CommandBuffer::State pre_state = command_buffer_->GetLastState(); | 676 gpu::CommandBuffer::State pre_state = command_buffer_->GetLastState(); |
677 command_buffer_->Flush(pre_state.put_offset); | 677 command_buffer_->Flush(pre_state.put_offset); |
678 gpu::CommandBuffer::State post_state = command_buffer_->GetLastState(); | 678 gpu::CommandBuffer::State post_state = command_buffer_->GetLastState(); |
679 | 679 |
680 if (pre_state.get_offset != post_state.get_offset) | 680 if (pre_state.get_offset != post_state.get_offset) |
681 ReportState(); | 681 ReportState(); |
682 } | 682 } |
683 | 683 |
684 void GpuCommandBufferStub::OnRegisterTransferBuffer( | 684 void GpuCommandBufferStub::OnRegisterTransferBuffer( |
685 int32 id, | 685 int32 id, |
686 base::SharedMemoryHandle transfer_buffer, | 686 base::SharedMemoryHandle transfer_buffer, |
epenner
2014/03/25 22:14:52
Since this is just a handle, the app will crash if
epenner
2014/03/25 22:25:37
Hmm, is there even a possibility we were leaking f
epenner
2014/03/25 23:02:13
Actually, forget this I'm stupid :P. We were closi
| |
687 uint32 size) { | 687 uint32 size) { |
688 TRACE_EVENT0("gpu", "GpuCommandBufferStub::OnRegisterTransferBuffer"); | 688 TRACE_EVENT0("gpu", "GpuCommandBufferStub::OnRegisterTransferBuffer"); |
689 | |
690 // Duplicate the shared memory for this process. | |
689 base::SharedMemory shared_memory(transfer_buffer, false); | 691 base::SharedMemory shared_memory(transfer_buffer, false); |
692 base::SharedMemoryHandle duped_shared_memory_handle; | |
693 if (!shared_memory.ShareToProcess(base::GetCurrentProcessHandle(), | |
694 &duped_shared_memory_handle)) { | |
695 DVLOG(0) << "Failed to duplicate shared memory handle."; | |
696 return; | |
697 } | |
698 scoped_ptr<base::SharedMemory> duped_shared_memory( | |
699 new base::SharedMemory(duped_shared_memory_handle, false)); | |
700 | |
701 // Map the shared memory into this process. This validates the size. | |
702 if (!duped_shared_memory->Map(size)) { | |
703 DVLOG(0) << "Failed to map shared memory."; | |
704 return; | |
705 } | |
706 | |
690 if (command_buffer_) | 707 if (command_buffer_) |
691 command_buffer_->RegisterTransferBuffer(id, &shared_memory, size); | 708 command_buffer_->RegisterTransferBuffer( |
709 id, duped_shared_memory.Pass(), size); | |
692 } | 710 } |
693 | 711 |
694 void GpuCommandBufferStub::OnDestroyTransferBuffer(int32 id) { | 712 void GpuCommandBufferStub::OnDestroyTransferBuffer(int32 id) { |
695 TRACE_EVENT0("gpu", "GpuCommandBufferStub::OnDestroyTransferBuffer"); | 713 TRACE_EVENT0("gpu", "GpuCommandBufferStub::OnDestroyTransferBuffer"); |
696 | 714 |
697 if (command_buffer_) | 715 if (command_buffer_) |
698 command_buffer_->DestroyTransferBuffer(id); | 716 command_buffer_->DestroyTransferBuffer(id); |
699 } | 717 } |
700 | 718 |
701 void GpuCommandBufferStub::OnGetTransferBuffer( | 719 void GpuCommandBufferStub::OnGetTransferBuffer( |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
977 if (decoder_) | 995 if (decoder_) |
978 decoder_->LoseContext(GL_UNKNOWN_CONTEXT_RESET_ARB); | 996 decoder_->LoseContext(GL_UNKNOWN_CONTEXT_RESET_ARB); |
979 command_buffer_->SetParseError(gpu::error::kLostContext); | 997 command_buffer_->SetParseError(gpu::error::kLostContext); |
980 } | 998 } |
981 | 999 |
982 uint64 GpuCommandBufferStub::GetMemoryUsage() const { | 1000 uint64 GpuCommandBufferStub::GetMemoryUsage() const { |
983 return GetMemoryManager()->GetClientMemoryUsage(this); | 1001 return GetMemoryManager()->GetClientMemoryUsage(this); |
984 } | 1002 } |
985 | 1003 |
986 } // namespace content | 1004 } // namespace content |
OLD | NEW |