- Timestamp:
- Dec 28, 2016 3:40:07 AM (8 years ago)
- Location:
- pjproject/branches/projects/uwp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/uwp
- Property svn:mergeinfo changed
/pjproject/trunk (added) merged: 5209,5212-5234,5237-5253,5255,5257-5292,5294-5297,5299-5332,5334-5394,5396-5438,5440-5469,5471-5496,5498-5510
- Property svn:mergeinfo changed
-
pjproject/branches/projects/uwp/pjmedia/include/pjmedia-videodev/config.h
r5125 r5513 53 53 54 54 55 #if defined(PJMEDIA_HAS_VIDEO) && (PJMEDIA_HAS_VIDEO != 0)56 57 55 /** 58 56 * This setting controls the maximum number of supported video device drivers. … … 73 71 #endif 74 72 73 74 #if defined(PJMEDIA_HAS_VIDEO) && (PJMEDIA_HAS_VIDEO != 0) 75 75 76 76 /** … … 123 123 124 124 /** 125 * This setting controls whether OpenGL support should be included. 125 * This setting controls whether OpenGL support should be included. Note that as 126 * currently only OpenGLES is supported, when PJMEDIA_VIDEO_DEV_HAS_OPENGL_ES is 127 * unset, PJMEDIA_VIDEO_DEV_HAS_OPENGL will automatically also be unset. 126 128 * 127 129 * Default: 0 (or detected by configure) … … 129 131 #ifndef PJMEDIA_VIDEO_DEV_HAS_OPENGL 130 132 # define PJMEDIA_VIDEO_DEV_HAS_OPENGL 0 133 #else 134 # if defined(PJMEDIA_VIDEO_DEV_HAS_OPENGL_ES) && \ 135 PJMEDIA_VIDEO_DEV_HAS_OPENGL_ES == 0 136 # undef PJMEDIA_VIDEO_DEV_HAS_OPENGL 137 # define PJMEDIA_VIDEO_DEV_HAS_OPENGL 0 138 # endif 131 139 #endif 132 140 … … 139 147 #ifndef PJMEDIA_VIDEO_DEV_HAS_SDL 140 148 # define PJMEDIA_VIDEO_DEV_HAS_SDL 0 149 #endif 150 151 152 /** 153 * This setting controls whether SDL with OPENGL support should be included. 154 * 155 * Default: 0 156 */ 157 #ifndef PJMEDIA_VIDEO_DEV_SDL_HAS_OPENGL 141 158 # define PJMEDIA_VIDEO_DEV_SDL_HAS_OPENGL 0 142 159 #endif
Note: See TracChangeset
for help on using the changeset viewer.