summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-06-25 10:32:37 +0200
committerSven Gothel <[email protected]>2014-06-25 10:32:37 +0200
commit679d484d4d8c3528aacc5b98dca644086948fcc5 (patch)
tree068ef71190b9e487f66633ff4efb105f77b13786
parent9ee44e1a289ecbac024662dd5a2ffc42e8add023 (diff)
Bug 1025 - GlueGen: Fix test case (gcc compiler regression due to redefined types / removed them)
-rw-r--r--src/junit/com/jogamp/gluegen/test/junit/generation/test1-common.cfg1
-rw-r--r--src/junit/com/jogamp/gluegen/test/junit/generation/test1.h9
2 files changed, 0 insertions, 10 deletions
diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/test1-common.cfg b/src/junit/com/jogamp/gluegen/test/junit/generation/test1-common.cfg
index eca133e..8e41aae 100644
--- a/src/junit/com/jogamp/gluegen/test/junit/generation/test1-common.cfg
+++ b/src/junit/com/jogamp/gluegen/test/junit/generation/test1-common.cfg
@@ -45,7 +45,6 @@ EmitStruct TK_Surface
StructPackage TK_Surface com.jogamp.gluegen.test.junit.generation
EmitStruct TK_Surface
ReturnedArrayLength TK_Surface.clips getClipSize()
-IgnoreField TK_Surface GetComponent
# Implements TK_Surface TḴ_???
diff --git a/src/junit/com/jogamp/gluegen/test/junit/generation/test1.h b/src/junit/com/jogamp/gluegen/test/junit/generation/test1.h
index ebb41d3..67a8050 100644
--- a/src/junit/com/jogamp/gluegen/test/junit/generation/test1.h
+++ b/src/junit/com/jogamp/gluegen/test/junit/generation/test1.h
@@ -183,12 +183,6 @@ typedef struct {
TK_Context ctx;
} TK_ContextWrapper;
-struct _jobject;
-typedef struct _jobject *jobject;
-struct JNINativeInterface_;
-typedef const struct JNINativeInterface_ *JNIEnv;
-
-
typedef struct tk_Surface {
TK_Context ctx;
TK_ContextWrapper ctxWrapper;
@@ -197,9 +191,6 @@ typedef struct tk_Surface {
int32_t clipSize;
TK_Dimension * clips;
TK_Dimension * (MYAPIENTRY *getClip) (struct tk_Surface * ds, int idx);
-
- jobject (MYAPIENTRY *GetComponent)(JNIEnv* env, void* platformInfo);
-
} TK_Surface;
typedef struct {