diff options
author | Kenneth Russel <[email protected]> | 2006-02-26 10:21:31 +0000 |
---|---|---|
committer | Kenneth Russel <[email protected]> | 2006-02-26 10:21:31 +0000 |
commit | e24dc9a626d1548f67dc79b8f73c519c392bda33 (patch) | |
tree | 472633b6f167ab9542202712a1bc99d38246f5d3 /doc/manual/example5/function.c | |
parent | 60edc67981e7c3c1d4d43bc80994a8d63952c7bb (diff) |
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
Diffstat (limited to 'doc/manual/example5/function.c')
-rw-r--r-- | doc/manual/example5/function.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/manual/example5/function.c b/doc/manual/example5/function.c new file mode 100644 index 0000000..457b4a4 --- /dev/null +++ b/doc/manual/example5/function.c @@ -0,0 +1,16 @@ +static ScreenInfo default; +static int initialized = 0; + +ScreenInfo* default_screen_depth() { + if (!initialized) { + default.redBits = 8; + default.greenBits = 8; + default.blueBits = 8; + initialized = 1; + } + return &default; +} + +void set_screen_depth(ScreenInfo* info) { + /* Do something ... */ +} |