OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/media/vaapi_picture.h" | 5 #include "content/common/gpu/media/vaapi_picture.h" |
6 #include "content/common/gpu/media/vaapi_wrapper.h" | 6 #include "content/common/gpu/media/vaapi_wrapper.h" |
7 #include "ui/gl/gl_bindings.h" | 7 #include "ui/gl/gl_bindings.h" |
8 #include "ui/gl/gl_implementation.h" | 8 #include "ui/gl/gl_implementation.h" |
9 | 9 |
10 #if defined(USE_X11) | 10 #if defined(USE_X11) |
(...skipping 19 matching lines...) Expand all Loading... |
30 picture.reset(new VaapiDrmPicture(vaapi_wrapper, make_context_current, | 30 picture.reset(new VaapiDrmPicture(vaapi_wrapper, make_context_current, |
31 picture_buffer_id, texture_id, size)); | 31 picture_buffer_id, texture_id, size)); |
32 #endif // USE_X11 | 32 #endif // USE_X11 |
33 | 33 |
34 if (picture.get() && !picture->Initialize()) | 34 if (picture.get() && !picture->Initialize()) |
35 picture.reset(); | 35 picture.reset(); |
36 | 36 |
37 return picture; | 37 return picture; |
38 } | 38 } |
39 | 39 |
| 40 bool VaapiPicture::AllowOverlay() const { |
| 41 return false; |
| 42 } |
| 43 |
40 // static | 44 // static |
41 uint32 VaapiPicture::GetGLTextureTarget() { | 45 uint32 VaapiPicture::GetGLTextureTarget() { |
42 #if defined(USE_OZONE) | 46 #if defined(USE_OZONE) |
43 return GL_TEXTURE_EXTERNAL_OES; | 47 return GL_TEXTURE_EXTERNAL_OES; |
44 #else | 48 #else |
45 return GL_TEXTURE_2D; | 49 return GL_TEXTURE_2D; |
46 #endif | 50 #endif |
47 } | 51 } |
48 | 52 |
49 } // namespace content | 53 } // namespace content |
OLD | NEW |