Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/rendering/GLBlendEquation.h')
-rw-r--r--source/blender/freestyle/intern/rendering/GLBlendEquation.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/blender/freestyle/intern/rendering/GLBlendEquation.h b/source/blender/freestyle/intern/rendering/GLBlendEquation.h
new file mode 100644
index 00000000000..89a90837bea
--- /dev/null
+++ b/source/blender/freestyle/intern/rendering/GLBlendEquation.h
@@ -0,0 +1,16 @@
+#ifndef GLBLENDEQUATION_H
+#define GLBLENDEQUATION_H
+
+#include <GL/glew.h>
+#ifdef WIN32
+# include <windows.h>
+#endif
+#ifdef __MACH__
+# include <OpenGL/gl.h>
+#else
+# include <GL/gl.h>
+#endif
+
+void FRS_glBlendEquation(GLenum mode);
+
+#endif // GLBLENDEQUATION_H