VideoTextureEvent.hx 454 B

1234567891011
  1. package flash.events;
  2. extern class VideoTextureEvent extends Event {
  3. final codecInfo : String;
  4. @:flash.property var colorSpace(get,never) : String;
  5. @:flash.property var status(get,never) : String;
  6. function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?status : String, ?colorSpace : String) : Void;
  7. private function get_colorSpace() : String;
  8. private function get_status() : String;
  9. static final RENDER_STATE : String;
  10. }