Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef MEDIA_FILTERS_CONTEXT_3D_PROVIDER_H_ | |
| 6 #define MEDIA_FILTERS_CONTEXT_3D_PROVIDER_H_ | |
| 7 | |
| 8 class GrContext; | |
| 9 | |
| 10 namespace gpu { | |
| 11 namespace gles2 { | |
| 12 class GLES2Interface; | |
| 13 } | |
| 14 } | |
| 15 | |
| 16 namespace media { | |
| 17 | |
| 18 struct Context3DProvider { | |
|
scherkus (not reviewing)
2014/10/30 20:40:12
docs covering basic usage
dshwang
2014/10/31 09:29:16
Done.
| |
| 19 gpu::gles2::GLES2Interface* gl; | |
| 20 class GrContext* gr_context; | |
| 21 }; | |
| 22 | |
| 23 typedef base::Callback<Context3DProvider()> Context3DProviderCB; | |
|
scherkus (not reviewing)
2014/10/30 20:40:12
this should be in WebMediaPlayerParams as it's onl
dshwang
2014/10/31 09:29:16
Done.
| |
| 24 | |
| 25 } // namespace media | |
| 26 | |
| 27 #endif // MEDIA_FILTERS_CONTEXT_3D_PROVIDER_H_ | |
| OLD | NEW |