ShaderInput.hx 680 B

123456789101112131415161718
  1. package flash.display;
  2. extern final class ShaderInput implements Dynamic {
  3. @:flash.property var channels(get,never) : Int;
  4. @:flash.property var height(get,set) : Int;
  5. @:flash.property var index(get,never) : Int;
  6. @:flash.property var input(get,set) : Dynamic;
  7. @:flash.property var width(get,set) : Int;
  8. function new() : Void;
  9. private function get_channels() : Int;
  10. private function get_height() : Int;
  11. private function get_index() : Int;
  12. private function get_input() : Dynamic;
  13. private function get_width() : Int;
  14. private function set_height(value : Int) : Int;
  15. private function set_input(value : Dynamic) : Dynamic;
  16. private function set_width(value : Int) : Int;
  17. }