hostsupport/hostopengles20/src/shader.h
branchbug235_bringup_0
changeset 77 b0395290e61f
parent 55 09263774e342
equal deleted inserted replaced
76:24381b61de5c 77:b0395290e61f
    35 
    35 
    36 	char*	source;
    36 	char*	source;
    37 	GLsizei length;
    37 	GLsizei length;
    38 } DGLShader;
    38 } DGLShader;
    39 
    39 
       
    40 #ifdef __cplusplus
       
    41 extern "C"
       
    42 {
       
    43 #endif /* __cplusplus */
       
    44 
    40 DGLShader*	DGLShader_create(GLuint name);
    45 DGLShader*	DGLShader_create(GLuint name);
    41 void		DGLShader_destroy(DGLShader* shader);
    46 void		DGLShader_destroy(DGLShader* shader);
    42 
    47 
       
    48 #ifdef __cplusplus
       
    49 }
       
    50 #endif /* __cplusplus */
       
    51 
    43 #endif // SHADER_H_
    52 #endif // SHADER_H_
    44 
    53