VideoTexture.hx 433 B

1234567891011
  1. package flash.display3D.textures;
  2. extern final class VideoTexture extends TextureBase {
  3. @:flash.property var videoHeight(get,never) : Int;
  4. @:flash.property var videoWidth(get,never) : Int;
  5. function new() : Void;
  6. function attachCamera(theCamera : flash.media.Camera) : Void;
  7. function attachNetStream(netStream : flash.net.NetStream) : Void;
  8. private function get_videoHeight() : Int;
  9. private function get_videoWidth() : Int;
  10. }