Ignore:
Timestamp:
Dec 28, 2016 3:40:07 AM (7 years ago)
Author:
nanang
Message:

Re #1900: More merged from trunk (r5512 mistakenly contains merged changes in third-party dir only).

Location:
pjproject/branches/projects/uwp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/uwp

  • pjproject/branches/projects/uwp/pjmedia/include/pjmedia-videodev/config.h

    r5125 r5513  
    5353 
    5454 
    55 #if defined(PJMEDIA_HAS_VIDEO) && (PJMEDIA_HAS_VIDEO != 0) 
    56  
    5755/** 
    5856 * This setting controls the maximum number of supported video device drivers. 
     
    7371#endif 
    7472 
     73 
     74#if defined(PJMEDIA_HAS_VIDEO) && (PJMEDIA_HAS_VIDEO != 0) 
    7575 
    7676/** 
     
    123123 
    124124/** 
    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. 
    126128 * 
    127129 * Default: 0 (or detected by configure) 
     
    129131#ifndef PJMEDIA_VIDEO_DEV_HAS_OPENGL 
    130132#   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 
    131139#endif 
    132140 
     
    139147#ifndef PJMEDIA_VIDEO_DEV_HAS_SDL 
    140148#   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 
    141158#   define PJMEDIA_VIDEO_DEV_SDL_HAS_OPENGL     0 
    142159#endif 
Note: See TracChangeset for help on using the changeset viewer.