Changeset 5315
- Timestamp:
- May 25, 2016 4:31:29 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/include/pjmedia-videodev/config.h
r5309 r5315 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
Note: See TracChangeset
for help on using the changeset viewer.