AAPLEAGLLayerCustom.h 378 B

12345678910111213141516171819
  1. //
  2. // AAPLEAGLLayerCustom.h
  3. // HSVideoUDP
  4. //
  5. // Created by ss on 2024/7/15.
  6. // Copyright © 2024年 ss. All rights reserved..
  7. //
  8. //@import QuartzCore;
  9. #include <QuartzCore/QuartzCore.h>
  10. #include <CoreVideo/CoreVideo.h>
  11. @interface AAPLEAGLLayerCustom : CAEAGLLayer
  12. @property CVPixelBufferRef pixelBuffer;
  13. - (id)initWithFrame:(CGRect)frame;
  14. - (void)resetRenderBuffer;
  15. @end