[cogl/wip/cogl-sharp: 50/51] cogl-sharp: Comment a bit our method generation code
- From: Damien Lespiau <dlespiau src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cogl/wip/cogl-sharp: 50/51] cogl-sharp: Comment a bit our method generation code
- Date: Sat, 5 Jan 2013 16:52:29 +0000 (UTC)
commit b174f9e3b9a2f4e40d5b796c70d078aa8173176b
Author: Damien Lespiau <damien lespiau intel com>
Date: Fri Jan 4 21:06:36 2013 +0000
cogl-sharp: Comment a bit our method generation code
cogl-sharp/parse-gir.py | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
---
diff --git a/cogl-sharp/parse-gir.py b/cogl-sharp/parse-gir.py
index 073ee23..abc0d30 100755
--- a/cogl-sharp/parse-gir.py
+++ b/cogl-sharp/parse-gir.py
@@ -334,10 +334,29 @@ def generate_method(node, overrides, fo):
return_str = 'return ' if (cs_return_value != 'void') else ''
+ # native symbol declaration
fo.write(" [DllImport(\"cogl2.dll\")]\n")
fo.write(" public static extern %s %s(%s);\n\n" %
(native_return_value, native_method_name, ", ".join(native_params)))
+ # C# wrapper
+ #
+ # We support 2 types of functions:
+ #
+ # 1. simple wrappers (can return values as well)
+ #
+ # public void SetColor(ref Color color)
+ # {
+ # cogl_pipeline_set_color(handle, ref color);
+ # }
+ #
+ # 2. functions that return an object we need to wrap in a C# instance
+ #
+ # public Texture GetLayerTexture(int layer_index)
+ # {
+ # IntPtr p = cogl_pipeline_get_layer_texture(handle, layer_index);
+ # return new Texture(p);
+ # }
fo.write(" public %s %s(%s)\n" %
(cs_return_value, cs_method_name, ", ".join(cs_params)))
fo.write(" {\n")
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]