ShaderFilter.hx 947 B

1234567891011121314151617181920
  1. package flash.filters;
  2. extern class ShaderFilter extends BitmapFilter {
  3. @:flash.property var bottomExtension(get,set) : Int;
  4. @:flash.property var leftExtension(get,set) : Int;
  5. @:flash.property var rightExtension(get,set) : Int;
  6. @:flash.property var shader(get,set) : flash.display.Shader;
  7. @:flash.property var topExtension(get,set) : Int;
  8. function new(?shader : flash.display.Shader) : Void;
  9. private function get_bottomExtension() : Int;
  10. private function get_leftExtension() : Int;
  11. private function get_rightExtension() : Int;
  12. private function get_shader() : flash.display.Shader;
  13. private function get_topExtension() : Int;
  14. private function set_bottomExtension(value : Int) : Int;
  15. private function set_leftExtension(value : Int) : Int;
  16. private function set_rightExtension(value : Int) : Int;
  17. private function set_shader(value : flash.display.Shader) : flash.display.Shader;
  18. private function set_topExtension(value : Int) : Int;
  19. }