MaxstARSDK
MasShaderUtil.h
Go to the documentation of this file.
1 //
2 // MasShaderUtil.h
3 // MaxstAR
4 //
5 // Created by Kimseunglee on 2017. 11. 24..
6 // Copyright © 2017년 Maxst. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
14 @interface MasShaderUtil : NSObject
15 + (unsigned int) createProgram:(NSString*)vertexString fragment:(NSString*)fragmentString;
16 + (unsigned int) loadShader:(unsigned int)shaderType source:(NSString*)pSource;
17 + (void) checkGlError:(NSString*)op;
18 @end
Shader compile utility.
Definition: MasShaderUtil.h:15