Package com.eclipsesource.tabris.camera.CameraOptions

Examples of com.eclipsesource.tabris.camera.CameraOptions.SourceType


      remoteObject.set( PROPERTY_RESOLUTION, new int[] { resolution.x, resolution.y } );
    }
  }

  private void setSourceType( CameraOptions options ) {
    SourceType sourceType = options.getSourceType();
    if( sourceType != null ) {
      remoteObject.set( PROPERTY_SOURCETYPE, sourceType.toString().toLowerCase() );
    }
  }
View Full Code Here

TOP

Related Classes of com.eclipsesource.tabris.camera.CameraOptions.SourceType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.