Class CISampler

    • Constructor Detail

      • CISampler

        protected CISampler​(org.moe.natj.general.Pointer peer)
    • Method Detail

      • accessInstanceVariablesDirectly

        public static boolean accessInstanceVariablesDirectly()
      • allocWithZone

        public static java.lang.Object allocWithZone​(org.moe.natj.general.ptr.VoidPtr zone)
      • automaticallyNotifiesObserversForKey

        public static boolean automaticallyNotifiesObserversForKey​(java.lang.String key)
      • cancelPreviousPerformRequestsWithTarget

        public static void cancelPreviousPerformRequestsWithTarget​(java.lang.Object aTarget)
      • cancelPreviousPerformRequestsWithTargetSelectorObject

        public static void cancelPreviousPerformRequestsWithTargetSelectorObject​(java.lang.Object aTarget,
                                                                                 org.moe.natj.objc.SEL aSelector,
                                                                                 java.lang.Object anArgument)
      • classFallbacksForKeyedArchiver

        public static NSArray<java.lang.String> classFallbacksForKeyedArchiver()
      • classForKeyedUnarchiver

        public static org.moe.natj.objc.Class classForKeyedUnarchiver()
      • debugDescription_static

        public static java.lang.String debugDescription_static()
      • description_static

        public static java.lang.String description_static()
      • hash_static

        public static long hash_static()
      • instanceMethodSignatureForSelector

        public static NSMethodSignature instanceMethodSignatureForSelector​(org.moe.natj.objc.SEL aSelector)
      • instancesRespondToSelector

        public static boolean instancesRespondToSelector​(org.moe.natj.objc.SEL aSelector)
      • isSubclassOfClass

        public static boolean isSubclassOfClass​(org.moe.natj.objc.Class aClass)
      • keyPathsForValuesAffectingValueForKey

        public static NSSet<java.lang.String> keyPathsForValuesAffectingValueForKey​(java.lang.String key)
      • new_objc

        public static java.lang.Object new_objc()
      • resolveClassMethod

        public static boolean resolveClassMethod​(org.moe.natj.objc.SEL sel)
      • resolveInstanceMethod

        public static boolean resolveInstanceMethod​(org.moe.natj.objc.SEL sel)
      • samplerWithImage

        public static CISampler samplerWithImage​(CIImage im)
        Creates a new sampler object refencing 'im'.
      • samplerWithImageKeysAndValues

        public static CISampler samplerWithImageKeysAndValues​(CIImage im,
                                                              java.lang.Object key0,
                                                              java.lang.Object... varargs)
        Creates a new sampler object from 'im' specifying key/value option pairs. Each key is an NSString. Supported keys include: kCISamplerAffineMatrix: An NSArray [a b c d tx ty] defining the transformation to be applied to the sampler. kCISamplerWrapMode: An NSString defining how pixels outside the sampler's extent are produced. Options include kCISamplerWrapBlack (pixels are transparent black, the default) and kCISamplerWrapClamp (coordinates are clamped to the extent). kCISamplerFilterMode: An NSString defining the filter to use when sampling the image. One of kCISamplerFilterNearest (point sampling) or kCISamplerFilterLinear (bilinear interpolation, the default).
      • setVersion_static

        public static void setVersion_static​(long aVersion)
      • superclass_static

        public static org.moe.natj.objc.Class superclass_static()
      • version_static

        public static long version_static()
      • copyWithZone

        public java.lang.Object copyWithZone​(org.moe.natj.general.ptr.VoidPtr zone)
        Specified by:
        copyWithZone in interface NSCopying
      • definition

        public CIFilterShape definition()
        Returns the shape containing the Domain Of Definition (DOD) of the sampler. The DOD is defined such that it contains all non-transparent pixels produced by referencing the sampler. This property is KVO-safe
      • extent

        public CGRect extent()
        Returns the extent of the sampler. Sampling outside the extent will bring the sampler's wrap mode into action.
      • initWithImageKeysAndValues

        public CISampler initWithImageKeysAndValues​(CIImage im,
                                                    java.lang.Object key0,
                                                    java.lang.Object... varargs)