summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2012-11-04 01:28:33 +0000
committerDamien Lespiau <damien.lespiau@intel.com>2013-01-04 20:29:36 +0000
commitc03bb3d4c5c1ad961391362beeb8f01bcb0e651c (patch)
treeda36793f5066c4abf99492343780476853f6f41f
parent43b014672021fb4f369da0ca7f92251401208ec1 (diff)
downloadcogl-c03bb3d4c5c1ad961391362beeb8f01bcb0e651c.tar.gz
cogl-sharp: Expose DepthTestFunction
-rw-r--r--cogl-sharp/DepthTestFunction.cs17
-rw-r--r--cogl-sharp/Makefile.am1
-rwxr-xr-xcogl-sharp/parse-gir.py1
3 files changed, 19 insertions, 0 deletions
diff --git a/cogl-sharp/DepthTestFunction.cs b/cogl-sharp/DepthTestFunction.cs
new file mode 100644
index 00000000..acbaf035
--- /dev/null
+++ b/cogl-sharp/DepthTestFunction.cs
@@ -0,0 +1,17 @@
+/* This file has been generated by parse-gir.py, do not hand edit */
+using System;
+
+namespace Cogl
+{
+ public enum DepthTestFunction
+ {
+ Never = 512,
+ Less = 513,
+ Equal = 514,
+ Lequal = 515,
+ Greater = 516,
+ Notequal = 517,
+ Gequal = 518,
+ Always = 519
+ }
+}
diff --git a/cogl-sharp/Makefile.am b/cogl-sharp/Makefile.am
index 5c3fff9e..2648c35e 100644
--- a/cogl-sharp/Makefile.am
+++ b/cogl-sharp/Makefile.am
@@ -14,6 +14,7 @@ sources = \
ColorMask.cs \
Context.cs \
_Context.cs \
+ DepthTestFunction.cs \
Display.cs \
_Display.cs \
Driver.cs \
diff --git a/cogl-sharp/parse-gir.py b/cogl-sharp/parse-gir.py
index 2a2d73dd..4a0939bf 100755
--- a/cogl-sharp/parse-gir.py
+++ b/cogl-sharp/parse-gir.py
@@ -9,6 +9,7 @@ C_NS = "http://www.gtk.org/introspection/c/1.0"
enum_types = (
"BufferBit",
"ColorMask",
+ "DepthTestFunction",
"Driver",
"PipelineAlphaFunc",
"PipelineCullFaceMode",