| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "gpu/command_buffer/tests/texture_image_factory.h" | 5 #include "gpu/command_buffer/tests/texture_image_factory.h" |
| 6 | 6 |
| 7 #include "ui/gl/gl_bindings.h" | 7 #include "ui/gl/gl_bindings.h" |
| 8 #include "ui/gl/gl_image.h" | 8 #include "ui/gl/gl_image.h" |
| 9 | 9 |
| 10 namespace gpu { | 10 namespace gpu { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 GetInternalFormat(), GL_UNSIGNED_BYTE, nullptr); | 25 GetInternalFormat(), GL_UNSIGNED_BYTE, nullptr); |
| 26 return true; | 26 return true; |
| 27 } | 27 } |
| 28 void ReleaseTexImage(unsigned target) override {} | 28 void ReleaseTexImage(unsigned target) override {} |
| 29 bool CopyTexImage(unsigned target) override { return false; } | 29 bool CopyTexImage(unsigned target) override { return false; } |
| 30 bool CopyTexSubImage(unsigned target, | 30 bool CopyTexSubImage(unsigned target, |
| 31 const gfx::Point& offset, | 31 const gfx::Point& offset, |
| 32 const gfx::Rect& rect) override { | 32 const gfx::Rect& rect) override { |
| 33 return false; | 33 return false; |
| 34 } | 34 } |
| 35 bool CopySubImageData(unsigned texture_id, |
| 36 const gfx::Point& offset, |
| 37 const gfx::Rect& rect, |
| 38 gl::GLFence* in_fence, |
| 39 gl::GLFence* out_fence) override { |
| 40 return false; |
| 41 } |
| 35 | 42 |
| 36 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget, | 43 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget, |
| 37 int z_order, | 44 int z_order, |
| 38 gfx::OverlayTransform transform, | 45 gfx::OverlayTransform transform, |
| 39 const gfx::Rect& bounds_rect, | 46 const gfx::Rect& bounds_rect, |
| 40 const gfx::RectF& crop_rect) override { | 47 const gfx::RectF& crop_rect) override { |
| 41 return false; | 48 return false; |
| 42 } | 49 } |
| 43 | 50 |
| 44 void Flush() override {} | 51 void Flush() override {} |
| (...skipping 30 matching lines...) Expand all Loading... |
| 75 | 82 |
| 76 bool TextureImageFactory::SupportsFormatRGB() { | 83 bool TextureImageFactory::SupportsFormatRGB() { |
| 77 return false; | 84 return false; |
| 78 } | 85 } |
| 79 | 86 |
| 80 void TextureImageFactory::SetRequiredTextureType(unsigned type) { | 87 void TextureImageFactory::SetRequiredTextureType(unsigned type) { |
| 81 required_texture_type_ = type; | 88 required_texture_type_ = type; |
| 82 } | 89 } |
| 83 | 90 |
| 84 } // namespace gpu | 91 } // namespace gpu |
| OLD | NEW |