Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(325)

Unified Diff: remoting/client/gl_desktop.cc

Issue 2045963004: [Remoting] OpenGL Rendering Layer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reviewer's Feedback Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/client/gl_desktop.cc
diff --git a/remoting/client/gl_desktop.cc b/remoting/client/gl_desktop.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a47506e72f35c64ae5cf4415ac2897c9b2b00c0b
--- /dev/null
+++ b/remoting/client/gl_desktop.cc
@@ -0,0 +1,61 @@
+// Copyright 2016 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 "remoting/client/gl_desktop.h"
+
+#include "base/logging.h"
+#include "remoting/client/gl_canvas.h"
+#include "remoting/client/gl_render_layer.h"
+#include "third_party/webrtc/modules/desktop_capture/desktop_frame.h"
+
+namespace {
+
+const int kTextureId = 0;
+
+} // namespace
+
+namespace remoting {
+
+GlDesktop::GlDesktop() {}
+
+GlDesktop::~GlDesktop() {}
+
+void GlDesktop::SetCanvas(GlCanvas* canvas) {
+ if (!canvas) {
+ layer_.reset();
+ return;
+ }
+ layer_.reset(new GlRenderLayer(kTextureId, canvas));
+ if (last_frame_) {
+ layer_->SetTexture(last_frame_->data(), last_frame_->size().width(),
+ last_frame_->size().height());
+ }
+}
+
+void GlDesktop::SetVideoFrame(std::unique_ptr<webrtc::DesktopFrame> frame) {
+ if (layer_) {
+ if (!last_frame_ || !frame->size().equals(last_frame_->size())) {
+ layer_->SetTexture(frame->data(), frame->size().width(),
+ frame->size().height());
+ } else {
+ for (webrtc::DesktopRegion::Iterator i(frame->updated_region());
+ !i.IsAtEnd(); i.Advance()) {
+ const uint8_t* rect_start =
+ frame->GetFrameDataAtPos(i.rect().top_left());
+ layer_->UpdateTexture(
+ rect_start, i.rect().left(), i.rect().top(), i.rect().width(),
+ i.rect().height(), frame->stride());
+ }
+ }
+ }
+ last_frame_ = std::move(frame);
+}
+
+void GlDesktop::Draw() {
+ if (layer_ && last_frame_) {
+ layer_->Draw();
+ }
+}
+
+} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698