1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
package flash.events;
@:require(flash10_2) extern class StageVideoEvent extends Event {
final codecInfo : String;
@:flash.property var colorSpace(get,never) : String;
@:flash.property var status(get,never) : String;
function new(type : String, bubbles : Bool = false, cancelable : Bool = false, ?status : String, ?colorSpace : String) : Void;
private function get_colorSpace() : String;
private function get_status() : String;
static final RENDER_STATE : String;
static final RENDER_STATUS_ACCELERATED : String;
static final RENDER_STATUS_SOFTWARE : String;
static final RENDER_STATUS_UNAVAILABLE : String;
}
|