| OLD | NEW |
| 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 Loading... |
| 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::didLoseContext() | 413 void VideoLayerImpl::didLoseOutputSurface() |
| 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 |
| OLD | NEW |