[opengtl-commits] [500] gf -> gtlp |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/opengtl-commits Archives
]
Revision: 500
Author: cyrille
Date: 2008-11-27 00:08:57 +0100 (Thu, 27 Nov 2008)
Log Message:
-----------
gf -> gtlp
Modified Paths:
--------------
trunk/OpenGTL/OpenGTL/README
Added Paths:
-----------
trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix.gtlp
trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix3.gtlp
Removed Paths:
-------------
trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix.gf
trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix3.gf
Deleted: trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix.gf
===================================================================
--- trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix.gf 2008-11-26 23:08:25 UTC (rev 499)
+++ trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix.gf 2008-11-26 23:08:57 UTC (rev 500)
@@ -1,20 +0,0 @@
-<pipeline>
- <source name="cmd1" />
- <source name="cmd2" />
- <shiva name="mix">
- <use name="cmd1" />
- <use name="cmd2" />
- <source>
-kernel mix {
-
- void evaluatePixel(image img1, image img2, output pixel result)
- {
- result = img1.sampleNearest( result.coord ) + img2.sampleNearest( result.coord );
- }
-}
- </source>
- </shiva>
- <destination>
- <use name="mix" />
- </destination>
-</pipeline>
\ No newline at end of file
Copied: trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix.gtlp (from rev 483, trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix.gf)
===================================================================
--- trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix.gtlp (rev 0)
+++ trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix.gtlp 2008-11-26 23:08:57 UTC (rev 500)
@@ -0,0 +1,20 @@
+<pipeline>
+ <source name="cmd1" />
+ <source name="cmd2" />
+ <shiva name="mix">
+ <use name="cmd1" />
+ <use name="cmd2" />
+ <source>
+kernel mix {
+
+ void evaluatePixel(image img1, image img2, output pixel result)
+ {
+ result = img1.sampleNearest( result.coord ) + img2.sampleNearest( result.coord );
+ }
+}
+ </source>
+ </shiva>
+ <destination>
+ <use name="mix" />
+ </destination>
+</pipeline>
\ No newline at end of file
Property changes on: trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix.gtlp
___________________________________________________________________
Name: svn:mergeinfo
+
Deleted: trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix3.gf
===================================================================
--- trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix3.gf 2008-11-26 23:08:25 UTC (rev 499)
+++ trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix3.gf 2008-11-26 23:08:57 UTC (rev 500)
@@ -1,28 +0,0 @@
-<pipeline>
- <kernels>
- <kernel name="mix">
-kernel mix {
- void evaluatePixel(image img1, image img2, output pixel result)
- {
- result = (img1.sampleNearest( result.coord ) + img2.sampleNearest( result.coord )) * 0.5;
- }
-}
- </kernel>
- </kernels>
- <source name="cmd1" />
- <source name="cmd2" />
- <source name="cmd3" />
- <shiva name="mix1">
- <use name="cmd1" />
- <use name="cmd2" />
- <kernel name="mix" />
- </shiva>
- <shiva name="mix2">
- <use name="mix1" />
- <use name="cmd3" />
- <kernel name="mix" />
- </shiva>
- <destination>
- <use name="mix2" />
- </destination>
-</pipeline>
\ No newline at end of file
Copied: trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix3.gtlp (from rev 483, trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix3.gf)
===================================================================
--- trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix3.gtlp (rev 0)
+++ trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix3.gtlp 2008-11-26 23:08:57 UTC (rev 500)
@@ -0,0 +1,28 @@
+<pipeline>
+ <kernels>
+ <kernel name="mix">
+kernel mix {
+ void evaluatePixel(image img1, image img2, output pixel result)
+ {
+ result = (img1.sampleNearest( result.coord ) + img2.sampleNearest( result.coord )) * 0.5;
+ }
+}
+ </kernel>
+ </kernels>
+ <source name="cmd1" />
+ <source name="cmd2" />
+ <source name="cmd3" />
+ <shiva name="mix1">
+ <use name="cmd1" />
+ <use name="cmd2" />
+ <kernel name="mix" />
+ </shiva>
+ <shiva name="mix2">
+ <use name="mix1" />
+ <use name="cmd3" />
+ <kernel name="mix" />
+ </shiva>
+ <destination>
+ <use name="mix2" />
+ </destination>
+</pipeline>
\ No newline at end of file
Property changes on: trunk/OpenGTL/OpenGTL/GTLGlue/tests/xml/mix3.gtlp
___________________________________________________________________
Name: svn:mergeinfo
+
Modified: trunk/OpenGTL/OpenGTL/README
===================================================================
--- trunk/OpenGTL/OpenGTL/README 2008-11-26 23:08:25 UTC (rev 499)
+++ trunk/OpenGTL/OpenGTL/README 2008-11-26 23:08:57 UTC (rev 500)
@@ -1,6 +1,6 @@
** Public Libraries **
- GTLCore: this library provides Core functionnalities, such as debug, or memory buffer (those parts are public, headers whose names contains an "_p" are privates to the library)
+- GTLImageIO: library to decode/encode images
** Private Libraries **
- GTLTest: this library implements a test framework, it's use is limited for testing the API of the various OpenGTL components (nothing from GTLTest should be installed)
-- GTLImageIO: library to decode/encode images
\ No newline at end of file