equal
deleted
inserted
replaced
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 |