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 "content/common/gpu/client/gl_helper.h" | 5 #include "content/common/gpu/client/gl_helper.h" |
6 | 6 |
7 #include <queue> | 7 #include <queue> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/lazy_instance.h" | 10 #include "base/lazy_instance.h" |
11 #include "base/logging.h" | 11 #include "base/logging.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/message_loop.h" | 13 #include "base/message_loop.h" |
14 #include "base/synchronization/lock.h" | 14 #include "base/synchronization/lock.h" |
15 #include "base/synchronization/waitable_event.h" | 15 #include "base/synchronization/waitable_event.h" |
16 #include "base/threading/thread.h" | 16 #include "base/threading/thread.h" |
17 #include "base/threading/thread_restrictions.h" | 17 #include "base/threading/thread_restrictions.h" |
18 #include "third_party/skia/include/core/SkRegion.h" | |
18 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCString.h " | 19 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCString.h " |
19 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | 20 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" |
20 #include "ui/gfx/rect.h" | 21 #include "ui/gfx/rect.h" |
21 #include "ui/gfx/size.h" | 22 #include "ui/gfx/size.h" |
23 #include "ui/gfx/skia_util.h" | |
22 #include "ui/gl/gl_bindings.h" | 24 #include "ui/gl/gl_bindings.h" |
23 | 25 |
24 using WebKit::WebGLId; | 26 using WebKit::WebGLId; |
25 using WebKit::WebGraphicsContext3D; | 27 using WebKit::WebGraphicsContext3D; |
26 | 28 |
27 namespace { | 29 namespace { |
28 | 30 |
29 const char kGLHelperThreadName[] = "GLHelperThread"; | 31 const char kGLHelperThreadName[] = "GLHelperThread"; |
30 | 32 |
31 class GLHelperThread : public base::Thread { | 33 class GLHelperThread : public base::Thread { |
(...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
744 | 746 |
745 void GLHelper::InitCopyTextToImpl() { | 747 void GLHelper::InitCopyTextToImpl() { |
746 // Lazily initialize |copy_texture_to_impl_| | 748 // Lazily initialize |copy_texture_to_impl_| |
747 if (!copy_texture_to_impl_.get()) | 749 if (!copy_texture_to_impl_.get()) |
748 copy_texture_to_impl_.reset(new CopyTextureToImpl(context_, | 750 copy_texture_to_impl_.reset(new CopyTextureToImpl(context_, |
749 context_for_thread_, | 751 context_for_thread_, |
750 this)); | 752 this)); |
751 | 753 |
752 } | 754 } |
753 | 755 |
756 void GLHelper::CopySubBufferDamage(WebKit::WebGLId texture, | |
757 WebKit::WebGLId previous_texture, | |
758 const gfx::Rect& new_damage, | |
759 const gfx::Rect& old_damage) { | |
760 SkRegion region(RectToSkIRect(old_damage)); | |
761 region.op(RectToSkIRect(new_damage), SkRegion::kDifference_Op); | |
jonathan.backer
2012/11/12 16:52:15
Can we early exit if the region is empty? A common
no sievers
2012/11/19 20:30:44
Done.
| |
762 ScopedFramebuffer dst_framebuffer(context_, context_->createFramebuffer()); | |
763 ScopedFramebufferBinder<GL_FRAMEBUFFER> framebuffer_binder( | |
764 context_, dst_framebuffer); | |
765 ScopedTextureBinder<GL_TEXTURE_2D> texture_binder(context_, texture); | |
766 context_->framebufferTexture2D(GL_FRAMEBUFFER, | |
767 GL_COLOR_ATTACHMENT0, | |
768 GL_TEXTURE_2D, | |
769 previous_texture, | |
770 0); | |
771 for (SkRegion::Iterator it(region); !it.done(); it.next()) { | |
772 const SkIRect& rect = it.rect(); | |
773 context_->copyTexSubImage2D(GL_TEXTURE_2D, 0, | |
774 rect.x(), rect.y(), | |
775 rect.x(), rect.y(), | |
776 rect.width(), rect.height()); | |
777 } | |
778 context_->flush(); | |
779 } | |
780 | |
754 } // namespace content | 781 } // namespace content |
OLD | NEW |