12345678910111213141516171819202122232425262728293031323334353637 |
- /* vim: set ft=objc fenc=utf-8 sw=2 ts=2 et: */
- /*
- * DOUAudioStreamer - A Core Audio based streaming audio player for iOS/Mac:
- *
- * https://github.com/douban/DOUAudioStreamer
- *
- * Copyright 2013-2016 Douban Inc. All rights reserved.
- *
- * Use and distribution licensed under the BSD license. See
- * the LICENSE file for full text.
- *
- * Authors:
- * Chongyu Zhu <i@lembacon.com>
- *
- */
- #if TARGET_OS_IPHONE
- #import <UIKit/UIKit.h>
- #import <OpenGLES/EAGL.h>
- #import <OpenGLES/ES1/gl.h>
- #import <OpenGLES/ES1/glext.h>
- @interface DOUEAGLView : UIView
- @property (nonatomic, getter=isPaused) BOOL paused;
- @property (nonatomic, assign) NSInteger frameInterval;
- - (void)prepare;
- - (void)cleanup;
- - (void)reshape;
- - (void)render;
- @end
- #endif /* TARGET_OS_IPHONE */
|