q66 pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=db3bbe821fd8a6c594710cd559b5008bed3a1c74

commit db3bbe821fd8a6c594710cd559b5008bed3a1c74
Author: Daniel Kolesa <d.kol...@osg.samsung.com>
Date:   Thu Nov 3 17:08:54 2016 +0100

    evas_canvas3d_node: remove pointers
---
 src/lib/evas/canvas/evas_canvas3d_node.eo | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/lib/evas/canvas/evas_canvas3d_node.eo 
b/src/lib/evas/canvas/evas_canvas3d_node.eo
index 4ecb412..541d97a 100644
--- a/src/lib/evas/canvas/evas_canvas3d_node.eo
+++ b/src/lib/evas/canvas/evas_canvas3d_node.eo
@@ -212,12 +212,12 @@ class Evas.Canvas3D.Node (Evas.Canvas3D.Object)
       bounding_box_get{
          [[Get axis-aligned bounding box (AABB) of the given node.]]
          params {
-            @in x: Evas.Real *; [[Pointer to receive X coordinate of the first 
point of AABB.]]
-            @in y: Evas.Real *; [[Pointer to receive Y coordinate of the first 
point of AABB.]]
-            @in z: Evas.Real *; [[Pointer to receive Z coordinate of the first 
point of AABB.]]
-            @in x2: Evas.Real *; [[Pointer to receive X coordinate of the 
second point of AABB.]]
-            @in y2: Evas.Real *; [[Pointer to receive Y coordinate of the 
second point of AABB.]]
-            @in z2: Evas.Real *; [[Pointer to receive Z coordinate of the 
second point of AABB.]]
+            @in x: ptr(Evas.Real); [[Pointer to receive X coordinate of the 
first point of AABB.]]
+            @in y: ptr(Evas.Real); [[Pointer to receive Y coordinate of the 
first point of AABB.]]
+            @in z: ptr(Evas.Real); [[Pointer to receive Z coordinate of the 
first point of AABB.]]
+            @in x2: ptr(Evas.Real); [[Pointer to receive X coordinate of the 
second point of AABB.]]
+            @in y2: ptr(Evas.Real); [[Pointer to receive Y coordinate of the 
second point of AABB.]]
+            @in z2: ptr(Evas.Real); [[Pointer to receive Z coordinate of the 
second point of AABB.]]
          }
       }
 
@@ -225,10 +225,10 @@ class Evas.Canvas3D.Node (Evas.Canvas3D.Object)
          [[Get bounding sphere of the given node.]]
          params {
 
-            @in x: Evas.Real *; [[Pointer to receive X coordinate of the 
center of sphere.]]
-            @in y: Evas.Real *; [[Pointer to receive Y coordinate of the 
center of sphere.]]
-            @in z: Evas.Real *; [[Pointer to receive Z coordinate of center of 
sphere.]]
-            @in r: Evas.Real *; [[Pointer to receive radius of center of 
sphere.]]
+            @in x: ptr(Evas.Real); [[Pointer to receive X coordinate of the 
center of sphere.]]
+            @in y: ptr(Evas.Real); [[Pointer to receive Y coordinate of the 
center of sphere.]]
+            @in z: ptr(Evas.Real); [[Pointer to receive Z coordinate of center 
of sphere.]]
+            @in r: ptr(Evas.Real); [[Pointer to receive radius of center of 
sphere.]]
          }
       }
 

-- 


Reply via email to