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

Side by Side Diff: cc/video_layer_impl.cc

Issue 11439026: Revert 171403 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « cc/video_layer_impl.h ('k') | webkit/compositor_bindings/web_layer_tree_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 "cc/video_layer_impl.h" 5 #include "cc/video_layer_impl.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "cc/io_surface_draw_quad.h" 8 #include "cc/io_surface_draw_quad.h"
9 #include "cc/layer_tree_host_impl.h" 9 #include "cc/layer_tree_host_impl.h"
10 #include "cc/math_util.h" 10 #include "cc/math_util.h"
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 void VideoLayerImpl::didUpdateMatrix(const float matrix[16]) 403 void VideoLayerImpl::didUpdateMatrix(const float matrix[16])
404 { 404 {
405 m_streamTextureMatrix = MathUtil::createGfxTransform( 405 m_streamTextureMatrix = MathUtil::createGfxTransform(
406 matrix[0], matrix[1], matrix[2], matrix[3], 406 matrix[0], matrix[1], matrix[2], matrix[3],
407 matrix[4], matrix[5], matrix[6], matrix[7], 407 matrix[4], matrix[5], matrix[6], matrix[7],
408 matrix[8], matrix[9], matrix[10], matrix[11], 408 matrix[8], matrix[9], matrix[10], matrix[11],
409 matrix[12], matrix[13], matrix[14], matrix[15]); 409 matrix[12], matrix[13], matrix[14], matrix[15]);
410 setNeedsRedraw(); 410 setNeedsRedraw();
411 } 411 }
412 412
413 void VideoLayerImpl::didLoseOutputSurface() 413 void VideoLayerImpl::didLoseContext()
414 { 414 {
415 freePlaneData(layerTreeHostImpl()->resourceProvider()); 415 freePlaneData(layerTreeHostImpl()->resourceProvider());
416 } 416 }
417 417
418 void VideoLayerImpl::setNeedsRedraw() 418 void VideoLayerImpl::setNeedsRedraw()
419 { 419 {
420 layerTreeHostImpl()->setNeedsRedraw(); 420 layerTreeHostImpl()->setNeedsRedraw();
421 } 421 }
422 422
423 const char* VideoLayerImpl::layerTypeAsString() const 423 const char* VideoLayerImpl::layerTypeAsString() const
424 { 424 {
425 return "VideoLayer"; 425 return "VideoLayer";
426 } 426 }
427 427
428 } // namespace cc 428 } // namespace cc
OLDNEW
« no previous file with comments | « cc/video_layer_impl.h ('k') | webkit/compositor_bindings/web_layer_tree_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698