File: ShaderJob.hx

package info (click to toggle)
haxe 1%3A4.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 40,556 kB
  • sloc: ml: 125,171; ansic: 2,408; makefile: 436; java: 362; cs: 323; cpp: 318; python: 316; sh: 75; objc: 64; php: 39; xml: 30; javascript: 11
file content (21 lines) | stat: -rw-r--r-- 913 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package flash.display;

extern class ShaderJob extends flash.events.EventDispatcher {
	@:flash.property var height(get,set) : Int;
	@:flash.property var progress(get,never) : Float;
	@:flash.property var shader(get,set) : Shader;
	@:flash.property var target(get,set) : Dynamic;
	@:flash.property var width(get,set) : Int;
	function new(?shader : Shader, ?target : Dynamic, width : Int = 0, height : Int = 0) : Void;
	function cancel() : Void;
	private function get_height() : Int;
	private function get_progress() : Float;
	private function get_shader() : Shader;
	private function get_target() : Dynamic;
	private function get_width() : Int;
	private function set_height(value : Int) : Int;
	private function set_shader(value : Shader) : Shader;
	private function set_target(value : Dynamic) : Dynamic;
	private function set_width(value : Int) : Int;
	function start(waitForCompletion : Bool = false) : Void;
}