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

Side by Side Diff: webrtc/test/gl/gl_renderer.h

Issue 1506773002: Merge webrtc/video_engine/ into webrtc/video/ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years 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
« no previous file with comments | « webrtc/test/frame_generator_capturer.h ('k') | webrtc/test/linux/glx_renderer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_VIDEO_ENGINE_TEST_COMMON_GL_GL_RENDERER_H_ 11 #ifndef WEBRTC_TEST_GL_GL_RENDERER_H_
12 #define WEBRTC_VIDEO_ENGINE_TEST_COMMON_GL_GL_RENDERER_H_ 12 #define WEBRTC_TEST_GL_GL_RENDERER_H_
13 13
14 #ifdef WEBRTC_MAC 14 #ifdef WEBRTC_MAC
15 #include <OpenGL/gl.h> 15 #include <OpenGL/gl.h>
16 #else 16 #else
17 #include <GL/gl.h> 17 #include <GL/gl.h>
18 #endif 18 #endif
19 19
20 #include "webrtc/test/video_renderer.h" 20 #include "webrtc/test/video_renderer.h"
21 #include "webrtc/typedefs.h" 21 #include "webrtc/typedefs.h"
22 22
(...skipping 18 matching lines...) Expand all
41 bool is_init_; 41 bool is_init_;
42 uint8_t* buffer_; 42 uint8_t* buffer_;
43 GLuint texture_; 43 GLuint texture_;
44 size_t width_, height_, buffer_size_; 44 size_t width_, height_, buffer_size_;
45 45
46 void ResizeVideo(size_t width, size_t height); 46 void ResizeVideo(size_t width, size_t height);
47 }; 47 };
48 } // test 48 } // test
49 } // webrtc 49 } // webrtc
50 50
51 #endif // WEBRTC_VIDEO_ENGINE_TEST_COMMON_GL_GL_RENDERER_H_ 51 #endif // WEBRTC_TEST_GL_GL_RENDERER_H_
OLDNEW
« no previous file with comments | « webrtc/test/frame_generator_capturer.h ('k') | webrtc/test/linux/glx_renderer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698