FURenderRotate.h 516 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // FURenderRotate.h
  3. //
  4. // Created by ly on 16/11/2.
  5. // Copyright © 2016年 liuyang. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import <GLKit/GLKit.h>
  9. @interface FURenderRotate : NSObject
  10. /**
  11. 获取 FURenderRotate 单例
  12. @return FURenderRotate 单例
  13. */
  14. //+ (FURenderRotate *)shareRenderer;
  15. - (void)setup;
  16. - (void)rotateBufferType:(int)aa;
  17. - (CVPixelBufferRef)renderPixelBuffer:(CVPixelBufferRef)pixelBuffer withLandmarks:(float *)landmarks count:(int)count MAX:(BOOL)max;
  18. @end