GPUImagePicture+TextureSubimage.h 524 B

12345678910111213141516171819
  1. //
  2. // GPUImagePicture+TextureSubimage.h
  3. // GPUImage
  4. //
  5. // Created by Jack Wu on 2014-05-28.
  6. // Copyright (c) 2014 Brad Larson. All rights reserved.
  7. //
  8. #import "GPUImagePicture.h"
  9. @interface GPUImagePicture (TextureSubimage)
  10. - (void)replaceTextureWithSubimage:(UIImage*)subimage;
  11. - (void)replaceTextureWithSubCGImage:(CGImageRef)subimageSource;
  12. - (void)replaceTextureWithSubimage:(UIImage*)subimage inRect:(CGRect)subRect;
  13. - (void)replaceTextureWithSubCGImage:(CGImageRef)subimageSource inRect:(CGRect)subRect;
  14. @end