From e24dc9a626d1548f67dc79b8f73c519c392bda33 Mon Sep 17 00:00:00 2001 From: Kenneth Russel Date: Sun, 26 Feb 2006 10:21:31 +0000 Subject: Added five examples of GlueGen configuration files to the manual for supporting access to various C programming language constructs. Still need to add at least two more for concrete and somewhat complex examples which show up in JOGL. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/trunk@18 a78bb65f-1512-4460-ba86-f6dc96a7bf27 --- doc/manual/example2/function.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 doc/manual/example2/function.c (limited to 'doc/manual/example2/function.c') diff --git a/doc/manual/example2/function.c b/doc/manual/example2/function.c new file mode 100644 index 0000000..159ddb7 --- /dev/null +++ b/doc/manual/example2/function.c @@ -0,0 +1,17 @@ +float process_data(float* data, int n) { + int i; + float sum; + for (i = 0; i < n; i++) { + sum += data[i]; + } + return sum; +} + +float* global_data; +void set_global_data(float* data) { + global_data = data; +} + +float process_global_data(int n) { + return process_data(global_data, n); +} -- cgit v1.2.3