Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(517)

Unified Diff: webrtc/sdk/objc/Framework/Classes/Video/RTCShader.h

Issue 2869143002: iOS: Add interface for injecting custom shaders (Closed)
Patch Set: Rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/sdk/objc/Framework/Classes/Video/RTCShader.h
diff --git a/webrtc/sdk/objc/Framework/Classes/Video/RTCShader.h b/webrtc/sdk/objc/Framework/Classes/Video/RTCShader.h
index c35a528b445537b711a8570c358295320a8002de..4d92d3dd102d85675791e8adea88f590eef5e813 100644
--- a/webrtc/sdk/objc/Framework/Classes/Video/RTCShader.h
+++ b/webrtc/sdk/objc/Framework/Classes/Video/RTCShader.h
@@ -8,38 +8,13 @@
* be found in the AUTHORS file in the root of the source tree.
*/
-#import <Foundation/Foundation.h>
+#import "WebRTC/RTCVideoFrame.h"
-#import "RTCOpenGLDefines.h"
+RTC_EXTERN const char kRTCVertexShaderSource[];
-@class RTCVideoFrame;
-
-@protocol RTCShader <NSObject>
-
-- (BOOL)drawFrame:(RTCVideoFrame *)frame;
-
-@end
-
-// Shader for non-native I420 frames.
-@interface RTCI420Shader : NSObject <RTCShader>
-
-- (instancetype)init NS_UNAVAILABLE;
-- (instancetype)initWithContext:(GlContextType *)context NS_DESIGNATED_INITIALIZER;
-- (BOOL)drawFrame:(RTCVideoFrame *)frame;
-
-@end
-
-// Native CVPixelBufferRef rendering is only supported on iPhone because it
-// depends on CVOpenGLESTextureCacheCreate.
-#if TARGET_OS_IPHONE
-
-// Shader for native NV12 frames.
-@interface RTCNativeNV12Shader : NSObject <RTCShader>
-
-- (instancetype)init NS_UNAVAILABLE;
-- (instancetype)initWithContext:(GlContextType *)context NS_DESIGNATED_INITIALIZER;
-- (BOOL)drawFrame:(RTCVideoFrame *)frame;
-
-@end
-
-#endif // TARGET_OS_IPHONE
+RTC_EXTERN GLuint RTCCreateShader(GLenum type, const GLchar *source);
+RTC_EXTERN GLuint RTCCreateProgram(GLuint vertexShader, GLuint fragmentShader);
+RTC_EXTERN GLuint RTCCreateProgramFromFragmentSource(const char fragmentShaderSource[]);
+RTC_EXTERN BOOL RTCCreateVertexBuffer(GLuint* vertexBuffer,
+ GLuint* vertexArray);
+RTC_EXTERN void RTCSetVertexData(RTCVideoRotation rotation);
« no previous file with comments | « webrtc/sdk/objc/Framework/Classes/Video/RTCNativeNV12Shader.mm ('k') | webrtc/sdk/objc/Framework/Classes/Video/RTCShader.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698