报警相关

This commit is contained in:
ddisfriend
2025-08-06 17:14:43 +08:00
parent dd02ce9be8
commit d060351aca
74 changed files with 7682 additions and 95 deletions

View File

@@ -0,0 +1,20 @@
/*
Copyright (C) 2014 Apple Inc. All Rights Reserved.
See LICENSE.txt for this samples licensing information
Abstract:
This CAEAGLLayer subclass demonstrates how to draw a CVPixelBufferRef using OpenGLES and display the timecode associated with that pixel buffer in the top right corner.
*/
//@import QuartzCore;
#include <QuartzCore/QuartzCore.h>
#include <CoreVideo/CoreVideo.h>
@interface AAPLEAGLLayer : CAEAGLLayer
@property CVPixelBufferRef pixelBuffer;
- (id)initWithFrame:(CGRect)frame;
- (void)resetRenderBuffer;
- (void) cleanUpTextures;
@end