| 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 "components/mus/surfaces/direct_output_surface.h" | 5 #include "services/ui/surfaces/direct_output_surface.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| 11 #include "cc/output/compositor_frame.h" | 11 #include "cc/output/compositor_frame.h" |
| 12 #include "cc/output/context_provider.h" | 12 #include "cc/output/context_provider.h" |
| 13 #include "cc/output/output_surface_client.h" | 13 #include "cc/output/output_surface_client.h" |
| 14 #include "cc/scheduler/begin_frame_source.h" | 14 #include "cc/scheduler/begin_frame_source.h" |
| 15 #include "gpu/command_buffer/client/context_support.h" | 15 #include "gpu/command_buffer/client/context_support.h" |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 client_->DidSwapBuffers(); | 72 client_->DidSwapBuffers(); |
| 73 } | 73 } |
| 74 | 74 |
| 75 uint32_t DirectOutputSurface::GetFramebufferCopyTextureFormat() { | 75 uint32_t DirectOutputSurface::GetFramebufferCopyTextureFormat() { |
| 76 // TODO(danakj): What attributes are used for the default framebuffer here? | 76 // TODO(danakj): What attributes are used for the default framebuffer here? |
| 77 // Can it have alpha? SurfacesContextProvider doesn't take any attributes. | 77 // Can it have alpha? SurfacesContextProvider doesn't take any attributes. |
| 78 return GL_RGB; | 78 return GL_RGB; |
| 79 } | 79 } |
| 80 | 80 |
| 81 } // namespace mus | 81 } // namespace mus |
| OLD | NEW |