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

Unified Diff: remoting/client/gl_desktop.cc

Issue 2148743005: [Remoting Android] Cursor & Cursor Feedback for OpenGL Renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Swap BGRA to RGBA 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
index a47506e72f35c64ae5cf4415ac2897c9b2b00c0b..4ac5d7845df534de21bd5260c02876563fddba0a 100644
--- a/remoting/client/gl_desktop.cc
+++ b/remoting/client/gl_desktop.cc
@@ -54,7 +54,7 @@ void GlDesktop::SetVideoFrame(std::unique_ptr<webrtc::DesktopFrame> frame) {
void GlDesktop::Draw() {
if (layer_ && last_frame_) {
- layer_->Draw();
+ layer_->Draw(1.f);
}
}

Powered by Google App Engine
This is Rietveld 408576698