| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "ui/compositor/test/in_process_context_provider.h" | 5 #include "ui/compositor/test/in_process_context_provider.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/callback_helpers.h" | 8 #include "base/callback_helpers.h" |
| 9 #include "base/lazy_instance.h" | 9 #include "base/lazy_instance.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 | 153 |
| 154 if (gr_context_) | 154 if (gr_context_) |
| 155 gr_context_->FreeGpuResources(); | 155 gr_context_->FreeGpuResources(); |
| 156 } | 156 } |
| 157 | 157 |
| 158 void InProcessContextProvider::SetLostContextCallback( | 158 void InProcessContextProvider::SetLostContextCallback( |
| 159 const LostContextCallback& lost_context_callback) { | 159 const LostContextCallback& lost_context_callback) { |
| 160 // Pixel tests do not test lost context. | 160 // Pixel tests do not test lost context. |
| 161 } | 161 } |
| 162 | 162 |
| 163 uint32_t InProcessContextProvider::GetCopyTextureInternalFormat() { |
| 164 if (attribs_.alpha_size > 0) |
| 165 return GL_RGBA; |
| 166 DCHECK_NE(attribs_.red_size, 0); |
| 167 DCHECK_NE(attribs_.green_size, 0); |
| 168 DCHECK_NE(attribs_.blue_size, 0); |
| 169 return GL_RGB; |
| 170 } |
| 171 |
| 163 } // namespace ui | 172 } // namespace ui |
| OLD | NEW |