Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(894)

Side by Side Diff: media/gpu/rendering_helper.h

Issue 2695063003: Hook up the ANGLE extensions for disabling client-side data. (Closed)
Patch Set: rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef MEDIA_GPU_RENDERING_HELPER_H_ 5 #ifndef MEDIA_GPU_RENDERING_HELPER_H_
6 #define MEDIA_GPU_RENDERING_HELPER_H_ 6 #define MEDIA_GPU_RENDERING_HELPER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 gfx::Size screen_size_; 208 gfx::Size screen_size_;
209 209
210 std::vector<RenderedVideo> videos_; 210 std::vector<RenderedVideo> videos_;
211 211
212 bool render_as_thumbnails_; 212 bool render_as_thumbnails_;
213 int frame_count_; 213 int frame_count_;
214 GLuint thumbnails_fbo_id_; 214 GLuint thumbnails_fbo_id_;
215 GLuint thumbnails_texture_id_; 215 GLuint thumbnails_texture_id_;
216 gfx::Size thumbnails_fbo_size_; 216 gfx::Size thumbnails_fbo_size_;
217 gfx::Size thumbnail_size_; 217 gfx::Size thumbnail_size_;
218 GLuint vertex_buffer_;
218 GLuint program_; 219 GLuint program_;
219 base::TimeDelta frame_duration_; 220 base::TimeDelta frame_duration_;
220 base::TimeTicks scheduled_render_time_; 221 base::TimeTicks scheduled_render_time_;
221 base::CancelableClosure render_task_; 222 base::CancelableClosure render_task_;
222 base::TimeTicks vsync_timebase_; 223 base::TimeTicks vsync_timebase_;
223 base::TimeDelta vsync_interval_; 224 base::TimeDelta vsync_interval_;
224 225
225 DISALLOW_COPY_AND_ASSIGN(RenderingHelper); 226 DISALLOW_COPY_AND_ASSIGN(RenderingHelper);
226 }; 227 };
227 228
228 } // namespace media 229 } // namespace media
229 230
230 #endif // MEDIA_GPU_RENDERING_HELPER_H_ 231 #endif // MEDIA_GPU_RENDERING_HELPER_H_
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder_passthrough.cc ('k') | media/gpu/rendering_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698