12345678910111213141516171819 |
- //
- // AAPLEAGLLayerCustom.h
- // HSVideoUDP
- //
- // Created by ss on 2024/7/15.
- // Copyright © 2024年 ss. All rights reserved..
- //
- //@import QuartzCore;
- #include <QuartzCore/QuartzCore.h>
- #include <CoreVideo/CoreVideo.h>
- @interface AAPLEAGLLayerCustom : CAEAGLLayer
- @property CVPixelBufferRef pixelBuffer;
- - (id)initWithFrame:(CGRect)frame;
- - (void)resetRenderBuffer;
- @end
|