aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp
Commit message (Expand)AuthorAgeFilesLines
* feat(callbackGenerator): Add basic management of callback without userDataMathieu Féry2023-07-315-108/+243
* GlueGen JavaCallback: Add optional custom 'Callback-UserParamClass` for non-c...Sven Gothel2023-07-103-27/+68
* GlueGen JavaCallback: Add capability to have UserParam as (part of) keySven Gothel2023-07-083-46/+118
* GlueGen JavaCallback: Remove ambiguity: Config JavaCallbackDef/JavaCallbackKe...Sven Gothel2023-07-063-66/+78
* GlueGen JavaCallback: Fix `staticCBClazz*` initial setup (only), using a NewG...Sven Gothel2023-07-051-18/+22
* GlueGen: Add 'PascalString' string semantics (length + value-ptr), added prel...Sven Gothel2023-07-054-24/+163
* GlueGen JavaCallback/LibraryOnLoad: Always include the `libraryBasename` agno...Sven Gothel2023-07-053-29/+71
* GlueGen JavaType.appendDescriptor(..): Fix regression: Must return a vanilla ...Sven Gothel2023-07-041-3/+1
* GlueGen JavaCallback: Revised: Static Java callback dispatcher, dropping nati...Sven Gothel2023-07-0410-768/+1016
* GlueGen JavaCallback: Unify native 'T_JavaCallbackGlueData' typedef structcallback_jniuserparamproxySven Gothel2023-07-023-11/+25
* GlueGen JavaCallback: CMethodBindingEmitter: Check, describe & clear exceptio...Sven Gothel2023-07-021-0/+5
* GlueGen JavaCallback: CMethodBindingEmitter: Check lockObj for NULL before Ge...Sven Gothel2023-07-021-0/+1
* CMethodBindingEmitter JavaCallback: Use a friendly readable basename for errorsSven Gothel2023-07-021-16/+19
* GlueGen Struct [18]: Drop redundant 'static get*ElemCount() { return 1 }` for...Sven Gothel2023-07-021-2/+4
* GlueGen JavaCallback: Native Callback: Reduce 'look-ahead' of read-after-free...Sven Gothel2023-07-021-9/+9
* GlueGen JavaCallback: Document native callback use-after-free potential (caug...Sven Gothel2023-07-021-1/+6
* GlueGen JavaCallback: Native callback: Check ObjectRef validity and synchroni...Sven Gothel2023-07-022-11/+48
* GlueGen JavaCallback: Use `SetCallback-KeyClass` if manually specified, even ...Sven Gothel2023-07-011-2/+6
* GlueGen JavaCallback: Only produce default 'Key' class if keys are used, expo...Sven Gothel2023-07-014-68/+222
* GlueGen JavaCallback: Release the associated data (natively) only after the a...Sven Gothel2023-07-011-2/+8
* GlueGen JavaCallback: Resolve key mapping of callback and associated resource...Sven Gothel2023-06-304-99/+314
* GlueGen FunctionType/MethodBinding: get*ParameterList(): Use a more flexible ...Sven Gothel2023-06-308-84/+210
* GlueGen JavaCallback: Set-Callback: Ensure a previously mapped 'userParam' in...Sven Gothel2023-06-291-3/+3
* GlueGen JavaCallback: 1st Working Draft: Changed 'JavaCallbackDef' config, ad...Sven Gothel2023-06-294-119/+374
* GlueGen ProcAddressCMethodBindingEmitter.jniMangle() override: Only add addit...Sven Gothel2023-06-291-1/+1
* GlueGen FunctionType: Factor out getParameterList(..) from toString(..) and d...Sven Gothel2023-06-293-22/+113
* GlueGen CMethodBindingEmitter: Refactor emitBodyReturnResult() -> emitBodyMap...Sven Gothel2023-06-291-98/+148
* GlueGen: Move [de]captializeString(..) JavaEmitter -> static in CodeGenUtilsSven Gothel2023-06-292-7/+21
* GlueGen LibraryOnLoad Config: Generate `JNI_OnLoad(..)` for dynamic and `JNI_...Sven Gothel2023-06-293-4/+125
* GlueGen Struct [17]: Handle void pointers, i.e. `void*`, within a struct as `...Sven Gothel2023-06-291-10/+5
* GlueGen JavaCallback: Add JavaCallback.methodSignature to JNI arg-list and pa...Sven Gothel2023-06-261-0/+16
* GlueGen JavaCallback: Move JavaCallback into JavaConfiguration, accessible ac...Sven Gothel2023-06-262-52/+82
* GlueGen JavaCallback: Expose getJNIMethodDescriptor() for JNI mangled method ...Sven Gothel2023-06-263-14/+49
* GlueGen JavaCallback: Use new JavaType nature 'named-class', denoting the gen...Sven Gothel2023-06-262-1/+5
* GlueGen JavaType: Add new nature 'String clazzName': Future (not yet generate...Sven Gothel2023-06-261-35/+97
* GlueGen JavaCallback: Add preliminary implementation (WIP): Produces proper i...Sven Gothel2023-06-251-5/+134
* GlueGen JavaConfiguration: Add List<Integer> stringArguments(final AliasedSym...Sven Gothel2023-06-251-0/+18
* GlueGen JavaConfiguration: Add 'JavaCallbackDef <funcion-pointer-typedef-name...Sven Gothel2023-06-251-1/+47
* GlueGen FunctionSymbol: Simplify ctor reusing main-ctor; Be always reachable ...Sven Gothel2023-06-251-3/+2
* GlueGen Add JavaType.forObjectClass()Sven Gothel2023-06-251-0/+8
* GlueGen FunctionType: Expose toString(..) w/ 'isPointer' argumentSven Gothel2023-06-251-0/+3
* GlueGen: Fix Type.getSignature(..): Test for isFunctionPointer() to elaborate...Sven Gothel2023-06-251-6/+9
* JavaEmitter.generateArrayGetterSetterCode(): Place elemCountExpr null check w...Sven Gothel2023-06-251-8/+7
* GlueGen: Add JavaEmitter(JavaConfiguration) ctorSven Gothel2023-06-251-0/+5
* GlueGen Fix ProcAddressCMethodBindingEmitter.jniMangle(..) override: Use rena...Sven Gothel2023-06-251-1/+1
* GlueGen: Rename GlueEmitter.getConfig{uration->}() and drop JavaEmitter.getCo...Sven Gothel2023-06-255-14/+7
* GlueGen: Expose CMethodBindingEmitter.getJNIMangledArgs() as a public static ...Sven Gothel2023-06-251-14/+24
* GlueGen Struct [16]: Add support for pointer-pointer and function-pointer valuesSven Gothel2023-06-231-173/+195
* GlueGen: JavaConfiguration.promoteTypeInfo(): Fix primitive pointerDepth, i.e...Sven Gothel2023-06-231-1/+1
* GlueGen: JavaConfiguration.typeInfo(..): Clarify DEBUG_TYPE_INFO outputSven Gothel2023-06-231-12/+14