summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2012-11-03 23:58:39 +0000
committerDamien Lespiau <damien.lespiau@intel.com>2013-01-04 20:29:36 +0000
commit582fe47c652b3ad75716b2d8bfc4f83ac4d89dd5 (patch)
tree258c6506cc7fc5359683e31c632ab25c7be56b45
parent47879ff352139734a634ec2b257733c856dc01f9 (diff)
downloadcogl-582fe47c652b3ad75716b2d8bfc4f83ac4d89dd5.tar.gz
cogl-sharp: Expose RendererConstraint
-rw-r--r--cogl-sharp/Makefile.am1
-rw-r--r--cogl-sharp/RendererConstraint.cs14
-rwxr-xr-xcogl-sharp/parse-gir.py1
3 files changed, 16 insertions, 0 deletions
diff --git a/cogl-sharp/Makefile.am b/cogl-sharp/Makefile.am
index 091a32ee..dac11a91 100644
--- a/cogl-sharp/Makefile.am
+++ b/cogl-sharp/Makefile.am
@@ -30,6 +30,7 @@ sources = \
PipelineWrapMode.cs \
PixelFormat.cs \
Quaternion.cs \
+ RendererConstraint.cs \
Texture.cs \
_Texture.cs \
TextureFlags.cs \
diff --git a/cogl-sharp/RendererConstraint.cs b/cogl-sharp/RendererConstraint.cs
new file mode 100644
index 00000000..3192a2d6
--- /dev/null
+++ b/cogl-sharp/RendererConstraint.cs
@@ -0,0 +1,14 @@
+/* This file has been generated by parse-gir.py, do not hand edit */
+using System;
+
+namespace Cogl
+{
+ [Flags]
+ public enum RendererConstraint
+ {
+ UsesX11 = 1,
+ UsesXlib = 2,
+ UsesEgl = 4,
+ SupportsCoglGles2 = 8
+ }
+}
diff --git a/cogl-sharp/parse-gir.py b/cogl-sharp/parse-gir.py
index 0f28309e..5d7b969f 100755
--- a/cogl-sharp/parse-gir.py
+++ b/cogl-sharp/parse-gir.py
@@ -15,6 +15,7 @@ enum_types = (
"PipelineFilter",
"PipelineWrapMode",
"PixelFormat",
+ "RendererConstraint",
"TextureFlags",
"VerticesMode",
"Winding"